如何在目录中的章节前添加空格?

如何在目录中的章节前添加空格?

我知道如何添加空间章节编号

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

在此处输入图片描述

相关内容