答案1
您没有提供 MWE,因此我只能猜测您正在使用不提供 的类\chapter
。例如book
,report
,memoir
, ... 类提供了一个\chapter
命令,该命令在 LoF 和 LoT 中插入 10pt 垂直空间。试试这个
\newcommand*{\insertloftspace}{%
\addtocontents{lof}{\protect\addvspace{10pt}}%
\addtocontents{lot}{\protect\addvspace{10pt}}}
这将在 LoF 和 LoT 中插入 10pt 垂直空间。假设您正在使用,\section
则在每个之后调用此方法\section
将插入您想要的空间。
% preamble
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\section{First} \insertloftspace
% text, figures and tables
\section{Second} \insertloftspace
% text, figures and tables
% and so on
\end{document}