我想从章节开头删除一个章节标题,但保留所有其他章节标题

我想从章节开头删除一个章节标题,但保留所有其他章节标题

我想从章节开头删除“第 5 章”。但我只想删除其中一章,而保留其他所有章节。

你知道怎么做吗?

在此处输入图片描述

答案1

使用\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}

相关内容