elsarticle 中作者的标签

elsarticle 中作者的标签

我对标记作者有疑问elsarticle

我希望的是这样的:

在此处输入图片描述

因此,对于属于同一地址(大学)的人,标签必须在下一行中以逗号分隔。但我得到的是这样的:

在此处输入图片描述

我如何实现这个目标?

这是我的代码:

\documentclass[12pt]{elsarticle}
\usepackage{kantlipsum}
\journal{Journal name}
\begin{document}
\begin{frontmatter}
\title{XXX}
\author[label1]{Dr. Thirumanaran M., Subham Soni}
\address[label1]{Department of Computer Science and Engineering, Pondicherry Engg College, India}
\begin{abstract}
\kant[1]
\end{abstract}
\begin{keyword}
Interactive Voice Response System \sep Dynamic \sep Context-based \sep Semantic Web Services \sep Rule Engine \sep JESS \sep Ontology
\end{keyword}
\end{frontmatter}
\end{document} 

答案1

在我看来,它认为“Dr. Thirumanaran M., Subham Soni”是单个作者。尝试将他们分别声明为作者:

\author[label1]{Dr. Thirumanaran M.}
\author[label1]{Subham Soni}
\address[label1]{Department of Computer Science and Engineering, Pondicherry Engg College, India}

这应该分别列出两位作者,每位作者都有与 Pondicherry Engg College 相对应的脚注编号。请注意,每个隶属关系只有一个脚注编号或字母。多位作者可以共享引用同一机构的相同脚注索引。每位作者不会自动获得单独的脚注编号。

相关内容