PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Probleme mit Section-Links in Beamer



stolzi
08-06-2010, 12:14
Hallo,

ist das ein Bug oder habe ich irgend etwas falsch gemacht?

Die Links zu den Sections in der obersten Spalte der Folien funktionieren nicht richtig (getestet in verschiedenen PDF Readern incl Acrobat), wenn:


Ein Titel gesetzt ist (\title{Title}) und gleichzeitig \setbeameroption{show notes on second screen} (siehe Minimalbeispiel)


Sie funktionieren aber, wenn:

Ein Titel gesetzt ist und gleichzeitig \setbeameroption{hide notes}

Kein Titel gesetzt ist und \setbeameroption{show notes on second screen}


Minimalbeispiel:

\documentclass[final, 10pt,compress,t, xcolor={table,dvipsnames}]{beamer}

\usepackage{pgfpages}
\usepackage{ragged2e}

%\setbeameroption{hide notes}
\setbeameroption{show notes on second screen}

\usepackage[english]{babel}
\usepackage[utf8]{inputenc}

\usetheme{Warsaw}

\title{Title}
\author{Author}
\date{\today}


\begin{document}
\begin{frame}
\titlepage
\note[item]{Already heard a lot about them and their ability to control gene expression.}
\note[item]{Already heard a lot about them and their ability to control gene expression.}
\note[item]{Already heard a lot about them and their ability to control gene expression.}
\end{frame}
\frame{\tableofcontents}
\section{Section 1}
\frame{\tableofcontents[currentsection]
\note[item]{Already heard a lot about them and their ability to control gene expression.}
\note[item]{Already heard a lot about them and their ability to control gene expression.}
\note[item]{Already heard a lot about them and their ability to control gene expression.}
}
\section{Section2}
\frame{\tableofcontents[currentsection]
\note[item]{Already heard a lot about them and their ability to control gene expression.}
\note[item]{Already heard a lot about them and their ability to control gene expression.}
\note[item]{Already heard a lot about them and their ability to control gene expression.}
}
\section{Section 3}
\frame{\tableofcontents[currentsection]
\note[item]{Already heard a lot about them and their ability to control gene expression.}
\note[item]{Already heard a lot about them and their ability to control gene expression.}
\note[item]{Already heard a lot about them and their ability to control gene expression.}
}
\end{document}