[Tex/LaTex] Switch from single to double column in the same page

two-column

I need to write a text just in this format

 \documentclass[twocolumn]{article}.

But I need to switch between single column and double column several times in the same page, without jumping to a new page every time I switch the format. Is this possible without using any package like \usepackage{multicol} ?

Best Answer

You should look into using the multicol package and its multicols environment. For instance, the following code produces a page that starts in single-column mode, switches to two-column mode, and finally switches back to single-column mode.

\documentclass{article}
\usepackage{multicol,lipsum}
\begin{document}
\lipsum[1]
% switch to two-column layout
\begin{multicols}{2}
\lipsum[2-3]
\end{multicols}
% switch back to single-column layout
\lipsum[4]
\end{document}
Related Question