我正在尝试在报告文档中创建一个子节。它成功完成了此操作,但是它将子节从文档的内容部分中删除。
有什么办法可以纠正这个问题吗?
我尝试使用,例如,
\addcontentsline{toc}{subsubsection}{Photoelectric Effect}
但这不起作用。什么都没有显示出来。
答案1
默认深度目录report
为 2(包含在计数器内tocdepth
)。这意味着直到此为止的部门单位等级将包含在目录中。以下是基于标准文档类别的级别:
\part
= -1\chapter
= 0\section
= 1\subsection
= 2\subsubsection
= 3\paragraph
= 4\subparagraph
= 5
如果你希望包含你的子部分,请添加
\setcounter{tocdepth}{3}% Include \subsubsection in ToC
到您的文档序言中。以下是显示结果输出的 MWE:
\documentclass{report}
\setcounter{tocdepth}{3}% Include \subsubsection in ToC
\begin{document}
\tableofcontents
\chapter{A chapter}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document}
请注意,\subsubsection
默认情况下,s 不编号。如果您希望对它们进行编号(在目录中也是如此),那么您还需要包含
\setcounter{secnumdepth}{3}% Number \subsubsection
在序言中也是如此。默认设置,就像tocdepth
是2
。以下是更新后的视图: