Ich hätte gerne folgende Nummerierung (von \chapter bis \paragraph)
1.
1.1.
1.1.1.
1.1.1.1.
1.1.1.1.a. oder 1.1.1.1a würde auch gehen
Wichtig dabei ist nur die Nummerierung von Paragraph, die dann in Buchstaben anstatt Zahlen erfolgen soll.
Minimalbeispiel:
\documentclass{scrreprt} \setcounter{secnumdepth}{5} \begin{document} \chapter{Eins.} \section{Eins.Eins.} \subsection{Eins.Eins.Eins.} \subsubsection{Eins.Eins.Eins.Eins.} \paragraph{Eins.Eins.Eins.Eins.a.} Denkbar ist auch Eins.Eins.Eins.Einsa beispielsweise. \end{document}
Gruß Daniel