如何在目錄中的章節之前加入空格?

如何在目錄中的章節之前加入空格?

我知道如何添加空間章節號

\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}

在此輸入影像描述

相關內容