如何在每章末尾获得尾注?

如何在每章末尾获得尾注?

是否可以在每章末尾添加尾注?目前我正在使用endnotes包,它似乎只在我放置的位置一起生成所有尾注\theendnotes

答案1

您也可以继续使用endnotes。每次使用时\theendnotes,之前存储的所有尾注都会放在那里。因此,只需\theendnotes在每章末尾写下即可。

\documentclass{report}
\usepackage{endnotes}
\begin{document}

\chapter{First}
Testing.\endnote{First test.}
\theendnotes

\setcounter{endnote}{0}

\chapter{Next}
Again.\endnote{Second test.}
\theendnotes

\end{document}

答案2

pagenote该包允许在每章末尾添加尾注(“pagenotes”)。

\documentclass{book}

\usepackage{pagenote}
\makepagenote

\renewcommand*{\notedivision}{\section*{\notesname\ to chapter~\thechapter}}
\renewcommand*{\pagenotesubhead}[2]{}

\begin{document}

\chapter{bla}

\section{blubb}

Some text.\pagenote{The first endnote.}

\printnotes*

\chapter{foo}

\section{bar}

Some text.\pagenote{The second endnote.}

\printnotes*

\end{document}

相关内容