我正在尝试使用 \thanks 关键字添加平等贡献脚注。
\documentclass{llncs}
\usepackage{hyperref}
\begin{document}
\title{Some Title}
\author{Author1 \thanks{equal contribution} \and Author2 \footnotemark[1] \and Author3}
\institute{\email{email1, email2, email3} \\ Institute}
\maketitle
\end{document}
这给了我一个错误,
! \@xfootnotenext 的使用与其定义不符
有什么解决办法吗?
答案1
似乎不能在for 字段\footnotemark
中使用。这里有一个解决方法:\author
llncs
\documentclass{llncs}
\usepackage{hyperref}
\makeatletter
\newcommand{\printfnsymbol}[1]{%
\textsuperscript{\@fnsymbol{#1}}%
}
\makeatother
\begin{document}
\title{Some Title}
\author{Author1\thanks{equal contribution}
\and Author2\printfnsymbol{1} \and Author3}
\institute{\email{email1, email2, email3} \\ Institute}
\maketitle
\end{document}