目录和图表列表:更改列表之间的行距

目录和图表列表:更改列表之间的行距

这不是同一个问题这里。 在按照示例中所示的方式使用 tocloft 创建图形列表时,我想控制图形列表之间的行距。使用类似

\setlength{\parskip}{0pt}

或类似内容。以下是示例。

(前言):

\usepackage{tocloft}
\renewcommand{\cftfigpresnum}{Abb. }
\settowidth{\cftfignumwidth}{Abb. 10\quad}
%\setlength{\cftfignumwidth}{2cm}
\renewcommand\cftfigfont{\footnotesize} 
\renewcommand{\cftfigdotsep}{\cftnodots}%punkte im abb. verzeichnis.
\cftpagenumbersoff{figure}
\setlength{\cftfigindent}{0pt} 

和:

\begin{document}

% in between there are many figures... 

\chapter{Abbildungsnachweise}
{\makeatletter
\let\@cftmakeloftitle\relax
%\@starttoc{lof}% Print List of Figures
\listoffigures
\makeatother} 

\end{document}

答案1

重新定义长度\cftbeforefigskip

\setlength\cftbeforefigskip{20pt}

相关内容