答案1
您需要使用 将 悄悄地\newpage
放入目录中\addtocontents{toc}{\protect\newpage}
。下面是一个显示差异的简单示例 - 底部 2 页布局显示了 的添加\newpage
:
\documentclass{memoir}% http://ctan.org/pkg/memoir
\begin{document}
\tableofcontents
\chapter{First chapter}
\section{A section}\section{A section}\section{A section}\section{A section}\section{A section}
\section{A section}\section{A section}\section{A section}\section{A section}\section{A section}
\section{A section}\section{A section}\section{A section}\section{A section}\section{A section}
\section{A section}\section{A section}\section{A section}\section{A section}\section{A section}
\section{A section}\section{A section}\section{A section}\section{A section}\section{A section}
%\addtocontents{toc}{\protect\newpage} % Adds \newpage in "\tableofcontents"
\chapter{Another chapter}
\section{A section}\section{A section}\section{A section}\section{A section}\section{A section}
\section{A section}\section{A section}\section{A section}\section{A section}\section{A section}
\section{A section}\section{A section}\section{A section}\section{A section}\section{A section}
\end{document}
它通常是\protect
进入目录(或一般任何外部文件)的条目所必需的。有关更多信息,您应该阅读脆弱命令和坚固命令之间有什么区别?