Elsarticle 脚注地址

Elsarticle 脚注地址

考虑这个模板的例子elsarticle

\documentclass[3p,times,twocolumn]{elsarticle}
\journal{Nuclear Physics B}

\begin{document}
\begin{frontmatter}

\title{Sample article to present \texttt{elsarticle} class\tnoteref{label0}}
\tnotetext[label0]{This is only an example}


\author[label1,label2]{Author One\corref{cor1}\fnref{label3}}
\address[label1]{Address One}
\address[label2]{Address Two\fnref{label4}}

\cortext[cor1]{I am corresponding author}
\fntext[label3]{I also want to inform about\ldots}
\fntext[label4]{Small city}

\ead{[email protected]}
\ead[url]{author-one-homepage.com}

\author[label5]{Author Two}
\address[label5]{Some University}
\ead{[email protected]}

\author[label1,label5]{Author Three}
\ead{[email protected]}

\begin{abstract}
    Text of abstract. Text of abstract. Text of abstract. Text of abstract. Text of abstract. 
\end{abstract}

\begin{keyword}
    example \sep \LaTeX \sep template
\end{keyword}

\end{frontmatter}

\end{document}

未显示脚注上标:

在此处输入图片描述

我尝试fnreffootnote现在显示的注释进行替换,但是即使引用同一个脚注,它也会不断增加!例如更改以下几行:

\address[label2]{Address Two\footnote{label4}}
\address[label5]{Some University\footnote{label4}}

产量:

在此处输入图片描述

在此处输入图片描述

这显然是错误的。如果您能帮助我了解如何修复此问题,我将不胜感激。

附言 关联到 Reddit 帖子。

答案1

好的,我想我找到了一个解决方法。基本上,可以使用以下代码指定脚注标记,\footnote[label]{tag}如果我将上面的几行更改为:

\address[label2]{Address Two\footnote[2]{label4}}
\address[label5]{Some University\footnote[2]{label4}}

问题已解决:

在此处输入图片描述

当这种方法不管用时,一个快速而肮脏的解决方法就是用\textsuperscript{2}

相关内容