My understanding was that you could use \begin{figure*} instead of \begin{figure} to span two columns with an image and that this would work for subfigures as well.
However, my latex code won't compile and gives an error at the \end{figure*} line.
Below are examples with and without using the * to span the columns.
This won't compile.
Code: Select all
\begin{figure*}
\subfigure{\includegraphics[width=6cm]{fig1.eps}}
\subfigure{\includegraphics[width=6cm]{fig2.eps}}
\end{figure*}
Code: Select all
\begin{figure}
\subfigure{\includegraphics[width=6cm]{fig1.eps}}
\subfigure{\includegraphics[width=6cm]{fig2.eps}}
\end{figure}