使用附录包在目录中添加附录作为附录 A、附录 B

使用附录包在目录中添加附录作为附录 A、附录 B

我正在写论文,我想在目录中的参考文献后添加附录。

我想要以下格式的附录

附录 A 107

附录 B 115

附录 C 120

我如何使用appendix包裹?

答案1

这是如何使用该appendix包的一个示例。

将附录插入到环境中appendices

\documentclass{article}
\usepackage[title,titletoc]{appendix}
\usepackage{lipsum} % only for the example

\begin{document}

\tableofcontents

\newpage

\section{First section}
\lipsum

\begin{appendices}

\section{First appendix}
\lipsum

\section{Second appendix}
\lipsum

\end{appendices}

\end{document} 

目录看起来如下:

在此处输入图片描述

相关内容