[Tex/LaTex] Appendix in Elsevier (elsarticle.cls) Journal

appendiceselsarticlejournal

I use (elsarticle.cls) for writing a journal paper for Elsevier Computer Networks Journal. I have an appendix section, I searched in manual for elsarticle.cls here:

https://www.elsevier.com/__data/assets/pdf_file/0008/56843/elsdoc-1.pdf

But there is no indication how an Appendix Section should be displayed or are there any special commands for it.

For instance, with IEEE conference papers we have the command \appendices but could not find anything for Elsevier.

so I would like to know:

  1. are there any special commands for the appendix section?
  2. how should they be displayed? (e.g., by Appendix A, Appendix B, etc…), I would appreciate any document for that.
  3. should Appendices be placed before or after References Section?

Best Answer

Use \appendix to determine when the section should be transform in appendix in elsarticle class.

\documentclass{elsarticle}

\begin{document}
\section{foo}

\appendix
\section{bar}

\end{document}

output:

enter image description here

Related Question