如何在文章中添加附录?

如何在文章中添加附录?

我需要在正在写的文章中添加附录,但我不知道该怎么做。有人能告诉我正确的添加方法是什么吗?

答案1

该命令\appendix包含在所有基础类文件中:

\documentclass[a4paper]{article}

\begin{document}

\section{Test 1}
\section{Test 2}

% Activate the appendix
% from now on sections are numerated with capital letters
\appendix

\section{Test 3}
\section{Test 3}
\end{document}

相关内容