如何超链接到章节标题框

如何超链接到章节标题框

我正在使用 LaTeX Beamer 的 mtheme。此主题在每个部分的开头插入一个带有部分标题的标题框。

\AtBeginSection[]
{
  \begingroup
  \setbeamercolor{background canvas}{parent=palette primary}
  \begin{frame}[plain]
    \vspace{2em}\usebeamerfont{section title}
    \progressbar@sectionprogressbar%
  \end{frame}
  \endgroup
}

我如何才能超链接到此框架?标记该部分显然不足以链接到此框架。

答案1

在此处输入图片描述

幸运的是,beamer 为此提供了一个命令:\hyperlinksectionstart{text}

\documentclass{beamer}

\AtBeginSection{
  \begin{frame}[plain]
        \insertsection
  \end{frame}
}

\begin{document}

    \section{sec1}
    \frame{test \hyperlinksectionstart{start of section} }

    \section{sec2}
    \frame{test \hyperlinksectionstart{start of section} }

\end{document}

相关内容