如何在 LaTeX 论文中写附在作者的脚注?

如何在 LaTeX 论文中写附在作者的脚注?

我想给论文的每位作者附上脚注,并写明他们的研究得到了不同的资助。我该怎么做?直接\footnote在每个作者后面加上是不行的。

答案1

如果你的文档类是,amsart那么语法会有点不同

\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}

请注意,在\thanks命令中,您必须明确提及哪些信息对应于哪位作者,因为不会在致谢中打印脚注“标记”。这显然是 AMS 的首选样式,例如在AMS 文章文档类

答案2

我认为你要找的命令是\thanks

\documentclass{article}

\title{My great paper}
\author{One author\thanks{some info} \and Another author\thanks{more info}}

\begin{document}
\maketitle

\end{document}

答案3

我也做过类似的事情,让不同的作者拥有相同的隶属关系,并改编了一个例子安东尼·莱肯斯

\documentclass{article}
\usepackage{hyperref}
\newcommand{\footremember}[2]{%
   \footnote{#2}
    \newcounter{#1}
    \setcounter{#1}{\value{footnote}}%
}
\newcommand{\footrecall}[1]{%
    \footnotemark[\value{#1}]%
} 
\title{How to bowl properly}
\author{%
    The Dude\footremember{alley}{Holly Star Lanes Bowling Alley}%
    \and Walter Sobchak\footremember{trailer}{probably in a trailer park}%
    \and Jesus Quintana\footrecall{alley} \footnote{Mexico?}%
    \and Uli Kunkel\footrecall{trailer} \footnote{Germany?}%
}
\begin{document}
\maketitle
The whole example is taken from \href{http://anthony.liekens.net/index.php/LaTeX/MultipleFootnoteReferences}{anthony liekens}\ldots
\end{document}

相关内容