如何更改 ListofFigures 和 Bibliography 条目内的水平间距?

如何更改 ListofFigures 和 Bibliography 条目内的水平间距?

我的论文要求整个文档都需要双倍行距,但“图表和参考书目列表内的条目内”除外。

学校模板在 .cls 文件中这样设置间距:

\newcommand{\singlespacing}{%
  \let\CS=\small\renewcommand{\baselinestretch}{1.0}\CS}
\newcommand{\doublespacing}{%
  \let\CS=\small\renewcommand{\baselinestretch}{1.6}\CS}

这样我就可以通过以下方式输入 .tex 文件

\doublespacing

那么我该如何修改条目呢?

我的文件:

\begin{document}

\maketitle
\makeabstract

\doublespacing

...
...

\tableofcontents

\listoffigures

\listoftables

...
...

\bibliographystyle{apalike}
\bibliography{lit}

相关内容