显示章节编号但隐藏上下文表中的章节

显示章节编号但隐藏上下文表中的章节

当我使用\section*{Introduction}它时,它会隐藏上下文表中的节,但它也会删除编号(即,它会显示Introduction而不是1. Introduction)。如何在从上下文表中删除节时保留编号?

答案1

计数器tocdepth控制目录中显示的内容。

% sectocprob.tex SE 572919
\documentclass{report}
\setcounter{tocdepth}{0} % only chapters and above in ToC
\begin{document}
\tableofcontents
\chapter{A chapter}
\section{A section}
\end{document}

相关内容