在Latex中,通常编号到subsubsection,book类型的目录默认只显示到subsection,但是如果需要使用更深的目录或章节编号,需要在导言区进行如下设置:
- \setcounter{tocdepth}{3}:toc即table of content,表示目录显示的深度
- \setcounter{secnumdepth}{4}:secnum即section number,表示章节编号的深度
其中的数字3和4表示深度,具体数字的含义如下:
- -1 part
- 0 chapter
- 1 section
- 2 subsection
- 3 subsubsection
- 4 paragraph
- 5 subparagraph
例子:
\documentclass{article}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\begin{document}
\tableofcontents
\section{section}
\subsection{subsection}
\subsubsection{subsubsection}
\paragraph{paragraph}
\end{document}
参考链接:
-----------------------------------------------------------
本文来自博客园,作者:小厨房,转载请注明原文链接:https://www.cnblogs.com/erichf/p/13543883.html,否则视为侵权
如有疑问,请站内留言 或加 QQ:②⑨⓪②② ⑦③⑦⑨
-----------------------------------------------------------