如何在脚注行与脚注之间添加空白行?

如何在脚注行与脚注之间添加空白行?

在脚注行和该页的第一个脚注之间,我需要添加双倍空格。我尝试使用 \ 命令,但它会在数字后添加一个空格。有人知道我该怎么做吗?

答案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}

在此处输入图片描述

相关内容