如何不打印目录中的某些部分?

如何不打印目录中的某些部分?

所以基本上我想在我的 latex 文档(类 - 文章)中创建一个目录。但我不想打印前半部分。例如,假设我的文档中有四个部分 - 第 1 部分、第 2 部分、第 3 部分和第 4 部分。那么我希望我的目录看起来像这样

  1. 第 3 部分 -- 页码

  2. 第 4 部分 -- 页码

而我想保留正文中的章节编号和名称。

谢谢!

答案1

根据请求,存在以下几种可能性:

\section*{Title}---> 根本没有目录条目

\section[]{Title}----> 没有目录条目,但有编号部分

\documentclass[paper=a4,12pt]{scrartcl}

\usepackage{blindtext}

\begin{document}
\tableofcontents
\clearpage

\section*{First -- not in TOC}%
\blindtext
\section*{Second -- not in TOC too}%
\blindtext
\section{Third}%
\blindtext
\section{Fourth}%
\blindtext
\section[]{Fifth}%
\blindtext
\end{document}

在此处输入图片描述

相关内容