Hi all,
I geuss it must be simple, but I couldn't figure it out... I have a table with only two columns. I want to place the corresponding graph beside it. What's the most easy way to do this?
I tried the smash command, but it gives a lot of errors.
Graphics, Figures & Tables ⇒ How to place a graph beside a table
NEW: TikZ book now 40% off at Amazon.com for a short time.

How to place a graph beside a table
Simply put them next to each other. To keep the baselines aligned, use the optional argument to the tabular environment:
Code: Select all
\begin{tabular}[b]{ll}
A & B \\
C & D \\
E & F
\end{tabular}
\fbox{\hskip 40pt \vrule height 30pt \hskip 40pt}
Re: How to place a graph beside a table
Ah, that was not too difficult. Thank you very much! 
