如何有效地抑制目录部分条目的出现

如何有效地抑制目录部分条目的出现

我目前正在编写一本几何尺寸很小的书,我不希望目录太长。

我还不知道是否会从目录中省略章节条目,但我正在考虑。

如果不需要注释掉所有\addcontentsline{toc}{section}{}命令,我想知道是否有一种有效的方法可以防止显示所有目录部分条目。

考虑 MWE

\documentclass[10pt]{book}
\usepackage[showframe,margin=.3in,paperwidth=4in,paperheight=6in]{geometry}
\textheight=5.25in
\usepackage[frame,noinfo,center]{crop}

\usepackage{tocloft}

% To extend the dots in the Table of Contents over to the Page no.
\renewcommand{\cftchapleader}{\bfseries\dotfill}

\renewcommand{\cftchapfont}{\normalfont \bfseries} % Changes chapter font in TOC.
\renewcommand{\cftchappagefont}{\bfseries\small} % Changes font\fontsize for chapter page number in TOC.

\begin{document}
\normalsize
\tableofcontents
\newpage

\centering\textbf{Chapter Title}
\addcontentsline{toc}{chapter}{CHAPTER I}
\addcontentsline{toc}{section}{Section 1.}
\addcontentsline{toc}{section}{Section 2.}
\addcontentsline{toc}{section}{Section 3.}
\end{document}

生成目录:

在此处输入图片描述

问题:如果不注释掉所有\addcontentsline{toc}{section}{}命令,如何才能有效地抑制目录部分条目的显示?

谢谢。

相关内容