[Tex/LaTex] How to write a footnote attached to the author in a LaTeX paper

amsartfootnotestitles

I want to attach a footnote to each author of a paper and write that their research was supported by different grants. How do I do that? Simply \footnote after each author does not work.

Best Answer

If your document class is amsart then the syntax is a bit different

\documentclass{amsart}

\title{My great paper}

\author{Fist author}
\thanks{The first author wants to thank someone.}

\author{Second author}
\thanks{The second author wants to thank someone else.}

\begin{document}
\maketitle

\end{document}

Note that in the \thanks command you have to explicitly mention which information corresponds to which author, since no footnote “marks” will be printed with the acknowledgements. This is apparently the preferred style for AMS as discussed for example at the The AMS article document class.