I'm about to give a talk about glucose measurement (in German), and my tutor wants me to hand in a Outline.
I coded the following:
Code: Select all
\documentclass[ngerman={bable},ucs,xcolor={table,dvipsnames},hyperref={bookmarks,colorlinks}]{beamer}
\setbeamertemplate{background canvas}[vertical shading][bottom=white!10,top=blue!10]
\usefonttheme[onlysmall]{structurebold}
\usetheme{CambridgeUS}
\usepackage[latin1]{inputenc}
\title{Blutzuckermessmethoden}
\author{Patrick Mullan}
\institute[FAU, LTE]{Friedrich-Alexander-Universit"at Erlangen-N"urnberg}
\date{01.01.1111}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Inhaltsverzeichnis}
\tableofcontents[pausesections] %Is not displayed
test %Is displayed
\end{frame}
\section{Blutzucker}
\subsection{Was ist Blutzucker}
\subsection{Wie wird er im K"orper verarbeitet}
\section{Messung des Blutzuckers}
\subsection{Ziele der Messungen}
\subsection{Invasive Messung}
\subsubsection{Funktionsweise}
\subsubsection{Aufbau}
\subsubsection{Nachteile der invasiven Methode}
\subsection{Nicht-invasive Messung}
\subsubsection{Funktionsweise}
\subsubsection{Aufbau}
\end{document}
But as far as I know the section, subsection and subsubsection items should be printed?! What am I doing wrong?
Thanks for help!
(And maybe someone can tell me why "äöü" aren't displayed either, but that's a secondary problem...)