图表列表中的垂直间距

图表列表中的垂直间距

我想按照图所示排列图形之间的垂直空间

我不知道这种空间的存在是因为什么。

答案1

您没有提供 MWE,因此我只能猜测您正在使用不提供 的类\chapter。例如bookreportmemoir, ... 类提供了一个\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}

相关内容