I have implemented a huge number of slides using the beamer class. Now I want to append an index. It works quite fine with
Code: Select all
\usepackage{makeidx}
\newenvironment{theindex}{%
\let\item\par % definitions for subitem etc
}{}
\newcommand\indexspace{}
\makeindex
[...]
\begin{frame}<handout>[allowframebreaks]
\frametitle{Index}
\printindex
\end{frame}
But I would like to have two columns per frame.
I tried the multicol package as follows, but the automatic frame-breaks did not work any more and latex tries to put the hole index on one slide, so that a lot of entries stick out
Code: Select all
\newenvironment{theindex}{%
\let\item\par % definitions for subitem etc
\begin{multicols}{2}
}{\end{multicols}}
Thanks for help!
Gadgetto