[Tex/LaTex] scrreprt – add levels below \subparagraph

koma-scriptsectioningsections-paragraphs

I have to write my thesis in (German) law and we usually use a very nested headline system.
I use scrreprt and have these levels:

  • (part)
  • chapter
  • section
  • subsection
  • subsubsection
  • paragraph
  • subparagraph

But I need at least 3 more levels. They don't have to be in the ToC but it would be nice.

I searched a lot and found a snippet that works but I can't reproduce it and create more levels.

% Fügt Gliederungsebene \subsubparagraph hinzu.
\titleclass{\subsubparagraph}{straight}[\subparagraph]
\makeatletter
\newcounter{subsubsubsection}[subsubsection] \newcounter{subsubparagraph}[subparagraph]
\newcommand*\l@subsubparagraph{\bprot@dottedtocline{6}{14em}{6em}}
\makeatother

Somewhat related is my second question. Is there any way to rename some of the levels? It's always a little annoying trying to remember what comes after subsubsection etc.
Maybe \chapter, \section, \sub1section, \sub2section, \sub3section or something else.

Your help is greatly appreciated 🙂

Best Answer

Quoting the manual from the titlesec package:

With the help of classes you may insert, say, a new subchapter level between chapter and section, or creating a scheme of your own.

(at subsection 3.9 in the titlesec.pdf).

At appendix 9.2, it shows exactly how the already existing sections and the like are defined; don't copy the already existing parts to your file, but use them as inspiration for defining new ones (amount of indentation, style, etc). My advice is to look at all the appendices and subsection 3.9.