tags:

views:

63

answers:

1

I want to put a figure and the TOC side by side in one slide where it would look like

TOC Figure

I have tried to include them each in a minipage respectively and then put them both in a figure environment. But the result does not look good, for the TOC is formatted as a paragraph, instead of an itemize look. So, does anybody have a better solution? Thanks in advance.

PS

I use beamer for creating slides.

+1  A: 

Have you tried the following:

\frame{
  \begin{columns}
    \column{.5\textwidth}
    \tableofcontents

    \column{.5\textwidth}
    \begin{figure}[h]
      \centering
      HERE-FIGURE
      \caption{Testfigure}
      \label{fig:a}
    \end{figure}

  \end{columns}
}

That worked just fine for me.

phimuemue