增加 LOT 和 LOF 中条目之间的间距

增加 LOT 和 LOF 中条目之间的间距

我正在修改论文模板以满足学校的格式要求。他们要求“LoT/LoF”条目内的行距为单行,但要求每个条目之间有额外的行距。类似于(例如“图 1.1 的名称超过 1 行):

               List of Figures
1.1 aaa  
aaaa    

1.2 bbb    

1.3 ccc

我查看了.cls文件并将“LoT/LoF”的行距格式更改为单行间距。但我不知道如何增加每个条目之间的间距。现在,我的文件看起来像在此处输入图片描述

这里有一些我的相关 MWE(我在这里粘贴整个 unmeethesis.cls 文件:http://pastebin.com/i2NfxHUf。还需要创建一个名为 unm12.clo 的文件来编译这个,它在评论中(作为社区的新用户,我无法添加两个链接)):

\documentclass[botnum, fleqn]{unmeethesis}


\begin{document}
\clearpage
\setcounter{page}{1}%
\pagenumbering{roman}
\tableofcontents
\listoftables
\listoffigures
\mainmatter
\chapter{AAA}
\section{aaa}
\begin{table*}[!ht]
\caption{Sample Table 1, a very very very very  looooooooooong name for example}
\end{table*}

\begin{table*}[!ht]
\caption{Sample Table 2}
\end{table*}
\section{bbb}

\chapter{BBB}
\section{aaa}
\section{bbb}

\end{document}

答案1

这样的事情能解决你的问题吗?

\documentclass[botnum, fleqn]{unmeethesis}

\begin{document}
\clearpage
\setcounter{page}{1}%
\pagenumbering{roman}
\tableofcontents
{
\setlength{\parskip}{20pt}
\listoftables
}
\listoffigures
\mainmatter
\chapter{AAA}
\section{aaa}
\begin{table*}[!ht]
\caption{Sample Table 1, a very very very very  looooooooooong name for example}
\end{table*}

\begin{table*}[!ht]
\caption{Sample Table 2}
\end{table*}
\section{bbb}

\chapter{BBB}
\section{aaa}
\section{bbb}

\end{document}

相关内容