Hi and many thanks in advance!
I'm working on a beamer presentation using a theme which shows the title and subsections in the headline. When clicking on the title everything works as expected and I get to the first frame of the presentation. But when clicking on a subsection title, nothing happens. I'd expect to get to the first frame of the current section (where I usually provide a TOC for the current section). What could cause that problem?
MWE:
\documentclass[]{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,ngerman]{babel}
\mode<presentation>
{
\usetheme{Montpellier}
\setbeamertemplate{navigation symbols}{\insertbackfindforwardnavigationsymbol}
\setbeamertemplate{caption}[numbered]
}
\title{Title}\author{Author}\date{Date}
\begin{document}
\begin{frame}\titlepage\end{frame}
\begin{frame}{Outline}
\tableofcontents[hideallsubsections]
\end{frame}
\section{Section number one}
\begin{frame}{}\tableofcontents[currentsection,hideothersubsections]\end{frame}
\subsection{Subsection one-one}\begin{frame}{Frame content one-one}\end{frame}
\subsection{Subsection one-two}\begin{frame}{Frame content one-two}\end{frame}
\section{Section number two}
\begin{frame}{}\tableofcontents[currentsection,hideothersubsections]\end{frame}
\subsection{Subsection two-one}\begin{frame}{Frame content two-one}\end{frame}
\subsection{Subsection two-two}\begin{frame}{Frame content two-two}\end{frame}
\end{document}