答案1
我\footnoterule
在前面添加了一个\vfilneg
, 来消除文本和脚注之间的任何空格(也就是说,它取消了原本\vfil
存在的 )。
\documentclass{article}
\let\svfootnoterule\footnoterule
\renewcommand\footnoterule{\vfilneg\svfootnoterule}
\begin{document}
xyz\footnote{pdq}
\end{document}
如果您更喜欢指定的空间而不是零空间,那么您可以添加:
\documentclass{article}
\let\svfootnoterule\footnoterule
\renewcommand\footnoterule{\vfilneg\vspace{\baselineskip}\svfootnoterule}
\begin{document}
xyz\footnote{pdq}
\end{document}