对于 AAAI 模板,当作者太多时,格式化作者的正确方法是什么?

对于 AAAI 模板,当作者太多时,格式化作者的正确方法是什么?

AAAI 模板,当同一单位的作者过多时,正确的作者格式是什么?“格式化作者信息 - 替代方法”部分中给出的示例甚至有语法错误。

\author{AuthorOne},\textsuperscript{1}
\author{AuthorTwo},\textsuperscript{2}
\author{AuthorThree},\textsuperscript{3}
\author{AuthorFour},\textsuperscript{4}
\author{AuthorFive}, \textsuperscript{5}\\
\textsuperscript{1}AffiliationOne}\\
\textsuperscript{2}AffiliationTwo}\\
\textsuperscript{3}AffiliationThree}\\
\textsuperscript{4}AffiliationFour}\\
\textsuperscript{5}AffiliationFive}\\
\{email, email\}@affiliation.com,
[email protected],
[email protected],
[email protected]

用来\and分隔作者似乎很奇怪,因为每两个相邻的作者之间都有小的“and”。

答案1

也许他们(或你)想要这样的东西

许德夫

\def\year{2018}\relax
%File: formatting-instruction.tex
\documentclass[letterpaper]{article} %DO NOT CHANGE THIS
\usepackage{aaai18}  %Required
\usepackage{times}  %Required
\usepackage{helvet}  %Required
\usepackage{courier}  %Required
\usepackage{url}  %Required
\usepackage{graphicx}  %Required
\frenchspacing  %Required
\setlength{\pdfpagewidth}{8.5in}  %Required
\setlength{\pdfpageheight}{11in}  %Required
%PDF Info Is Required:
  \pdfinfo{
/Title (2018 Formatting Instructions for Authors Using LaTeX)
/Author (AAAI Press Staff)}
\setcounter{secnumdepth}{0}  
 \begin{document}
 \author{Walther Wombat,\textsuperscript{1}
Alfonso Alpaca,\textsuperscript{2}
Carl Capybara,\textsuperscript{3}\\
\textsuperscript{1}{Wallaby}\\
\textsuperscript{2}{Alexandria}\\
\textsuperscript{3}{Canberra}\\
[email protected],
[email protected], 
[email protected]}
\title{The Water Mill}
\maketitle
\end{document}

或者像这样

xuhdev2

\def\year{2018}\relax
%File: formatting-instruction.tex
\documentclass[letterpaper]{article} %DO NOT CHANGE THIS
\usepackage{aaai18}  %Required
\usepackage{mwepage}  %Required
\usepackage{times}  %Required
\usepackage{helvet}  %Required
\usepackage{courier}  %Required
\usepackage{url}  %Required
\usepackage{graphicx}  %Required
\frenchspacing  %Required
\setlength{\pdfpagewidth}{8.5in}  %Required
\setlength{\pdfpageheight}{11in}  %Required
%PDF Info Is Required:
  \pdfinfo{
/Title (2018 Formatting Instructions for Authors Using LaTeX)
/Author (AAAI Press Staff)}
\setcounter{secnumdepth}{0}  
 \begin{document}
 \author{Walther Wombat,\\
{Wolfsburg}\\
[email protected],
\And
Alfonso Alpaca,\\
{Alexandria}\\
[email protected], 
\And
Carl Capybara,\\
{Canberra}\\
[email protected]}
\title{The Water Mill}
\maketitle
\end{document}

答案2

根据 Johannes_B 的回答进行小幅调整,以确保隶属关系和电子邮件的字体正确:

\author{au1,\textsuperscript{1}
au2,\textsuperscript{2}\\}

\affiliations{
\textsuperscript{1}{University of au1}\\
\textsuperscript{2}{University of au2}\\
email of au1,
email of au2}

或者

\author {
    % Authors
    First Author Name,\textsuperscript{\rm 1}
    Second Author Name, \textsuperscript{\rm 2}
    Third Author Name \textsuperscript{\rm 1}
}
\affiliations {
    % Affiliations
    \textsuperscript{\rm 1} Affiliation 1\\
    \textsuperscript{\rm 2} Affiliation 2\\
    [email protected], [email protected], [email protected]
}

相关内容