[Tex/LaTex] Including appendices problem

appendicessectioning

How to create an appendices chapter in a proper way?
Currently I am using the following code:

\begin{appendix}
\renewcommand{\chaptername}{}
\addcontentsline{toc}{chapter}{Appendices}

\chapter{appendices}\label{ch:appendices}
\section {aaa}
\section {bbb}

\end{appendix}

But I have a problem! LaTeX is verifying the appendices as CHAPTER A in the list of content. How do I get rid of CHAPTER A?

Best Answer

\appendix is a declaration and not an environment.

I'd say that

\appendix
\chapter*{Appendices}
\markboth{Appendices}{}
\addcontentsline{toc}{chapter}{Appendices}
\renewcommand{\thesection}{A.\arabic{section}}

should solve your problem. The sections will be numbered A.1, A.2 and so on.