有没有办法将完整的内容包含\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 条目重置为正常。