部分内容在连续文本中,但不在目录中

部分内容在连续文本中,但不在目录中

有没有办法将完整的内容包含\part在运行文本中(包括“第 xxxx 部分”,但不将其包含在目录中?

答案1

尝试这个:

% tocpartprob.tex  SE 580856
\documentclass{report}

\begin{document}
%\arabic{tocdepth}  % returns 2 in this case

\tableofcontents

\addtocontents{toc}{\protect\setcounter{tocdepth}{-2}} % no Part in ToC
\part{A Part}
\addtocontents{toc}{\protect\setcounter{tocdepth}{2}} % restore default ToC entries

\chapter{A chapter}
\section{A section}
\subsection{A subsection}

\end{document}

第一个\addtocontents...设置打印的 ToC 条目高于,\Part而第二个将打印的 ToC 条目重置为正常。

相关内容