目录位于页面中间并以较大的字体显示?

目录位于页面中间并以较大的字体显示?

如何将内容页显示在页面中间,并且大小比其他字体大article

我已经使用过该命令\tableofcontents

输出如下:

enter image description here

答案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}

输出:

output

相关内容