Beamer: los hipervínculos en el título no funcionan para los títulos de las secciones

Beamer: los hipervínculos en el título no funcionan para los títulos de las secciones

Hola y muchas gracias de antemano!

Estoy trabajando en una presentación de proyector usando un tema que muestra el título y las subsecciones en el título. Al hacer clic en el título todo funciona como se esperaba y llego al primer fotograma de la presentación. Pero al hacer clic en el título de una subsección, no sucede nada. Esperaría llegar al primer cuadro de la sección actual (donde normalmente proporciono un TOC para la sección actual). ¿Qué podría causar ese problema?

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}

Respuesta1

Acabo de encontrar una solución, obviamente no estaba buscando con suficiente precisión antes. De hecho, ese fue un error en la versión 3.36 del proyector que se puede solucionar.como se describe aquí.

Actualicé a las versiones bastante nuevas 3.37/3.38 que se lanzaron este mes y ahora todo funciona bien.

información relacionada