有人能告诉我如何枚举吗\subsection
?例如:
\subsection{Double-space a file.}
...
\subsection{Triple-space a file.}
...
我希望它看起来像:
1.1 Double-space a file.
...
1.2 Triple-space a file.
...
目前我只得到这个:
Double-space a file.
...
Triple-space a file.
...
答案1
您可以通过设置计数器 secnumdepth 来设置(子)部分编号的级别。\setcounter{secnumdepth}{whatever}
答案2
对于回忆录类,更简单的语法是 \setsecnumdepth{argument}(手册中的第 6.3 节)。对于你的情况,你可以使用
\setsecnumdepth{subsection}
如果你想要目录,显示子部分,使用
\maxtocdepth{subsection}
maxtocdepth 的参数可以与 setsecnumdepth 不同。我认为这是最常见的情况。