Page Layout ⇒ A two-column document with just a one-column page.
A two-column document with just a one-column page.
I need to translate a part of a book written in two columns. The problem is that I have to add just a page page with some text in one column. The rest of the document is in two-column format.
I have looked for this problem in Google and also in the forum, but I haven't solved it.
Any suggestions?
Thanks in advanced.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
A two-column document with just a one-column page.
Code: Select all
\begin{multicols}{2}
Stuff for two columns
\end{multicols}
Alternatively, you could simply create the one page as a separate document and include it with \includepdf from the pdfpages package.