[Tex/LaTex] Elsarticle – Abstract two columns wide

elsarticle

I am currently trying to create an article in elsarticle style, twocolumn. The title and text end up in two columns, the abstract however is made two columns wide. Any ideas what I am doing wrong? Obviously I want my abstract to also be only in the first column.

\documentclass[a4paper,10pt,twocolumn,preprint]{elsarticle}
 \usepackage{lipsum}
 \journal{TexExchange}

 \begin{document}

   \begin{frontmatter}

     \title{Two-column abstract}

     \begin{abstract} 
       \lipsum[1]
     \end{abstract}

     \begin{keyword}
       abstract
     \end{keyword}

  \end{frontmatter}

 \section{Outline}
   \lipsum[2-3]

\end{document}

Best Answer

Looking at the source the only way I can see to get a sensible output from two column in preprint style is to put the frontmatter into the optional argument of an explicit \twocolumn

enter image description here

\documentclass[a4paper,10pt,twocolumn,preprint]{elsarticle}
 \usepackage{lipsum}
 \journal{TexExchange}

 \begin{document}

\twocolumn[{\begin{frontmatter}

     \title{Two-column abstract}

     \begin{abstract} 
       \lipsum[1]
     \end{abstract}

     \begin{keyword}
       abstract
     \end{keyword}

  \end{frontmatter}
}]
 \section{Outline}
   \lipsum[2-3]

\end{document}

Or you can correct the width locally within a one-column frontmatter:

enter image description here

\documentclass[a4paper,10pt,twocolumn,preprint]{elsarticle}
 \usepackage{lipsum}
 \journal{TexExchange}

 \begin{document}

\begin{frontmatter}
\setlength\textwidth\columnwidth
     \title{Two-column abstract}

     \begin{abstract} 
       \lipsum[1]
     \end{abstract}

     \begin{keyword}
       abstract
     \end{keyword}

  \end{frontmatter}

 \section{Outline}
   \lipsum[2-3]

\end{document}