[Tex/LaTex] Force new row of author names

authortitles

I have a list of 4 authors names using the author, and I would like force LaTex to place two on the first row and two on the second row. As it stands, I get three on the first row and one on the second.

How do I get the second row to start with the third author?

Here is a working example:

\documentclass{article}
\usepackage[margin=1in]{geometry}

\begin{document}

\title{Title}
\author{Jane Doe 1\\
University of Illinois\\ Urbana-Champaign\\ 
\and John Doe 2\\
University of Illinois\\ Urbana-Champaign\\ 
\and John Doe 3\\
University of Illinois\\ Urbana-Champaign
\and John Doe 4\\
University of Illinois\\ Urbana-Champaign}
\date{}
\maketitle

\end{document}

new row of authors

Best Answer

An idea is to use a tabular :

\documentclass{article}
\usepackage[margin=1in]{geometry}

\begin{document}

\title{Title}
\author{
  \begin{tabular}{cc}
    \shortstack{Jane Doe 1\\
    University of Illinois\\ Urbana-Champaign}
 &
   \shortstack{John Doe 2\\
    University of Illinois\\ Urbana-Champaign} \\ 
    \shortstack{John Doe 3\\
    University of Illinois\\ Urbana-Champaign}
 &
   \shortstack{John Doe 4\\
    University of Illinois\\ Urbana-Champaign}
\end{tabular}
    }
\date{}
\maketitle

\end{document}

enter image description here