我在回忆录课上写一些东西,我想做两件事。
- 在目录中包含书籍的子分类标题
- 每本书都重新开始编号
有没有简单的方法可以实现这一点?
答案1
按照 daleif 的建议进行编辑,这是一个带有回忆录内部命令的干净解决方案:
\documentclass{memoir}
\counterwithin*{part}{book}
\begin{document}
\settocdepth{section}% Here you set the depth of your Table of Contents: chapter, section, subsection etc.
\tableofcontents
\book{First Book}
\part{First Part}
\chapter{A chapter}
\section{A section}
\book{Second Book}
\part{First Part}
\end{document}