为什么我的目录重复了部分内容?

为什么我的目录重复了部分内容?
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}

\begin{document}

\tableofcontents
\section{Chapter 5}
\subsection{Section 1}

\end{document}

我正在尝试创建一个目录,但它的结果如下

在此处输入图片描述

我只想显示顶部,我不知道为什么会重复。另外,我怎样才能删除标题左侧的数字?我怎样才能设置每个部分和标题的页码?

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

相关内容