如何在两个指定的连续脚注的显示中进行一次性间距调整

如何在两个指定的连续脚注的显示中进行一次性间距调整

我正在排版一份需要添加脚注的文本类型各异的文档。在某些情况下,连续脚注之间的标准间距似乎不够。

如果可能的话,我想对两个指定脚注之间的间距进行一次性调整,然后恢复到原始间距。

例如,考虑

\documentclass[12pt]{book}
\usepackage{footmisc}

    \begin{document}
    \thispagestyle{empty}
    
    A sentence.\footnote{First footnote}
    Another sentence.\footnote{Second footnote}
    Another sentence.\footnote{Third footnote}
    A sentence.\footnote{Fourth footnote}
    Another sentence.\footnote{Fifth footnote}
    Another sentence.\footnote{Sixth footnote}
    Another sentence.\footnote{Seventh footnote.}
    \end{document}

产生脚注显示:

在此处输入图片描述

问题:如果我想将第 3 和第 4 个脚注之间的标准间距增加 50%,然后从第五个脚注开始恢复到标准间距---如何实现?

谢谢。

答案1

仅需一次调整:(根据需要添加垂直空间,尝试\vspace*{10\baselineskip}

A

\documentclass[12pt]{book}
\usepackage{footmisc}

\begin{document}
    \thispagestyle{empty}
    
    A sentence.\footnote{First footnote}
    Another sentence.\footnote{Second footnote}
    \footnote{Third footnote \vspace*{0.3\baselineskip}} % changed <<<<
    A sentence.\footnote{Fourth footnote}
    Another sentence.\footnote{Fifth footnote}
    Another sentence.\footnote{Sixth footnote}
    Another sentence.\footnote{Seventh footnote.}
\end{document}

相关内容