同一篇文档中的尾注和脚注?

同一篇文档中的尾注和脚注?

能否为\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}

相关内容