为什么我的标题中的华沙颜色不正确?

为什么我的标题中的华沙颜色不正确?

我使用warsaw主题,也用了一些outtheme,但是我发现我的主题颜色在headline里不是从蓝色变暗,而是从浅蓝色变深蓝色。

我的幻灯片图片如下: 在此处输入图片描述

但我希望幻灯片的标题使用以下颜色: 在此处输入图片描述

你就能看出它们的区别。

我的代码在 overleaf 上共享,所以我该怎么做才能改变颜色?谢谢。

代码地址:在此处输入链接描述

部分代码如下:

\documentclass[
    11pt, compress, % Set the default font size, options include: 8pt, 9pt, 10pt, 11pt, 12pt, 14pt, 17pt, 20pt
    %t, % Uncomment to vertically align all slide content to the top of the slide, rather than the default centered
    aspectratio=169, % Uncomment to set the aspect ratio to a 16:9 ratio which matches the aspect ratio of 1080p and 4K screens and projectors
]{beamer}


\usetheme{Warsaw}
\usefonttheme{default} % Typeset using the default sans serif font
\usepackage{palatino} % Use the Palatino font for serif text
\usepackage[default]{opensans} % Use the Open Sans font for sans serif text
\useinnertheme{circles}

\useoutertheme{infolines} % to show the information below the body
\useoutertheme[subsection=false]{miniframes} % to show the navigation above the frame title
\usepackage{xpatch}
\makeatletter
\xpatchcmd\beamer@@tmpl@headline{%
  \vskip2pt\insertnavigation{\paperwidth}\vskip2pt%
}{%
  \vskip2pt\insertnavigation{\paperwidth}\vskip5pt% modify 5pt to change the distance avoiding the cut of the navigation circle
}{}{}
\makeatother
\setbeamertemplate{mini frame}[tick]
\setbeamertemplate{mini frame in current subsection}[tick]

\setbeamertemplate{navigation symbols}{} % Uncomment this line to remove the navigation symbols from the bottom of all slides

答案1

我通过添加以下代码解决了这个问题:

\setbeamercolor{section in head/foot}{fg=white, bg=black}

并且也不能使用以下外部主题:

%\useoutertheme{infolines} % to show the information below the body

那么结果如下: 在此处输入图片描述

相关内容