我尝试使用
\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}