I'm working on a two column document, and on one of the pages, I want to fill an entire column with three different floats. But when I use, for instance, h!, ht!, b, b!, t!, etc., on all three of them (or any combination of these), I get two in one column and one in the other. Is there a package or something that fixes this problem.
|
If I want to keep a bunch of figures together, I simply use one
It looks a bit strange, but it works. You can have multiple Now there is no way Latex can place these three figures on different columns or different pages. You can fine-tune |
|||||||
|
|
Probably the easiest way to handle this is to use the
Another option is to use the |
||||
|
|
|
In two-column mode, a "column" is equivalent to a "page" in one-column mode. So if you want three floats in one column on their own, simply specify the
\documentclass[twocolumn]{article}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{figure}[p]
\centering
\rule{10em}{10em}
\caption{A black box.}
\end{figure}
\begin{figure}[p]
\centering
\rule{10em}{10em}
\caption{A black box.}
\end{figure}
\begin{figure}[p]
\centering
\rule{10em}{10em}
\caption{A black box.}
\end{figure}
\lipsum
\end{document}
|
|||||
|
|
simplest and obvious answer for me...
that way the figures will be alone in 1 page, wherever latex will place them
the alternative is having 1 figure for all images but still use |
|||
|
|
