在目录中的 A、B、C 之前添加“附录”

在目录中的 A、B、C 之前添加“附录”

我想在目录中的附录 A、B、C 等之前添加“附录”一词。

也就是说,我想要这样的东西:

1. Chapitre 1

2. Chapitre 2

Annexes
    A
    B
    C

谢谢。

ps:我正在使用该appendix

答案1

\documentclass{book}


\usepackage[toc]{appendix}


\begin{document}
\tableofcontents
\chapter{Foo}
\chapter{Foobar}

\begin{appendices}
  \chapter{Foo App}
  \chapter{Foobar App}
\end{appendices}

\end{document}

在此处输入图片描述

相关内容