Beamer:标题中的超链接不适用于章节标题

Beamer:标题中的超链接不适用于章节标题

您好,提前谢谢您!

我正在使用一个主题制作一个 Beamer 演示文稿,该主题在标题中显示标题和子部分。单击标题时,一切都按预期工作,我进入演示文稿的第一帧。但是单击子部分标题时,什么也没有发生。我希望进入当前部分的第一帧(我通常会在其中提供当前部分的目录)。什么可能导致该问题?

梅威瑟:

\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}

答案1

我刚刚找到了一个解决方案,显然我之前搜索得不够准确。这确实是 beamer 版本 3.36 中的一个错误,可以解决如这里所述

我已更新到本月发布的较新的版本 3.37/3.38,现在一切正常。

相关内容