我有一个论文模板,要求作者按以下格式书写:
XXX YYY
Inst-111 Inst-222
Inst-333 Inst-444
email-1 e-mail-2
我写如下:
\documentclass[11pt,english]{article}
\usepackage{coling2016}
\author{
LastName1,\\ FirstName1\\
\texttt{[email protected]}
\\\And
LastName2,\\ FirstName2\\
\texttt{[email protected]}
\\\And
LastName2,\\ FirstName2\\
\texttt{[email protected]}
\\\And
LastName2,\\ FirstName2\\
\texttt{[email protected]}
\\\And
LastName2,\\ FirstName2\\
\texttt{[email protected]}
\\\And
LastName2,\\ FirstName2\\
\texttt{[email protected]}
}
\title{Usage of the \texttt{\textbackslash author} command}
\begin{document}
\maketitle
\end{document}
模板位于:http://coling2016.anlp.jp/doc/coling2016.zip
但是,由于我必须添加 5 位作者,因此出现了溢出,并且不会更改行。我没有使用 IEEEtrans 模板。
我希望第一行有 3 位作者,第二行居中有 2 位作者。
答案1
在 中coling2016.sty
,有三个不同的 and 命令:\and
分隔具有相同隶属关系的作者姓名、\And
分隔同一行中具有不同隶属关系的作者以及\AND
分隔不同行的作者。有关更多信息(?),请参阅 开头的注释coling2016.sty
。以下是您的示例。
\documentclass[11pt,english]{article}
\usepackage{coling2016}
\author{
First Last 1\\
Affiliation 1\\
\texttt{[email protected]}
\\\And
First Last 2\\
Affiliation 2\\
\texttt{[email protected]}
\\\And
First Last 3\\
Affiliation 3\\
\texttt{[email protected]}
\\\AND
First Last 4\\
Affiliation 4\\
\texttt{[email protected]}
\\\And
First Last 5\\
Affiliation 5\\
\texttt{[email protected]}
\\\And
First Last 6\\
Affiliation 6\\
\texttt{[email protected]}
}
\title{Usage of the \texttt{\textbackslash author} command}
\begin{document}
\maketitle
\end{document}