[Tex/LaTex] Disable two column mode for separate part

document-classesmulticol

I am writing a document using the report class in two column mode, but I need a \section to spread across both columns, but how can I set that?

Something like

\documentclass[10pt,danish,a4paper,twoside,twocolumn]{report}
\input{preamble.tex}
\begin{document}

% This section should spread over both columns
\section{Name}

\lipsum[1-3]
\end{document}

Best Answer

There is a switch: \onecolumn:

\documentclass[10pt,a4paper,twoside,twocolumn, english]{report}
\usepackage{lipsum, babel}
%\input{preamble.tex}
\begin{document}
\lipsum

% This section should spread over both columns
\onecolumn
\section{Name}

\lipsum[1-3]
\end{document}

But the section has to start on a new page. Go back to twocolumn with? Yes, \twocolumn.

Related Question