I'm using the minipage environment to place a figure and table side-by-side, similar to this:
Code: Select all
\begin{figure}[t]
\begin{minipage}{0.5\textwidth}
\includegraphics % figure here
\caption{Figure caption}
\end{minipage}
\begin{minipage}{0.5\textwidth}
\begin{tabular}
% table data here
\end{tabular}
\caption{Table caption}
\end{minipage}
\end{figure}
Any help would be greatly appreciated!! Thanks...