表格清单和图片清单的每个条目之间都有空行

表格清单和图片清单的每个条目之间都有空行

我正在写我的论文。要求是:图表列表应为单倍行距,每个条目之间应有一个空行。我正在使用以下代码片段,它创建了单倍行距的图表列表,但我需要帮助如何在每个条目后添加空行。

% Single-space list of tables, add it to the table of contents.
\def\listoftables{%
  \@restonecolfalse%
  \if@twocolumn\@restonecoltrue\onecolumn\fi%
  \newpage%
  \centerline{\expandafter\textbf\expandafter{\listtablename}}%
  \bigskip%
  \phantomsection%
  \addcontentsline{}{frontmatter}{\protect\numberline{}\listtablename }%
  % This group overloads \numberline to output ``Table 1.3'' instead of ``1.3''
  \begingroup%
    \let\ORIG@numberline\numberline%
    \renewcommand*{\numberline}[1]{\ORIG@numberline{\tablename~##1:}}%
    {\ssp\@starttoc{lot}}%
    \if@restonecol\twocolumn\fi%
  \endgroup %
  }

这就是我现在所拥有的。表格列表

相关内容