假设我有 2 个部分,但我不想在目录中为每个部分显示相同级别的细节。是否可以设置不同的目录深度?
更新:这是 MWE
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\title{Specifying locally TOC depth}
\begin{document}
\maketitle
\tableofcontents
\part{first part}
\chapter{first chapter}
\section{first section}
\subsection{subsection}
\part{second part}
\chapter{second chapter}
\section{second section}
\subsection{subsection}
\end{document}
例如,我想要的是第一部分的目录显示章节、节和小节,而第二部分的目录仅显示章节、节。可以吗?
答案1
尝试https://www.ctan.org/pkg/tocvsec2它应该按原样工作,为每个部分的目录深度提供更多功能。