[Tex/LaTex] onecolumn titlepage, twocolumn rest of document

titlestwo-column

I recently switched from using multicols to twocolumn in the documentclass since multicols tends to mess with my graphics. However, this also means that my title page is now also two colums, which I'd like to change.

Keep in mind that I'd still like to keep my abstract on the same page as the title. I use \noindent\makebox[\linewidth]{\rule{\paperwidth}{0.4pt}} to create a horizontal line after my titel. Everything after that should be two column.

Best Answer

Would this be what you want? It uses the strip environment, from cuted:

\documentclass[twocolumn, twoside]{article}%
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{cuted}
\usepackage{lipsum}
\title{A nice title}
\author{Ye author}
\date{\today}
\setlength\columnsep{3em}

\begin{document}

\begin{strip}
  \vspace*{\dimexpr-\baselineskip-\stripsep\relax}
  \centering
  \maketitle
  \vskip\baselineskip
\noindent\makebox[\textwidth]{\rule{1.1\paperwidth}{0.4pt}}
  \vskip\baselineskip
\end{strip}

  \begin{abstract}
      This is a test for an abstract in two column mode. This is a test for an abstract in two column mode. This is a test for an abstract in two column mode. This is a test for an abstract in two column mode. This is a test for an abstract in two column mode.
  \end{abstract}
\section{A nice section}
    \lipsum[1-2]
\section{A nicer section}
    \lipsum[3-5]

\end{document} 

enter image description here