我需要在正在写的文章中添加附录,但我不知道该怎么做。有人能告诉我正确的添加方法是什么吗?
答案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}