我需要为使用 的作者设置 2 个“altaffiliation” achemso
,含义是:
\author{author1}
\affiliation{uni1}
\altaffiliation{Contributed equally to this work}
\author{author2}
\affiliation{uni1}
\altaffiliation{Present address: uni2}
\altaffiliation{Contributed equally to this work}
编译后,会出现两个脚注,但作者 #2 旁边的当前地址对应的符号不见了。我该如何解决这个问题?文档或 Google 对此只字未提。
答案1
achemso
手册中说明了这一点:
重复输入 \affiliation 和 \alsoaffiliation 将导致地址列表和脚注中只打印一个地址。重复输入 \altaffiliation 只会产生一个脚注,因此可用于以下条目
\author{First Coworker}
\altaffiliation{Contributed equally to this work}
\author{Second Coworker}
\altaffiliation{Contributed equally to this work}
如果需要。
因此,您最好像alsoaffiliation
这样使用第二个地址:
\documentclass{achemso}
\title{Title}
\author{author1}
\affiliation{uni1}
\alsoaffiliation{Present address: uni2}
\altaffiliation{Contributed equally to this work}
\author{author2}
\affiliation{uni1}
\alsoaffiliation{Present address: uni2}
\altaffiliation{Contributed equally to this work}
\begin{document}
\maketitle
\end{document}