我想subsubsection
在目录中添加未编号的,但我仍然希望它们缩进,这样它们就不会与 位于相同的 x 位置subsections
。这是我在标题中使用的:
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{2}
有没有一个简单的选项可以改变以获得所需的结果
答案1
可以使用tocloft
包来管理缩进:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tocloft}
\setlength{\cftsubsubsecindent}{2cm}
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{2}
\begin{document}
\tableofcontents
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\end{document}