在 LaTex 中使用 beamer 定义单个背景

Define a single background with beamer in LaTex

出于多种原因,我在 Beamer 中使用新加坡主题(这个主题有点干净,到处都没有太多 vertical/horizontal 栏,进度点,...)等等,我想保留它。

无论如何,我用tikz定义了一个背景,幻灯片内容有一个圆形的颜色渐变背景。但是,页眉也定义了背景,我无法成功删除它的背景(即使在互联网上 2 小时后哈哈)。

这是一个 mwe,您可以在其中看到两个背景之间的区别,这两个背景形成了一条我不想要的水平白线。

\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usepackage{lipsum}

\usetheme{Singapore}

\begin{document}
\usebackgroundtemplate{
  \begin{tikzpicture}
    \path [outer color = blue!5, inner color = blue!1]
      (0,0) rectangle (\paperwidth,\paperheight);
  \end{tikzpicture}
}

\section{Section}
\begin{frame}
\lipsum[1]   
\end{frame}

\end{document}

如何为幻灯片的全尺寸制作具有圆形颜色渐变的背景?不中断页眉 ?

没有颜色渐变的Singapore归结为以下设置:

\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usepackage{lipsum}

%\usetheme{Singapore}

\useoutertheme[subsection=false]{miniframes}
\setbeamertemplate{frametitle}[default][center]
\beamertemplatedotitem


\begin{document}
\usebackgroundtemplate{
  \begin{tikzpicture}
    \path [outer color = blue!5, inner color = blue!1]
      (0,0) rectangle (\paperwidth,\paperheight);
  \end{tikzpicture}
}

\section{Section}
\begin{frame}
\lipsum[1]   
\end{frame}

\end{document}