我想对我的子部分进行编号,并将其编号在目录中

我想对我的子部分进行编号,并将其编号在目录中

我尝试使用

\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}

将前面带有数字的子小节包含到目录中。但不起作用。然后我在模板中发现了一些东西。但原始设置是小节,我将它们变成了子小节。但仍然不起作用。有人帮忙吗?

% replace subsection with subsub
\setsecnumdepth{subsubsection}
\maxsecnumdepth{subsubsection}
\settocdepth{subsubsection}
\maxtocdepth{subsubsection} 

在此处输入图片描述

答案1

您的模板基于 documentclass memoir。因此,在您的问题中,您显示了正确的答案:

以下 MWE 结果是:

在此处输入图片描述

\documentclass{memoir}

\setsecnumdepth{subsubsection}
\maxsecnumdepth{subsubsection}
\settocdepth{subsubsection}
\maxtocdepth{subsubsection} 
\begin{document}
\tableofcontents
\chapter{chapter}
\section{section}
\subsection{subsection}
\subsubsection{subsubsection}
\end{document}

相关内容