如何在目录中仅排除一个章节编号?

如何在目录中仅排除一个章节编号?

我需要在论文末尾添加附录。但我不希望 LaTeX 将该部分列为目录中的章节。

你知道我怎样才能在不编号的情况下得到它吗?我不想在目录中出现数字 5!

顺便说一句,我使用书籍文档风格。

在此处输入图片描述

答案1

A\chapter*足以删除目录和章节标题中的内容编号。您必须手动插入目录条目,并更新标题(如果可能):

在此处输入图片描述

\documentclass{book}

\usepackage{lipsum}

\begin{document}

\tableofcontents

\chapter{A chapter}
\lipsum[1-10]

\appendix
\chapter*{Appendix 1}
\addcontentsline{toc}{chapter}{Appendix 1}% Add Appendix to ToC
\markboth{APPENDIX 1}{APPENDIX 1}% Correct headers

\lipsum[1-10]

\end{document}

答案2

\backmatter应该足以抑制在中添加数字ToC

\documentclass{book}

\begin{document}

\tableofcontents

\chapter{Foo}

\backmatter
\appendix

\chapter{Appendix Stuff}


\end{document}

在此处输入图片描述

相关内容