\name 多位作者

\name 多位作者

我正在尝试添加多位作者,但是\\不起作用\name

我已获得一个模板,\name但作者太多,名字不太合适。我有 9 位作者,其中一些名字很长。

我有以下内容:

\documentclass{article}
\usepackage{spconf,amsmath,graphicx}
\usepackage{booktabs}


\begin{document}

\title{Title here}


\name{AuthorName1,AuthorName2,AuthorName3,AuthorName4,Authorname5,AuthorName6,AuthorName7, AuthorName8, AuthorName9}
\address
{Address 1 \\ 
Address 2 \\
Address 3}
\maketitle

\end{document}

有人能帮忙把作者的名字分成两行吗?

答案1

article类没有\name也没有\address 你可以简单地将它全部放在\author块中使用换行符,如下所示:

\author{Author1, Author2 \\ Institution, Address}

或者你可以使用类似authblk

\documentclass{article}
\usepackage{authblk}
\title{Title here}

\author[1]{AuthorName1}
\author[2]{AuthorName2}
\author[3]{AuthorName3}

\affil[1]{Institute 1, Address 1} 
\affil[2]{Institute 2, Address 2}
\affil[3]{Institute 3, Address 3}

\begin{document}

\maketitle

\section{Introduction}

\end{document}

相关内容