I am attempting to put a table and an image on the same line of another table in beamer. I can't seem to figure out how the sizing works. If I make the image a normal size then there is an awkward amount of white space in the table but the only way I have been successful at getting rid of the white space is to make the image tiny. How can I make both of these items a reasonable size? This is the code I'm using and I've tried numerous sizing tricks on the image.
Code: Select all
\begin{table}
\begin{tabular}{ccc}
\underline{Table of Values} & & \underline{Graph}\\
\begin{tabular}{c|c}e & f \\ \hline 4 & 12 \\ 4.5 & 13.5 \\ 5 & 15 \\ 5.5 & 16.5 \\ 6 & 18 \end{tabular} & & \includegraphics[<whole bunch of different sizing/trimming tricks here>]{earface.png}\\
\end{tabular}
\end{table}
Thanks in advance for your help!