当有多位作者时, \author 的正确用法是什么?

当有多位作者时, \author 的正确用法是什么?

在做一个项目,我们正在写的文章是我和别人一起写的,我应该怎么填呢\author

那怎么样\author{LASTNAME1, FIRSTNAME1 \& LASTNAME2, FIRSTNAME2}?这并不能说服我,但它可能是正确的。

有没有更好的方法呢?

附言:我正在使用该article课程,并且作者将会被显示一次\maketitle{}

答案1

\maketitle使用with命令\author可以简单地区分两个(或更多)作者\and。请参阅下面的代码以获得一些启发。

\documentclass[11pt,english]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}

\author{
  LastName1, FirstName1\\
  \texttt{[email protected]}
  \and
  LastName2, FirstName2\\
  \texttt{[email protected]}
}
\title{Usage of the \texttt{\textbackslash author} command}

\begin{document}
  \maketitle
\end{document}

在此处输入图片描述

答案2

\documentclass[twoside,english]{elsarticle}
\usepackage[T1]{fontenc}
\pagestyle{headings}
\usepackage{amsthm}

\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\theoremstyle{plain}
\newtheorem{thm}{\protect\theoremname}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
% specify here the journal
\journal{Example: Nuclear Physics B}

% use this if you need line numbers
%\usepackage{lineno}

\makeatother

\usepackage{babel}
\providecommand{\theoremname}{Theorem}

\begin{document}

\begin{frontmatter}{}

\title{This is a specimen title\tnoteref{t1,t2}}

\tnotetext[t1]{This document is a collaborative effort.}

\tnotetext[t2]{The second title footnote which is a longer longer than the first
one and with an intention to fill in up more than one line while formatting.}

\author[rvt]{C.V.~Radhakrishnan\fnref{fn1}\corref{cor1}\corref{cor2}}

\ead{[email protected]}

\author[rvt,focal]{K.~Bazargan\fnref{fn2}}

\ead[url]{http://www.elsevier.com}

\fntext[fn1]{This is the specimen author footnote.}

\fntext[fn2]{Another author footnote, but a little more longer.}

\cortext[cor1]{Corresponding author}

\cortext[cor2]{Principal corresponding author}

\address[rvt]{River Valley Technologies, SJP Building, Cotton Hills, Trivandrum,
Kerala, India 695014}

\address[focal]{River Valley Technologies, 9, Browns Court, Kennford, Exeter, United
Kingdom}
\begin{abstract}
Abstract, should normally be not longer than 200 words.
\end{abstract}
\begin{keyword}
quadruple exiton \sep polariton \sep WGM \PACS 71.35.-y \sep 71.35.Lk
\sep 71.36.+c \MSC[2008]23-557
\end{keyword}

\end{frontmatter}{}


\section{Introduction}

Bla bla,



\end{document}

相关内容