I have been struggling to position my figures that span two columns (using REVTeX style package). I can include them using
Code: Select all
\begin{figure*}[htpb]
\includegraphics{...}
...
\end{figure*}
I have tried using the float package
Code: Select all
\usepackage{float}
\begin{figure*}[H]
\includegraphics{...}
...
\end{figure*}
I also tried using \minipage but then I can get it to span the two columns without looking messy (text overlapping etc.). As REVTeX doesnt work with multicol, I have tried using the built in \onecolumngrid and \twocolumngrid commands.
Code: Select all
\onecolumngrid
\begin{minipage}{\linewidth}
\includegraphics{...}
...
\end{minipage}
\twocolumngrid
I think it would solve some of the text overlap problems if I could set the minipage to appear at the bottom of a page successfully (the text only overlaps on the bottom right section)
Code: Select all
\begin{minipage}[b]{\linewidth}
Basically I want to be able to position the figure across two columns, preferably at the top or bottom of a page, without it being a float and being moved around (in other words I would like to be able to force it onto a certain page).
Hope this is clear / not too long winded.
Cheers
EDIT: On further investigation, I can stop the overlap when using \onecolumngrid by adding space with \vspace{..} in the minipage. However I noticed the minipage caused the flow of text to go above-left -> above-right -> below-left -> below-right. Any ideas how to get text to flow above-left -> below-left -> above-right -> below-right