53

I need to add an appendix in an article I'm writing, but I don't really know how to do it. Can somebody explain to me what is the proper way to add it?

Werner
  • 603,163

1 Answers1

72

The command \appendix is included in all basic class files:

\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}
yo'
  • 51,322
MaxNoe
  • 6,136