答案1
\vspace*{\fill}
在 之前和之后添加\tableofcontents
,并\newpage
在第二个 之后添加\vspace*{\fill}
,是实现此目的的简单方法:
\documentclass{article}
\begin{document}
% May also want \newpage here (e.g. if title page before toc)
\vspace*{\fill}
\tableofcontents
\vspace*{\fill}
\newpage % Page break between toc and first section
\section{Introduction}
\section{Abstract Algebra}
\section{p-adic numbers}
\section{Concept}
\section{Algebraic Closure}
\end{document}
如代码中所述,如果目录之前有内容(例如标题页),您还需要\newpage
前首先\vspace*{\fill}
。
输出: