我知道如何添加空間後章節號
\renewcommand\cftchapafterpnum{\vskip3mm}
怎麼做前?我以為類似的東西\cftchapbeforepnum
會可用,但事實並非如此。
答案1
第 27 頁tocloft
包裹說「有使用者指令來控制章節條目的排版」。其中之一是\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}