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