beamer 部分页面:\insertsection color

beamer 部分页面:\insertsection color

我正在尝试设置不同的部分页面模板:

\setbeamercolor{section title}{fg=blue}

\setbeamertemplate{section page}
{
    \begin{minipage}[b][\paperheight]{\textwidth}
        \vfill
        \vspace{3cm}
        \qag
        \usebeamercolor[fg]{section title}\huge\textbf{\insertsection} % works with \inserttitle
        \vfill
        \vspace{1mm}
    \end{minipage}
}

使用 时\inserttitle,颜色符合预期,但使用 时\insertsection,文本始终为红色。我做错了什么?

这让我疯狂。

在此处输入图片描述

答案1

点击提交按钮后,我发现了原因:由于该部分是一个链接,所以颜色被超链接设置覆盖。

% hyperref
\usepackage{hyperref}
\hypersetup{colorlinks} % this overwrote the color in the template

相关内容