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