使用 \usepackage[para]{footmisc} 时文本和脚注中的行距不同

使用 \usepackage[para]{footmisc} 时文本和脚注中的行距不同

希望这个问题还没有被解决:

我希望脚注中的行距较小,同时文本中的行距为两倍或更多。我一直使用\usepackage[doublespacing]{setspace}和,\usepackage[para]{footmisc}以便在同一行上放置尽可能多的脚注。问题是应该\usepackage[doublespacing]{setspace}只更改文本主体而不更改脚注,但我的文件中并非如此。

链接显示“Footmisc 知道这个 [我的问题],并保留了更改。但是,您必须在 footmisc 之前加载 setspace。”也许我不明白“加载”是什么意思,但我似乎无法让它工作,即使我创建一个新文件并按照建议的顺序编译它。

有人能给出建议,知道问题出在哪里吗?或者可以尝试不同的软件包吗?谢谢!

答案1

doublespacing不要将其作为选项添加到 ,而是setspace将其添加到 之后\begin{document}

\documentclass{article}
\usepackage{setspace}                    %%% not in the option
\usepackage[para]{footmisc}
\usepackage{kantlipsum}   %% for dummy text

\begin{document}
\doublespacing                           %%% add it here
\kant[1]

Some text here\footnote{first foot note} some more text here\footnote{\kant[1]}
\end{document}

在此处输入图片描述

相关内容