Inside of a Beamer presentation, I want to put a graph side-by-side with a data table. Outline of the code:
\begin{tabular*}{l r}
\begin{center}\includegraphics{graph}\end{center}
&
\begin{tabular}{|p{1cm}|p{1cm}|p{1cm}|p{1cm}|}
1 & 2 & 3 & 4\\\hline
4 & 3 & 2 & 1\\\hline
\end{tabular}\\
\end{tabular*}
This gives the error Something's wrong, maybe a missing \item. Earlier in the presentation I used a tabular* environment to put a graph side-by-side with some bullet points, and in another slide, I used a tabular environment to display data under a graph. Is there a better way to do this? Why doesn't LaTeX allow a tabular inside a tabular*?

columnsenvironment might be more stable for this sort of thing. – Seamus May 29 '11 at 14:11