多个作者但一封邮件

多个作者但一封邮件

我是 Latex 新手,我想在文档末尾添加一封邮件,并在第一位作者旁边添加“*”。我尝试了很多方法,但都没有得到我想要的结果。

我现在坚持的是

\author{Author 1$^{1,2}$} \thanks{\href{mailto:[email protected]}{[email protected]}}\author{author2$^2$, author3$^2$}

这让我 在此处输入图片描述

在我的文档的最后 在此处输入图片描述

但正如您所看到的,作者 1 和其他人之间有一个“and”,这是我不想要的。我该如何摆脱它?或者您有其他解决方案?

谢谢大家,希望我的问题已经表达清楚了。

编辑:我正在使用一个我必须使用的模板。从模板中,如果我想添加其他作者,行末会出现“*”,但我希望它紧挨着作者 1。这就是为什么我尝试了上述解决方案,但它给了我作者之间的“and”。

如果不可能的话我当然会适应,但也许我的问题有解决办法?

模板的代码是

\documentclass[aps,twocolumn,showpacs]{revtex4-1}
\usepackage{epsfig}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{mathrsfs}
\usepackage{theorem}
\usepackage{amsmath}
\usepackage{times}
\usepackage{color}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage{ifpdf}
\ifpdf
\usepackage{epstopdf}   
\usepackage{url}
\fi


\begin{document}
\title{Title}

\author{Firstname Lastname$^1$}
\email{[email protected]}
\affiliation{$^1$Laboratory, Department, University of City, Address, Country}
\begin{abstract}
\normalsize
Bablabla blablabla~\cite{Ref1}. Bliblibli blibli bli bliblibli~\cite{Ref2}.
Text.
\end{abstract}

\maketitle

\begin{thebibliography}{}

\bibitem{Ref1} A. First, B. Second, and C. Third, "On the Quantum Foundations", Quant. Inf. J. \textbf{1}, 1-10 (2023).

\bibitem{Ref2} A. Fourth, B. Fifth, and C. Sixth, "On the Quantum Revolutions", Quant. Inf. J. \textbf{1}, 11-20 (2023).

\end{thebibliography}
\end{document}

答案1

正如我所言,使用 \author 只考虑一位作者,因此要将“and”放在作者列表的末尾,您需要将每个名字放在单独的 \author 中

\author{Author 1$^{1,2}$} \thanks{\href{mailto:[email protected]}{[email protected]}}\author{author2$^2$}\author{author3$^2$}

这使 在此处输入图片描述

相关内容