Ich weiß, wie man Platz schafftnacheine Kapitelnummer
\renewcommand\cftchapafterpnum{\vskip3mm}
Wie es gehtVor? Ich dachte, so etwas \cftchapbeforepnum
wäre verfügbar, aber das ist nicht der Fall.
Antwort1
Auf Seite 27 vontocloft
Paketbesagt, dass „es Benutzerbefehle zur Steuerung des Satzes von Kapiteleinträgen gibt“. Einer davon ist \cftbeforechapskip
.
\documentclass[12pt]{report}
\usepackage{tocloft}
\setlength{\cftbeforechapskip}{15mm}
\renewcommand\cftchapafterpnum{\vskip3mm}
\begin{document}
\tableofcontents
\chapter{Introduction}
\chapter{Main chapter one}
\section{Background}
\section{Methods}
\section{Results}
\section{Conclusion}
\chapter{Main chapter two}
\section{Background}
\section{Methods}
\section{Results}
\section{Conclusion}
\chapter{Main chapter three}
\section{Background}
\section{Methods}
\section{Results}
\section{Conclusion}
\chapter{Conclusion}
\end{document}