目录在第二页,标题在第一页

目录在第二页,标题在第一页

我试图在第一页和目录之后写标题:

\documentclass{article}

\begin{document}


    \title{My Title}
    \author{My Name}

    \newpage


    \tableofcontents


    \section{Installation}
    aaaaaaaaaaaa
    \subsection{Getting started}
    \subsection{Jamaican rice rat}
    \subsection{White-footed rabbit-rat}

    \section{Butterflies}
    \subsection{Nymphalidae}
    \subsection{Lycaenidae}
    \subsection{Uraniidae}



\end{document}

但它只显示一个带有目录的页面

答案1

您只需添加\maketitle \newpage。此命令将生成标题。

\documentclass{article}
\begin{document}
    \title{My Title}
    \author{My Name}
    \maketitle
    \newpage
    \tableofcontents
    \section{Installation}
    aaaaaaaaaaaa
    \subsection{Getting started}
    \subsection{Jamaican rice rat}
    \subsection{White-footed rabbit-rat}
    \section{Butterflies}
    \subsection{Nymphalidae}
    \subsection{Lycaenidae}
    \subsection{Uraniidae}
\end{document}

在此处输入图片描述在此处输入图片描述

然而,恕我直言,你应该不是\newpage在这种情况下使用。article已经提供了titlepage选项。

\documentclass[titlepage]{article}
\begin{document}
    \title{My Title}
    \author{My Name}
    \maketitle
    \tableofcontents
    \section{Installation}
    aaaaaaaaaaaa
    \subsection{Getting started}
    \subsection{Jamaican rice rat}
    \subsection{White-footed rabbit-rat}
    \section{Butterflies}
    \subsection{Nymphalidae}
    \subsection{Lycaenidae}
    \subsection{Uraniidae}
\end{document}

标题页也好看多了

在此处输入图片描述

如需更多定制,您可以使用titlepage环境。

相关内容