如何更改脚注中文本之间的间距?

如何更改脚注中文本之间的间距?

\maketitle当我使用标题中的脚注作为示例时,页面边距和脚注中的文本之间的空间有点问题

\documentclass[12pt,twocolumn]{article}
    \usepackage{showframe}
    \usepackage{lipsum}
    \title{a title\footnote{a footnote}}
    \begin{document}
    \maketitle
    \end{document}

<code>脚注与边距之间的空格</code>

如何设置脚注最后一行和底部边距之间的间距?

答案1

插入任意深度的垂直支柱:

在此处输入图片描述

\documentclass{article}
\usepackage{showframe}
\title{a title\footnote{\protect\rule[-2\baselineskip]{0pt}{0pt}a footnote}}
\begin{document}
\maketitle
\end{document}

\footnote由于您在 内部使用,因此\title您需要。\protect\rule

相关内容