I would like to have the following spacing:
\titlespacing*{\chapter}{0pt}{50pt}{30pt}
\titlespacing*{\section}{0pt}{13.2pt}{*0}
\titlespacing*{\subsection}{0pt}{13.2pt}{*0}
\titlespacing*{\subsubsection}{0pt}{13.2pt}{*0}
When I'm using titelspacing I'm getting an error due to KOMA-script. I think I have to do it with the following command:
\RedeclareSectionCommand[
beforeskip=50sp,
afterskip=30\baselineskip]{chapter}
\RedeclareSectionCommands[
beforeskip=0\baselineskip,
afterskip=13.2\baselineskip
]{section,subsection,subsubsection}
But what values do I have to insert and how can they be calculated? When I use it, there is no change in the spacing.
Moreover, I have recognized that the following part of my code template somehow changes the space before the chapter. Which part of it should I keep or should I throw away everything?
\renewcommand*{\chapterheadstartvskip}{\vspace*{215pt}} % different hack to keep spacing to chapter artwork
\addtokomafont{paragraph}{\sffamily}
\def\mychpstyleintl{%
{\noindent\setlength{\tabcolsep}{0pt}\setlength{\arrayrulewidth}{2pt}%
\begin{tabular}{c}
\\[100pt]
\begin{tabular}{lr}
\begin{tabular}{p{0.6\linewidth}}
\\
\end{tabular}
&
\begin{tabular}{p{0.4\linewidth}}
\rightline{{%
\sffamily%
\fontseries{bx}%
\fontshape{n}%
\fontsize{100}{120}%choose baselineskip to be 1.2 times font size
\selectfont
\thechapter}}
\end{tabular}
\end{tabular}\\[300pt]
\end{tabular}
}}
titlesecpackage, though I don't know how myself. – Arun Debray Jan 27 '16 at 23:22