仅附录的目录

仅附录的目录

我需要在附录部分的开头添加目录。但是,以下内容也包括正文中的部分

\appendix
\tableofcontents

我怎样才能从正文中删除这些部分并只保留附录中的部分?

答案1

背景:为整个文件创建目录是很合乎逻辑的,因为每个章节/部分/小节/等都写入.toc 文件,并且命令\tableofcontents只是从该文件中读取(这也是为什么你必须编译两次才能正确包含目录的原因。

现在,为了解决您的问题,您可以像这样使用 minitoc 包:

\documentclass[a4paper]{article}
\usepackage[toc,page,header]{appendix}
\usepackage{minitoc}

% Make the "Part I" text invisible
\renewcommand \thepart{}
\renewcommand \partname{}


\begin{document}
\doparttoc % Tell to minitoc to generate a toc for the parts
\faketableofcontents % Run a fake tableofcontents command for the partocs

\part{} % Start the document part
\parttoc % Insert the document TOC

\section{First}
First content.
\section{Second}
Second content.

\newpage
\appendix
\addcontentsline{toc}{section}{Appendix} % Add the appendix text to the document TOC
\part{Appendix} % Start the appendix part
\parttoc % Insert the appendix TOC

\section{Appendix First}
Appendix first content.
\section{Appendix Second}
Appendix second content.

\end{document}

相关内容