文章类中的目录附录

文章类中的目录附录

我遵循了以下示例,但我的问题是我使用文章作为文档类,因此附录不会按字母顺序显示在目录中,例如 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}

我想要的是在我的目录中按字母顺序排列,例如这里所示在此处输入图片描述

我的没有按字母顺序排列: 在此处输入图片描述

相关内容