코딩 연습

(LaTeX) 미주(endnote) 넣는 방법 본문

LaTeX

(LaTeX) 미주(endnote) 넣는 방법

코딩아저씨 2023. 3. 10. 01:47
반응형

 

 

일단 패키지 추가

\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}

    

반응형


Comments