I have a figure setup as follows:
\begin{figure*}[t!]
\centering
\subfigure[Part 1]
{
\includegraphics*[totalheight=2in,origin=c]{ost100}
}
\subfigure[Part 2]
{
\includegraphics*[totalheight=2in,origin=c]{bay}
}
\subfigure[Part 3]
{
\small
\begin{tabular}{| l | c | r | r | } \hline
{...}
\hline
\end{tabular}
}
\caption{The main experiment.\label{f:main}}
\end{figure*}
For some reason, my table ends up shifted far below the images in part 1 and 2, with about a 1/2 inch margin above it. Shrinking the images doesn't change this. Any idea what is going wrong and how to fix it?


subfigureis obsolete. You should consider usingsubfiginstead. – TH. Feb 6 '11 at 7:32