答案1
除其他问题外,您的文档设置还存在错误使用指令\section
和\subsection
生成分别标记为“章节”和“节”的标题的问题。为了减少必然会出现的混乱,您可能需要切换到report
文档类,在序言中发出指令\setcounter{secnumdepth}{-1}
,并使用指令\chapter
和\section
生成相应的标题。
\documentclass{report} % not 'article'
\setcounter{secnumdepth}{-1}
\begin{document}
\tableofcontents
\chapter{Chapter 5}
\section{Section 1}
\end{document}
如果您不想在目录和第一个标题之间有分页符,请改用以下代码:
\documentclass{report} % not 'article'
\setcounter{secnumdepth}{-1}
\begin{document}
\tableofcontents
\begingroup
\let\clearpage\relax % locally disable '\clearpage'
\chapter{Chapter 5}
\endgroup
\section{Section 1}
\end{document}