在回忆录的目录中插入新页面

在回忆录的目录中插入新页面

可能重复:
我怎样才能强制 ToC 不以章节结束?

有谁知道在目录中添加(或类似内容)的方法吗\newpage?我的一个章节标题位于页面底部,我想将其下拉以开始下一页。任何建议都将不胜感激。

答案1

您需要使用 将 悄悄地\newpage放入目录中\addtocontents{toc}{\protect\newpage}。下面是一个显示差异的简单示例 - 底部 2 页布局显示了 的添加\newpage

\tableofcontents 中的 \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进入目录(或一般任何外部文件)的条目所必需的。有关更多信息,您应该阅读脆弱命令和坚固命令之间有什么区别?

相关内容