如何使用 svjour3 文档类将三个作者姓名放在文档标题中?

如何使用 svjour3 文档类将三个作者姓名放在文档标题中?

我曾经svjour3写过论文,但我无法将所有作者姓名写在一行中,我该如何纠正?我的代码如下。

\documentclass{svjour3}    
\smartqed 
\journalname{Earth Science Informatics}
\usepackage{multicol}
\usepackage{hyperref}
\usepackage{pifont}
\usepackage{epsf}
\usepackage{graphicx}
\usepackage{float}  
\usepackage[top=2.5cm,right=3cm,bottom=2.5cm,left=2.5cm]{geometry}  
\begin{document}
\title{ Earthquake Magnitude ...}
\author{{Mahshid Fahandezhsadi, Kamal Aghazade, Hamed Fahandezh Sadi}}
\maketitle
 ....
\end{document}

答案1

您需要用 \and 分隔名称

\author{first author  \and scond \and third }

相关内容