我遵循了以下示例,但我的问题是我使用文章作为文档类,因此附录不会按字母顺序显示在目录中,例如 A、B……它仅显示名称附录。
\documentclass{book}
\usepackage[toc,page]{appendix}
\begin{document}
\tableofcontents
\mainmatter
\chapter{First Chapter}
\section{First section}
\begin{appendices}
\addtocontents{toc}{\protect\setcounter{tocdepth}{0}}
\chapter{First appendix}
\section{First section}
\section{Second section}
\chapter{Second appendix}
\section{First section}
\section{Second section}
\end{appendices}
\end{document}