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