If I want to start to write in the right column of the document in a twocolumn document class how should I do?
I have already tried
\newpage
but it startss new page
and
\columnbreak
results not defined.
If I want to start to write in the right column of the document in a twocolumn document class how should I do?
I have already tried
\newpage
but it startss new page
and
\columnbreak
results not defined.
Try this (less any of my typos):
\documentclass[twocolumn]{article}
\usepackage{lipsum}
\begin{document}
\mbox{} % empty space for first column
\newpage % start next column
\lipsum
\end{document}
\leavevmode, \null, \strut, and \hrule height0pt (which I like to think of as a horizontal \strut).
– John Kormylo
Mar 23 '19 at 20:39
multicols. – Mar 23 '19 at 17:12\usepackageline, and a pair of\begin{multicols}{2}\end{multicols}to the beginning and the end of your document... – Mar 23 '19 at 17:25