In beamer presentation I have a few headwords distributed on different slides. The appearance of these headwords I defined before and they don't be numbered.
Before these headwords started, I want to insert an overview/index of them on an extra slide and there should be the headwords numbered (but it's not so important, only listed without numbers would be also ok). I have no idea how to realize them -- I tried a bit with label but it don't works.
Currenty I realize this, while copy the headwords on the index-slide in an enumerate environment. This is not very elegant.
I hope I could make understandable the issue. And btw: How I declare a codeblock here? Four spaces at begin of every line -- it's a bit troublesome for longer codeblocks.
\documentclass[t]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{amsmath,amssymb}
\usepackage{xcolor}
\author{Max Mustermann}
\title{Title}
\newcommand{\hervor}[1]{\textbf{\textcolor{blue}{#1}}}
\newcommand{\lipsum}{Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus
elit, vestibulum ut, placerat ac, adipiscing vitae, felis.}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
\frametitle{This should be the index}
\begin{enumerate}
\item Blah blah
\item Foo bar
\end{enumerate}
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
\frametitle{Theorys}
\hervor{Blah blah}
\lipsum
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
\frametitle{Theorys}
\lipsum
\hervor{Foo bar}
\lipsum
\end{frame}
\end{document}




{}. – Marco Daniel May 19 '12 at 9:12