是否可以在目录中的新部分之前留出更多空间?我希望箭头处留出更多空间:
我尝试使用\cftchapafterpnum{\vskip3pt}
- 但这并没有产生我想要的效果。
\cftsetindents{subsubsection}{0.7in}{0.5in} %laver subsubsections indtrykket mindre.
%\renewcommand\cftchapafterpnum{\vskip3pt}
%\renewcommand\cftsecafterpnum{\vskip5pt}
\singlespacing
\setlength{\cftbeforetoctitleskip}{-1em}
\addtocontents{toc}{\vskip-15pt}
\tableofcontents{\thispagestyle{empty}}
答案1
\section
如果在任何条目之前应该增加跳过,\cftbeforesecskip
那么就是要更改的正确命令。
根据您的需要调整该值。
\documentclass{book}
\usepackage{tocloft}
\usepackage{blindtext}
\renewcommand{\cftbeforesecskip}{10pt}
\begin{document}
\tableofcontents
\chapter{A chapter}
\section{A section}
\subsection{A subsection}
\addcontentsline{toc}{subsection}{Delklusion}
\section{Another section}
\subsection{Another subsection}
\end{document}