如何将作者姓名放在两个不同的列中?

如何将作者姓名放在两个不同的列中?

我从模板

模板

但是,我希望将作者姓名放在两个不同的列中,以避免在文档中留下太多空白。我尝试使用,\multicols\columnbreak不适用于该\author{}部分。关于如何实现这一点,有什么想法吗?

相关代码如下:

\author{
Alice Foo \\
\texttt{[email protected]} \\
\AND
Bob Bar \\
\texttt{[email protected]} \\
\AND
Carl Baz \\
\texttt{[email protected]}
\AND
Dan Waldo \\
\texttt{[email protected]}
}

以及模板中使用的所有包:

\documentclass{article} % For LaTeX2e
\usepackage{11785_project,times}
\usepackage{hyperref}
\usepackage{url}

更新:通过使用较小的尺寸,\and我能够得到两列,但格式和间距不正确。有办法解决这个问题吗?

答案1

像这样吗?

在此处输入图片描述

\documentclass{article}

\title{Thoughts}
\author{% enter a tabular-like environment
Alice Foo \\
\texttt{[email protected]} \\ \\
Carl Baz \\
\texttt{[email protected]}
\and % switch to a new column
Bob Bar \\
\texttt{[email protected]} \\ \\
Dan Waldo \\
\texttt{[email protected]} \\ \\
}
\date{\today}

\begin{document}

\maketitle

\end{document} 

相关内容