在 elsarticle 模板中添加多个作者时出现问题

在 elsarticle 模板中添加多个作者时出现问题

你好,我是新手,正在使用 elsarticle.cls 撰写文章。我在添加多个地址时遇到了一些问题。当我像这样编码时

\documentclass[5p,twocolumn, times]{elsarticle}

\usepackage{lineno,hyperref}
\usepackage{xcolor}
\usepackage[hyphens]{xurl}
\modulolinenumbers[5]

\journal{Journal of \LaTeX\ Templates}
\bibliographystyle{elsarticle-num}
\begin{document}

\begin{frontmatter}

\title{Title}
\author[1,2]{Byeoungju Lee}
\author[1, 3]{Kwangnam Yu}
\author[4]{Jiwon Jeon}

\author[1]{E. J. Choi\corref{mycorrespondingauthor}}
\cortext[mycorrespondingauthor]{Corresponding author}
\ead{[email protected]}

\address[1]{Department of Physics, University of Seoul, Seoul 130-743, Korea}
\address[2]{Department of Smart City, University of Seoul, Seoul 130-743, Korea}
\address[3]{SK Siltron Inc., 132-11, 3gongdan 3-ro, Gumi-si, Gyeongsangbuk-do 39400, South 
 Korea}
\address[4]{NSRI(Natural Science Research Institute), University of Seoul,  Seoul 130-743, 
 Korea}

\begin{abstract}
Abstract
\end{abstract}

\end{frontmatter}
article body
\end{document}

我编译了它。结果是 在此处输入图片描述

地址3在Kwangnam Yu上写成1,而不是c。为什么地址不写成c?

答案1

欢迎!我在背面复制了您的代码,并删除了 1 和 3 之间的空格\author[1,3]{Kwangnam Yu},这样地址就变成了 c。

在此处输入图片描述

\documentclass[5p,twocolumn, times]{elsarticle}

\usepackage{lineno,hyperref}
\usepackage{xcolor}
\usepackage[hyphens]{xurl}
\modulolinenumbers[5]

\journal{Journal of \LaTeX\ Templates}
\bibliographystyle{elsarticle-num}
\begin{document}

\begin{frontmatter}

\title{Title}
\author[1,2]{Byeoungju Lee}
\author[1,3]{Kwangnam Yu}
\author[4]{Jiwon Jeon}

\author[1]{E. J. Choi\corref{mycorrespondingauthor}}
\cortext[mycorrespondingauthor]{Corresponding author}
\ead{[email protected]}

\address[1]{Department of Physics, University of Seoul, Seoul 130-743, Korea}
\address[2]{Department of Smart City, University of Seoul, Seoul 130-743, Korea}
\address[3]{SK Siltron Inc., 132-11, 3gongdan 3-ro, Gumi-si, Gyeongsangbuk-do 39400, South 
 Korea}
\address[4]{NSRI(Natural Science Research Institute), University of Seoul,  Seoul 130-743, 
 Korea}

\begin{abstract}
Abstract
\end{abstract}

\end{frontmatter}
article body
\end{document}

相关内容