回忆录将章节尾注打印为新章节

回忆录将章节尾注打印为新章节

我正在使用 memoir 类来制作一本书,我想在每一章的末尾打印页面注释。Memoir 将它们打印为单独的章节,并按注释编号,好像注释构成了它们自己的章节。这是不正确的——我从未见过一本书将章节注释打印为单独的章节。我该如何修复它,以便注释打印时不会触发章节计数器?

以下是 MWE:

\documentclass{memoir}
\makepagenote
\begin{document}
\mainmatter
    \chapter{Title}
        Main text\pagenote{A note}
    \printpagenotes*
\end{document}

答案1

回忆录手册第 250 页对此进行了解释,基本上

\renewcommand*{\notedivision}{%
  \chapter*{\notesname}
  \phantomsection
  \addcontentsline{toc}{chapter}{\notesname}
}

相关内容