如何在使用 gSCS2e 文档类时添加第三位作者?

如何在使用 gSCS2e 文档类时添加第三位作者?

我想使用gSCS2e.tex可用的模板写一篇文章这里有三位作者和两个地址。

该模板针对两个不同的作者,如何添加另一个作者?

\documentclass{gSCS2e}

\begin{document}

\title{{\itshape Journal of Statistical Computation and Simulation} \break \LaTeX\ style guide for authors (Style 2 + NLM reference style)}

\author{A.N. Author$^{\rm a}$$^{\ast}$\thanks{$^\ast$Corresponding author. Email: [email protected]
\vspace{6pt}} and I.T. Consultant$^{\rm b}$\\\vspace{6pt}  $^{a}${\em{Taylor \& Francis, 4 Park Square, Milton Park, Abingdon, UK}};
$^{b}${\em{Institut f\"{u}r Informatik, Albert-Ludwigs-Universit\"{a}t, Freiburg,
Germany}}\\\received{v3.3 released October 2013} }

\maketitle

\end{document}

答案1

客气地说,这个特定文档类设置\author命令的方式有点特殊。幸运的是,稍微(重新)格式化模板代码并找出将其他作者的姓名放在哪里并不太难。在下面的示例中,我添加了一个名为“RA Ndom”的额外作者,并为 Ndom 女士提供了一些虚拟位置信息。您会发现我建议使用\textsuperscript{a}而不是^{\rm a}等。

在此处输入图片描述

\documentclass{gSCS2e} % for Journal of Statistical Computation and Simulation
\title{{\itshape Journal of Statistical Computation and Simulation} \break 
\LaTeX\ style guide for authors (Style 2 + NLM reference style)}
\author{A. N. Author\textsuperscript{a}%
$^{\ast}$\thanks{$^\ast$Corresponding author. Email: [email protected]}, 
I. T. Consultant\textsuperscript{b},
and R. A. Ndom\textsuperscript{c}\\
\vspace{6pt}
\textsuperscript{a}{\em Taylor \& Francis, 4 Park Square, Milton Park, Abingdon, UK};
\textsuperscript{b}{\em Institut f\"{u}r Informatik, Albert-Ludwigs-Universit\"{a}t, Freiburg,
Germany};
\textsuperscript{c}{\em Nowhere in particular}}
\received{v3.3 released October 2013} 
\begin{document}
\maketitle
\end{document}

相关内容