答案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}