일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 배열 섞기
- NumPy
- matrix fo a linear transformation
- python
- trivial solution
- Big Omega
- Big-Oh notation
- one-to-one
- itertools
- solutions of matrix equation
- 코틀린 Hello World!
- 재귀함수
- 일차변환
- matrix-vector product
- 빅오메가
- 알고리즘 분석의 실례
- Big-O 예제
- 코틀린 시작하기
- nonhomogeneous linear system
- nontrivial solution
- recursive algorithms
- homogeneous linear system
- Big Theta
- 빅오 표기법
- 랜덤 순서 배열
- Big-Oh 예제
- linear dependence
- 빅세타
- matrix trnasformations
- 이진 탐색
- Today
- Total
코딩 연습
\documentclass{article} \usepackage{graphicx} \makeatletter \DeclareFontFamily{U}{tipa}{} \DeclareFontShape{U}{tipa}{m}{n}{tipa10}{} \newcommand{\arc@char}{{\usefont{U}{tipa}{m}{n}\symbol{62}}}% \newcommand{\arc}[1]{\mathpalette\arc@arc{#1}} \newcommand{\arc@arc}[2]{% \sbox0{$\m@th#1#2$}% \vbox{ \hbox{\resizebox{\wd0}{\height}{\arc@char}} \nointerlineskip \box0 }% } \makeatother \begin{document}..
코딩연습 블로그에서는 어떠한 개인정보도 수집하고 있지 않습니다. 다만 구글 광고가 게재되고 있는 관계로 구글에서 여러분의 개인정보를 수집할 가능성이 있습니다. 자세한 사항은 구글 개인정보처림방침을 확인하시기 바랍니다.
일단 패키지 추가 \usepackage{endnotes} 미주 넣고자 하는 위치에 \endnote{내용} 미주가 들어갈 파일의 맨 마지막 \end{document} 전에 \newpage \theendnotes 미주의 번호가 윗첨자로 들어가는 것이 짜증날 때 \usepackage{xpatch} 를 추가한 후, \makeatletter \xpretocmd{\theendnotes}{% \xpatchcmd{\@makeenmark}{\hbox{\@textsuperscript{\normalfont\@theenmark}}}{% \hbox{\normalfont\theenmark.\space}% }{}{}% }{}{} \makeatother 미주 제목(?) "Note" 를 다른 것으로 바꾸고 싶을 때 \renewcomm..