指定目录的层级

指定目录的层级

我的文档中有多个章节,其中包含节和小节。在生成的目录表中,它看起来像

1. Chapter
1.1 Section
1.1.1 Subsection
1.1.2 Subsection
2. Chapter
2.1 Section
2.1.1 Subsection

我如何指定内容表仅显示到章节级别并排除更深层次的所有内容(小节等)。

这样它看起来就像:

1. Chapter
1.1 Section
2. Chapter
2.1 Section

答案1

计数器tocdepth控制出现在ToC

将 设置tocdepth为值-2是隐藏所有内容的常用方法(除非memoir使用类,那么它就是-3)。

part下到上subparagraph级别分别为-1、、、、、和。012345

这里,小节不应该进入目录,使用\setcounter{tocdepth}{1}(最好在序言中)。

不要忘记编译两次,与 ToC 相关 - ‘问题’

\documentclass{book}

\setcounter{tocdepth}{1}
\begin{document}
\tableofcontents
\chapter{How to be seen}

\section{You see me}

\subsection{You won't see me in the Toc}

\end{document}

在此处输入图片描述

相关内容