[Tex/LaTex] Appendix without sections

appendicesnumberingsectioning

There is only one appendix chapter in my thesis, which Latex defaults as Appendix A. However, I need it to show up as only "Appendix" without A or 1. Can anyone please tell me how to achieve that.

Thank you so much.

Best Answer

You can change the secnumdepth to 0 in the appendix. This means that section numbering is switched off for all levels (parts, chapters, sections) after the command.

\documentclass{article}
\usepackage{lipsum}

\begin{document}
\tableofcontents

\section{First}
\lipsum[1]

\section{Second}
\lipsum[2]

\appendix
\setcounter{secnumdepth}{0}
\section{Appendix}

\end{document}

appendix without numbering