在脚注行和该页的第一个脚注之间,我需要添加双倍空格。我尝试使用 \ 命令,但它会在数字后添加一个空格。有人知道我该怎么做吗?
答案1
您可以增加\skip\footins
以腾出空间,然后重新定义\footnoterule
以在规则后面放置额外的空间:
\documentclass{article}
\let\oldfootnoterule\footnoterule
\addtolength{\skip\footins}{20pt}
\def\footnoterule{\vskip-20pt\oldfootnoterule \vskip20pt\relax}
\begin{document}
xxxx\footnote{aaa aa aa} xxxx\footnote{bb bb bb bb}
xxxx\footnote{cccc} xxxx\footnote{dddd}
\end{document}