如何优雅地标注作者脚注?

看别人的论文时看到利用脚注将冗余信息放到页面脚注位置,使得论文作者区域清爽、简洁、高级。

想要效仿。

于是在网络中进行了一番搜索,发现了一篇博文给了我答案:

footnote latex

实现的效果是任意指定作者的标注符号,包括多个作者可以对应同一个符号、同一个脚注。

参考博文中的方法习得我自己的代码如下:

\author{
Author1\footnotemark[1], Author2\footnotemark[1], %对应同一个脚注符号
Author3\footnotemark[2], %\Envelope
Author4, 
Author5\footnotemark[2],%\Envelope
}
\maketitle

\renewcommand{\thefootnote}{\fnsymbol{footnote}} %将脚注符号设置为fnsymbol类型,即特殊符号表示
\footnotetext[1]{These authors contributed equally to this work.} %对应脚注[1]
\footnotetext[2]{Corresponding authors.} %对应脚注[2]

编译结果如下:



猜你喜欢

转载自blog.csdn.net/simmel_92/article/details/80156405