ToC 中的附录问题

ToC 中的附录问题

MWE 在这里:

\documentclass[12pt,letter]{report}
\usepackage[titletoc]{appendix}

\begin{document}
\tableofcontents
\appendix
\chapter{T.F}
some text

\chapter{C.L}
some more text
\end{document}

在此,目录显示 ATF BCL 但我想要,
附录 ATF 附录 BCL

我在 stackexchange 上查看了一些类似的问题,但无法解决。请帮助我。

答案1

你需要使用

\begin{appendices}
Appendix content here
\end{appendices}

截屏

完整的 MWE 如下

\documentclass[12pt,letter]{report}
\usepackage[titletoc]{appendix}

\begin{document}
\tableofcontents
\begin{appendices}
\chapter{T.F}
some text

\chapter{C.L}
some more text
\end{appendices}
\end{document}

根据评论,您可以使用

\renewcommand{\appendixname}{APPENDIX}

使附录以大写形式显示。

相关内容