使用 memoir 类时,我的许多文档都要求正文为双倍行距,脚注为单倍行距。一切正常,但当我使用该\paragraphfootnotes
命令时,脚注不再是单倍行距,而是看起来像是正文的双倍行距。
这是一个 MWE;注释掉该\paragraphfootnotes
命令以查看它对脚注行距的影响。
\documentclass{memoir}
\paragraphfootnotes
\begin{document}
\DoubleSpacing
This is a memoir document.\footnote{Memoir.}
Blah blah blah blah blah.\footnote{This is a multiline footnote.
Under normal circumstances, it will be single-spaced,
despite the double-spacing of the main text.
However, when the paragraphfootnotes command is given,
it is double-spaced, seemingly using the line-spacing of the main text.}
Blah blah blah blah blah.\footnote{Blah.}
Blah blah blah blah blah.
Blah blah blah blah blah.
\end{document}
那么,有没有办法解决这个问题,让脚注保持单倍行距?我注意到在文章类中也存在类似的问题这里,但希望回忆录中有更简单的方法。
答案1
双倍行距适用于打字机,而不适用于排字机。
\documentclass{memoir}
\paragraphfootnotes
\begin{document}
%\DoubleSpacing
\baselineskip=2\baselineskip
This is a memoir document.\footnote{Memoir.}
Blah blah blah blah blah.\footnote{This is a multiline footnote.
Under normal circumstances, it will be single-spaced,
despite the double-spacing of the main text.
However, when the paragraphfootnotes command is given,
it is double-spaced, seemingly using the line-spacing of the main text.}
Blah blah blah blah blah.\footnote{Blah.}
Blah blah blah blah blah.
Blah blah blah blah blah.
\end{document}