[Tex/LaTex] How to avoid page break after \end{multicols*}

lyxmulticolpage-breaking

I am experimenting in LyX to create a page which has a single column and two column text.
I inserted the following TeX code in the file.

\begin{multicols*}{2}  
        \lipsum[1]  
        \columnbreak  
        \lipsum[2]  
\end{multicols*}  
\lipsum[3]  

The problem I am facing is Lipsum 3rd paragraph is being created in a new page. How can I avoid this? I want all the three paragraphs in the same page(Paragraph 1 and 2 as two column and Paragraph 3 as a single column below the two column text)

Best Answer

Use multicols in place of multicols*

Related Question