附录页面的位置和布局

附录页面的位置和布局

我用来\chapter{Appendix I}创建附录 I 标题但它显示如下:

在此处输入图片描述

然后我 \chapter*{Appendix I}删除了第 10 章部分,但当我这样做时附录 I 不再出现在目录部分。

我应该怎么做才能使附录页既出现在目录中,又不包含第十章?

答案1

这可能取决于您使用的文档类,但通常的方法是使用\appendix

\documentclass{report}
\begin{document}
\tableofcontents
\chapter{A chapter}
\appendix
\renewcommand\thechapter{\Roman{chapter}} %New
\chapter{An appendix}
\end{document}

相关内容