미주와 각주가 같은 문서에 있나요?

미주와 각주가 같은 문서에 있나요?

\chapter동일한 기반 문서의 다른 장에 대한 각주와 미주를 만들 수 있습니까 \scrbook? 미주는 장 바로 뒤에 표시되어야 합니다.

답변1

다음은 로컬에서 각주를 미주로 변환하는 방법에 대한 간단한 샘플입니다. 단순히 \let각주에서 미주로, 그 반대의 경우도 마찬가지입니다.

\documentclass{scrbook}

\usepackage{endnotes}
\let\ofootnote\footnote

\begin{document}
\chapter{Foonote 1}
Test\footnote{Quack}. This is a test\footnote{Test}.
\let\footnote\endnote
\chapter{Endnote}
Test\footnote{Quack}. This is a test\footnote{Test}.
\let\footnote\ofootnote
\chapter{Footnote 2}
Test\footnote{Quack}. This is a test\footnote{Test}.
\clearpage\theendnotes
\end{document}

관련 정보