I'm trying to create a pdf for a journal where the authors are in multiple column format but the rest of the document/text is not. How can I get this to work? It auto formats the rest of my document into two columns. I'm exporting it to pdf and I'm using TeXworks.
\documentclass[10pt,twocolumn]{article}
\title{Article Title}
\author{
First Author\\
Department\\
school\\
email@edu
\and
Second Author\\
Department\\
school\\
email@edu
\and
Third Author\\
Department\\
school\\
email@edu
\and
Fourth Author\\
Department\\
school\\
email@edu
}
\date{\today}
\begin{document}
\maketitle
\begin{abstract}
This part should be in a single column.
\end{abstract}
\section{Introduction}
\ldots
\end{document}

twocolumnfrom your first line. Is that what you mean? – Jake Oct 4 '11 at 2:29