How do I clear a column in a double column document? I have two floats, and I want each to occupy a different column.
\clearpage before the second float puts it on a new page, while \pagebreak does nothing (puts the two floats on the same column).
MWE
\documentclass[twocolumn,english]{article}
\begin{document}
\begin{figure}
\caption{}
\end{figure}
\newpage{}
\begin{figure}
\caption{}
\end{figure}
\end{document}
\columnbreak. However, you mention "floats" yet you're interested in a specific placement of them. Then I'd suggest not using floats. Could you provide a minimal working example (MWE)? – Werner Aug 17 '13 at 00:06multicol, then see How do I force a column-break in a two-column document? – Werner Aug 17 '13 at 00:20floatpackage (\usepackage{float}) and then use\begin{figure}[H]instead of\begin{figure}– karlkoeller Aug 17 '13 at 09:07