I'm using this code to put a large table next to a figure.
\begin{figure}%[t!]
\centering
\begin{minipage}[c]{0.95\textwidth}
\begin{tabular}{cc}
\resizebox{0.45\textwidth}{!}{
\begin{tabular}{c c c c c c}
% ... all the lines and stuff
\end{tabular} } & \includegraphics[width=0.45\textwidth]{./image.pdf}\\
(a) & (b) \\
\end{tabular}
\end{minipage}
\end{figure}
However the code results in the table and the figure not being aligned correctly, as you can see below:

What is the problem?
minipages with the option[c]and appropriate widths and get rid of the outertabular. But resizing like this, especially the table, is a really bad idea in terms of readability! You might like thesubcaptionorfloatrowpackages or something like that to help with creating sub-figures, though. – cfr May 01 '15 at 02:16tabular, use\begin{tabular}[b]... – Werner May 01 '15 at 02:21