我如何修改目录以从小节开始?

我如何修改目录以从小节开始?

我有以下问题。目前我有以下代码:

\documentclass{article}

\begin{document}
\tableofcontents

\subsection{section}
\subsubsection{subsection}
\paragraph{subsubsection}
\subparagraph{paragraph}

\end{document} 

编译后的目录如下所示:

在此处输入图片描述

但我需要这样的:

在此处输入图片描述

所以我希望,将段落列为小节,将小节列为小节,将小节列为目录中的小节。

答案1

根据沃纳的回答,你可以重新定义你的\subsection命令

\renewcommand{\thesubsection}{\arabic{subsection}}

然后

\documentclass{article}

\renewcommand{\thesubsection}{\arabic{subsection}}

\begin{document}

\tableofcontents

\subsection{section}
\subsubsection{subsection}
\paragraph{subsubsection}
\subparagraph{paragraph}

\end{document}

你得到

子节目录

相关内容