[Tex/LaTex] Appendix letter position

appendicessectioning

\appendix \section{Appendix} gives me "A Appendix". How can I get "Appendix A"

Best Answer

the only way i can see to do this is to redefine the \section command either just before or just after \appendix. this should do it:

\makeatletter
\renewcommand\section{\@startsection {section}{1}{\z@}%
                                     {-3.5ex \@plus -1ex \@minus -.2ex}%
                                     {2.3ex \@plus.2ex}%
                                     {\normalfont\Large\bfseries Appendix }}
\makeatother

(this is simply a cut-and-paste of the definition from article.cls with \newcommand changed to \renewcommand and "Appendix" added at the end. be careful with the spacing; you have to supply the space after "Appendix"; it won't be done for you.)

using this, just input \appendix \section{}. this is admittedly brute force, but the question has been hanging around for a while with no answer, so something is probably better than nothing.

Related Question