如何为章节中的子部分级标题添加编号?

如何为章节中的子部分级标题添加编号?

我是 Latex 新手,我想知道您是否可以帮助我在报告中添加子部分级别 1.1.1.1,代码是:

\documentclass[12pt]{report}
 \begin{document}
 \chapter{the name of chapter}
 \section{section test}
 \subsection{subsection test}
 \subsubsection{subsubsection test}
 \end{document} 
\end{document}

enter image description here

答案1

计数器secnumdepth控制着编号部分级别的数目:

\documentclass[12pt]{report}

% -1: part
%  0: chapter
%  1: section
%  2: subsection
%  3: subsubsection
%  4: paragraph
%  5: subparagraph
\setcounter{secnumdepth}{3}

\begin{document}
  \chapter{the name of chapter}
  \section{section test}
  \subsection{subsection test}
  \subsubsection{subsubsection test}
\end{document}
\end{document}

Result

相关内容