我正在研究解剖学课程的一系列问题。对于大多数问题,都会有一系列以页面笔记形式制作的“输入/答案”……效果很好,但是……
我正在寻找一种方式,将每章的页面注释打印在新的页面上,并连续打印,因为它是自动完成的。因为我想从 .pdf 中取出相关页面,以便在课程中(每节课后)逐一发布。
有没有办法定义这一点,正如我在丹麦语翻译/注释标题的修改中所定义的那样。
\documentclass[a4paper,11pt,oneside,openany]{memoir}
\renewcommand{\notesname}{Input til svar på opgaver}
\begin{document}
...
\frontmatter
\mainmatter
What is the head attached to? \pagenote{The trunk.}
\backmatter
\appendix
\printpagenotes*
\end{document}
答案1
您可以重新定义\pagenotesubhead
为使用\chapter*
加法\notesname
(并重新定义\notedivision
为不执行任何操作)。
\documentclass[a4paper,11pt,oneside,openany]{memoir}
\makepagenote
\renewcommand{\notesname}{Input til svar på opgaver}
\renewcommand*{\notedivision}{}
\renewcommand*{\pagenotesubhead}[3]{\chapter*{\notesname\ to #1 #2 #3}}
\begin{document}
\chapter{First}
Some text.\pagenote{A pagenote.}
\chapter{Second}
Some text.\pagenote{Another pagenote.}
\printpagenotes*
\end{document}