我应该在哪里插入 \setcounter{secnumdepth}{3}?

我应该在哪里插入 \setcounter{secnumdepth}{3}?

我正在使用 撰写论文\documentclass[11pt,a4paper]{report}。但是,\subsubsection没有编号。因此在 TeX 中搜索时,我得到了插入 的答案\setcounter{secnumdepth}{3}

请告诉我在哪里插入\setcounter{secnumdepth}{3}

答案1

此类命令属于前言,即在\documentclass和之间\begin{document}。如果您希望您的\subsubsections 也出现在目录中,您\setcounter{tocdepth}{3}还应该添加。请参阅如何在目录中显示小节和子小节?有关此内容的更多信息,包括分段级别及其编号的列表。

\documentclass[11pt,a4paper]{report}

%\usepackage{...}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}

\begin{document}
\tableofcontents

\chapter{Some chapter}
\section{Some section}
\subsection{Some subsection}
\subsubsection{Some subsubsection}
Text ...

\end{document}

相关内容