脚注与脚注标记之间的间距

脚注与脚注标记之间的间距

我上的学校要求脚注为单倍行距,中间留空行。这很容易做到\footnotesep,但第一个脚注必须靠近脚注标记。不知道该怎么做。

\documentclass{report}
\usepackage[doublespacing]{setspace}
\footnotesep\baselineskip

\begin{document}
This is a trial run of setspace for doublespaceing main body text. I also need
a blank line between singlespaced footnotes with the first footnote as close to the footnote marker as possible.\footnote{sample}
This would be great if it will work.\footnote{sample}
\end{document}

尝试添加图片但不允许新用户添加。抱歉

答案1

我认为您可以通过欺骗\footnoterule工作方式来实现这一点,因为它被放置在页面上的任何脚注之前。

\let\oldfootnoterule\footnoterule
\def\footnoterule{\oldfootnoterule\vspace{-0.5\baselineskip}}

您可能需要使用精确的值才能得到您喜欢的值

前:

在此处输入图片描述

后:

在此处输入图片描述

我唯一的犹豫是,我总是发现脚注是黑暗艺术,尽管这看起来还不错,但有人可能会告诉你它有一个不良的副作用!

(我不确定我是否愿意完全删除该规则,这样就没有人会注意到这个问题......)

相关内容