\section 以下所有内容的目录不带页码

\section 以下所有内容的目录不带页码

我的问题: 如何实现这一点\section,并且\part页码保留在目录中,而小节等没有页码?

答案1

假设您正在使用与该包兼容的文档类tocloft,以下解决方案可能会让您感兴趣。(只需将从到的行复制到\usepackage[titles]{tocloft}LaTeX\renewcommand\cftdot{}文档的序言中即可。

在此处输入图片描述

\documentclass{article}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}

\usepackage[titles]{tocloft}
\makeatletter
\renewcommand\cftsubsecpagefont{\@gobble}
\renewcommand\cftsubsubsecpagefont{\@gobble}
\renewcommand\cftparapagefont{\@gobble}
\renewcommand\cftsubparapagefont{\@gobble}
\makeatother
\renewcommand\cftdot{} % no dot leaders either
    
\begin{document}
\tableofcontents
\part{AA}
\section{BB}
\subsection{CC}
\subsubsection{DD}
\paragraph{EE}
\subparagraph{FF}
\end{document}

相关内容