[Tex/LaTex] How to suppress page break before \twocolumn

page-breakingtwo-column

Problem: The command \twocolumn generates a page break in a LaTeX document that is specified as \documentclass[twocolumn]{report}. This specification of the documentclass can not be changed.

Question: Is there a way to suppress the page break before the command \twocolumn?

Code Example:

\documentclass[twocolumn]{report}
\begin{document}

  Two column text
  % Goal: suppress page break here
  \twocolumn[
    One column text
  ]

\end{document}

Best Answer

Just because you start in [twocolumn] doesn't mean you have to stay there.

\documentclass[twocolumn]{report}
\usepackage{multicol}
\usepackage{lipsum}% MWE only
\begin{document}
\onecolumn\begin{multicols}{2}
  \lipsum[1]
\end{multicols}
  \lipsum[2]
\end{document} 
Related Question