Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Big Theta
- nonhomogeneous linear system
- 빅오메가
- 재귀함수
- Big Omega
- homogeneous linear system
- 알고리즘 분석의 실례
- 빅세타
- trivial solution
- Big-O 예제
- 코틀린 Hello World!
- one-to-one
- 빅오 표기법
- 배열 섞기
- 일차변환
- matrix-vector product
- linear dependence
- matrix fo a linear transformation
- python
- recursive algorithms
- Big-Oh 예제
- nontrivial solution
- NumPy
- 코틀린 시작하기
- itertools
- Big-Oh notation
- solutions of matrix equation
- 이진 탐색
- 랜덤 순서 배열
- matrix trnasformations
Archives
- Today
- Total
코딩 연습
(LaTeX) 미주(endnote) 넣는 방법 본문
반응형
일단 패키지 추가
\usepackage{endnotes}
미주 넣고자 하는 위치에
\endnote{내용}
미주가 들어갈 파일의 맨 마지막 \end{document} 전에
\newpage
\theendnotes
미주의 번호가 윗첨자로 들어가는 것이 짜증날 때
\usepackage{xpatch} 를 추가한 후,
\makeatletter
\xpretocmd{\theendnotes}{%
\xpatchcmd{\@makeenmark}{\hbox{\@textsuperscript{\normalfont\@theenmark}}}{%
\hbox{\normalfont\theenmark.\space}%
}{}{}%
}{}{}
\makeatother
미주 제목(?) "Note" 를 다른 것으로 바꾸고 싶을 때
\renewcommand{\notesname}{바꾸고지 하는 제목}
미주의 글자 크기를 바꾸고 싶을 때
\renewcommand{\footnotesize}{\normalsize}
반응형
'LaTeX' 카테고리의 다른 글
enumerate 의 시작 번호를 변경하는 방법 (0) | 2024.11.16 |
---|---|
부채꼴 "호" 를 나타내는 arc 를 제대로 표현하기 (2) | 2024.03.18 |
(LaTex) 문서 전체적으로 자동 indentation 을 없애는 방법 (0) | 2023.02.08 |
(LaTex) 페이지 끝까지 다단 구분선 넣기 (0) | 2023.02.08 |
(LaTex) cases 에서 가운데 정렬 문제 (0) | 2022.02.05 |
Comments