Elsevier 模板给作者加脚注
\thanks{} 无效,网上有说使用
\corref{cor1}
\cortext[cor1]{Corresponding author}
但是实测发现不行,只能加一个标注,再加一个就是两个 *
。还有说使用 \authornote{*}
,也不行。后来在这里(https://tex.stackexchange.com/questions/116515/elsarticle-frontmatter-corresponding-author)发现说使用 \fnref
,完美解决:
\documentclass[preprint,12pt]{elsarticle}
\begin{document}
\begin{frontmatter}
\title{Title}
\author{Author One}
\ead{email@uni.edu}
\fnref{fn1}
\fntext[fn1]{Student}
\author{Author Two}
\ead{email2@uni.edu}
\fnref{fn2,fn3}
\fntext[fn2]{Lecturer}
\fntext[fn3]{Corresponding author.}
\address{Address Here}
\begin{abstract}
Abstract abstract abstract
\end{abstract}
\end{frontmatter}
\section{Section1}
Start typing...
\end{document}