* Pour modifier le niveau de profondeur de la numérotation (chapitre (sous)section)
(sous)section) :
`\documentclass[secnumdepth=(unité)]{yathesis}` ou `(unité)` `\documentclass[secnumdepth=<unité>]{yathesis}`, où `<unité>` est par exemple `part, ...., subsection, ..., subparagraph`
* Pour modifier l'apparence de la numérotation des sous-sous-section
sous-sous-sections :
`\renewcommand{\thesubsubsection}{\thesubsection.\alph{subsubsection}}`
* Pour modifier le niveau de profondeur de la table des matières
matières :
`\tableofcontents[depth=(unité)]` par exemple `(unité)=subsubsection`
**ECM**
\documentclass[secnumdepth=subsubsection]{yathesis}
\renewcommand{\thesubsubsection}{\thesubsection.\alph{subsubsection}}
\usepackage{mwe}
\begin{document}
\tableofcontents[depth=subsubsection]
\mainmatter
\blinddocument
\end{document}