这是我的问题。下面的代码是我在一份专门介绍回忆录课程标题页的 PDF 上找到的,编译后形成如下内容:
不幸的是,目录对我来说有点太低了。我希望它能很容易地解决,也许可以解决页眉间距问题?...尽管代码中没有提到页眉。我希望将目录全部放在一页上。
%title page environment
\newcommand*{\titleSI}{\begingroup% Sagas
\drop = 0.025\textheight
\centering
\vspace*{\drop}
{\Huge EXCERPTS}\\[\baselineskip]
{\Huge \itshape{from}}\\[\baselineskip]
{\Huge THE LETTERS OF}\\[\baselineskip]
{\Huge EARNEST A. RAYMOND}\\[\baselineskip]
{\Huge \itshape{to}}\\[\baselineskip]
{\Huge HIS CHILDREN}\\[3\baselineskip]
{\Large \textit{Arranged by} \textsc{Sarah Raymond Dean}}\\
{\Large \textit{Digitized by} \textsc{John Maxwell Dunn}}\par
\vspace*{\drop}
{\Large Written 1932 - Digitized 2014}\\[\baselineskip]
\endgroup}
\begin{document}
% Title Page
\titleSI
\tableofcontents
\chapter{Success}
...
\end{document}
答案1
设置\cftbeforechapskip
为较小且可能可拉伸的值。(不太确定我拼写是否正确。它控制目录中章节条目上方的间距。此外,您可能想要使用它,\tableofcontents*
因为它不会将其自身添加到目录中。
答案2
尝试
\begingroup
\baselineskip=1pt
\tableofcontents
\endgroup
或者
\addtocontents{toc}{\protect\enlargethispage{1.5\normalbaselineskip}}
这会放大内容页面。