在 LaTeX 的目录中添加单词“附录”

在 LaTeX 的目录中添加单词“附录”

我的附录样式如下所示:

\newboolean{@@inappendix}
\newcommand{\@@appendixname}{Appendices}
\renewcommand{\appendix}{\par
  \setboolean{@@inappendix}{true}
  \setcounter{chapter}{0}%
  \setcounter{section}{0}%
%  \coversheet{\uppercase\expandafter{\@@appendixname}}  % REMOVE COVERSHEET
  \renewcommand{\@chapapp}{\appendixname}%
  \renewcommand{\thechapter}{\Alph{chapter}}%

然后在主 tex 文件中我有:

\appendix
\include{appendix1}

在附录 1 tex 文件中我有:

\chapter{Flooding Test Graphs}

实际的附录页面标题看起来不错,但目录看起来像这样:

洪水测试图

我想说的是:

附录 A 洪水测试图表

已经发布了类似的问题和答案,但我似乎仍然无法让它发挥作用。

在样式文件的最后一行我尝试了:

\renewcommand{\thechapter}{APPENDIX\Alph{chapter}}

这只是在“洪水测试图”上写了“附录”

答案1

使用\usepackage[titletoc]{appendix}然后使用appendices环境:

在此处输入图片描述

\documentclass{book}
\usepackage[titletoc]{appendix}% https://ctan.org/pkg/appendix
\begin{document}
    \tableofcontents
    \chapter{A chapter} \chapter{A chapter} \chapter{A chapter}

    \begin{appendices}
        \chapter{An appendix} \chapter{An appendix}
    \end{appendices}
\end{document}

相关内容