[Tex/LaTex] How to place a one-column-abstract in a two-column document

abstracttwo-column

How can I place a one-column-abstract and after that two-column-section in a LaTeX template?

Best Answer

This should make the trick. Important Note: This is a copy-paste from: I've just tested it

\documentclass[twocolumn]{article}
...
\begin{document}
... % \author, etc
\twocolumn[
  \begin{@twocolumnfalse}
    \maketitle
    \begin{abstract}
      ...
    \end{abstract}
  \end{@twocolumnfalse}
]
Related Question