脚注中的间距

Spacing in footnote

我正在尝试写我的从属关系,我需要使用多行。我做的是

\author{Me
    \footnote{First line
         \newline  Second line}}

但在脚注中显示为

如何让第二行直接出现在第一行下方?具体来说,如果 S 恰好低于 F

您可以插入 space 到脚注标记的确切宽度 - 1.8em:

\documentclass{article}

\begin{document}

\title{A title}
\author{Me\footnote{First line \newline
  \hspace*{1.8em}Second line}%
}

\maketitle

\end{document}