回忆录中的结尾注释没有任何章节格式

回忆录中的结尾注释没有任何章节格式

我正在使用 Memoir 包并尝试设置一个尾注页面,该页面仅包含连续的尾注列表,仅此而已。在下面的 MWE 中,除了 Notes 章节标题外,还打印了第二个章节标题以及分隔尾注的每个章节的副标题。

我怎样才能消除这两个特征?

感谢您的帮助!

\documentclass[11pt,twoside,onecolumn,openright,final]{memoir}
\makepagenote
\begin{document}
\chapter*{chapter 1}
blah blah\pagenote{lorem ipsum 1}
\chapter*{chapter 2}
hah hah\pagenote{lorem ipsum 2}
\chapter*{notes}    
\printpagenotes
\end{document}

答案1

我认为您需要删除\chapter*{Notes}MWE 中的行并在其后添加三个项目\makepagenote,例如

\makepagenote
\continuousnotenums % continuous numbering, not per chapter
\renewcommand*{\pagenotesubhead}[3]{} % no subheads in the Notes
\renewcommand*{\notedivision}{\chapter*{\notesname}} % just Notes heading (no Chapter)

有关上述内容的更多信息,请参阅手册(> texdoc memoir17.4 尾注

相关内容