[Tex/LaTex] appendix package: making appendix subsections

appendicesnumberingsectioningtable of contents

The problem with the code below is, it treats the Safety section as its own independent section. So in the table of contents, I've got 'Appendices' and 'Safety' as separate sections. I want Safety to look like a subsection of the 'Appendices' section.

Also, how do I rename 'Appendices' to 'Appendix'? It just looks better. Is it through a \renewcommand?

\documentclass[a4paper,12pt]{scrartcl}
\usepackage{tocbibind}
\usepackage[toc,page]{appendix}

\begin{document}    
\section{Introduction}
  this is my introduction
\appendix
\appendixpage
\section{Safety}
\end{document}

Best Answer

My understanding of appendices in LaTeX is that you issue the \appendix command, and then carry on creating sections as before. You can have a \section called Appendix, and then within that, a \subsection called Safety.

Code:

\documentclass[a4paper,12pt]{scrartcl}
\usepackage{tocbibind}
\usepackage[toc,page]{appendix}

\begin{document}    
\tableofcontents

\section{Introduction}
  this is my introduction
\appendix
\section{Appendix}
\subsection{Safety}
\end{document}

Result:

enter image description here