スペースを追加する方法を知っています後章番号
\renewcommand\cftchapafterpnum{\vskip3mm}
どうやってするの前に? のようなもの\cftchapbeforepnum
が利用可能だと思っていましたが、そうではありません。
答え1
27ページtocloft
パッケージ「章のエントリのタイプセットを制御するためのユーザーコマンドがあります」と書かれています。そのうちの 1 つは です\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}