The Koma-script class scrreprt does not provide numbering of \subsubsection. I would like to have, if possible, \subsubsection available like \subsection. I have found a solution but the question is asking more advanced formatting which is not what I want.
Asked
Active
Viewed 1,252 times
1
1 Answers
5
In the KOMA classes, the counter secnumdepth controls the level down to which the headings are numbered. The default for scrreprt is \subsectionnumdepth, i.e. \subsection is the lowest level that still gets a number, and all levels below don't. The solution is thus to set the value of secnumdepth to \subsubsectionnumdepth.
Minimal example:
\documentclass{scrreprt}
\setcounter{secnumdepth}{\subsubsectionnumdepth}
\begin{document}
\chapter{My chapter}
\section{A section}
\subsection{The subsection}
\subsubsection{New subsubsection}
\end{document}
Tiuri
- 7,749
-
Thank you very much. – benibilme Dec 21 '19 at 12:57
-
Is is possible to add \subsubsubsection? I have tried the same idea but did not work. – benibilme Jan 11 '20 at 18:46
-
@user1155710 see here: https://tex.stackexchange.com/a/356574/103046 – Tiuri Jan 13 '20 at 08:21
