所以我有一份文档,里面memoir
既有脚注,也有尾注。尾注是通过\makepagenote
序言生成的,\printpagenotes
问题是,在ToC
和标题中,它显示“章节 #”——但它不是章节!它是注释。让它像一个部分* 一样运行的最简单方法是什么?
我尝试过\printpagenotes*
,但是没有效果,当我把它放在每一章之后也没有效果(这不是我想要的。)
论文必须在我导师明天晚上 8 点(欧洲中部时间)登机前提交。只是说,这就是其中一种情况。
\documentclass{memoir}
\makepagenote
\begin{document}
\tableofcontents
\chapter1{this is a chapter}
Text text text.\pagenote{this is an endnote} text text text.\pagenote{this is an endnote}
\chapter2{another chapter}
Text text text.\pagenote{this is an endnote} text text text.\pagenote{this is an endnote}
\printpagenotes
\end{document}
你会得到一个像这样的目录
答案1
我将\renewcommand*{\notedivision}{\chapter*{\notesname}}
原文改为,从而阻止自动输入目录。您也可以使用,但它不会在新页面上开始,等等。\chapter
\chapter*
\section*
在我手动添加到目录中的行中\addcontentsline{toc}{chapter}{Notes}
,请将“注释”更改为您喜欢的任何内容。如果您根本不想将其添加到目录中,只需删除此行即可。
\documentclass{memoir}
\renewcommand*{\notedivision}{\chapter*{\notesname}\addcontentsline{toc}{chapter}{Notes}}
\makepagenote
\begin{document}
\tableofcontents
\chapter{this is a chapter}
Text text text.\pagenote{this is an endnote} text text text.\pagenote{this is an endnote}
\chapter{another chapter}
Text text text.\pagenote{this is an endnote} text text text.\pagenote{this is an endnote}
\printpagenotes
\end{document}