[Tex/LaTex] How to put a title above a 2 column page

titlestwo-column

I just want a standard title then commence a 2 column page – but when I use this code it puts it all on the next page (as it inserts a newpage). How can I un-insert the new page OR put the title in in another way.

 \documentclass[11pt,twoside,a4paper,twocolumn]{article}
 \begin{document}.


\twocolumn[{%
 \centering
 \LARGE The Title \\[1.5em]
 \large Author: Anton van der Vegt\\[1em]
 \normalsize
}]`enter code here`

Best Answer

I'm not sure what's wrong with

\documentclass[11pt,twoside,a4paper,twocolumn]{article}

\usepackage{lipsum}

\begin{document}

\title{The Title}
\author{Anton van der Vegt}
\date{}
\maketitle

\lipsum

\end{document}

enter image description here

If you really want to format differently the title, it works without problems:

\documentclass[11pt,twoside,a4paper,twocolumn]{article}

\usepackage{lipsum}

\begin{document}

\twocolumn[{%
 \centering
 \LARGE The Title\\[1.5em]
 \large Author: Anton van der Vegt\\[1em]
}]

\lipsum

\end{document}

enter image description here