Beamer 幻灯片的渐变背景?

Beamer 幻灯片的渐变背景?

我正在尝试为一系列 Beamer 幻灯片创建背景渐变。 这个问题似乎或多或少地做了我想要的事情,但答案对我来说不起作用。如果我将答案粘贴到文件中,我会收到此错误:

! Undefined control sequence.
<recently read> \backgroundsetup 

l.4 \backgroundsetup
                    {
? x
No pages of output.
Transcript written on bg.log.

链接的问题也没有完全满足我的要求,因为我希望渐变从中心开始。我想要这样的效果

我更喜欢使用 tikz 来回答问题,因为我曾经使用过它。

答案1

有了beamer,你不需要background包中,\usebackgroundtemplate宏提供了设置背景的可能性。

代码

\documentclass{beamer}
\usepackage{tikz}
\usebackgroundtemplate{
  \begin{tikzpicture}
    \path [outer color = green!20, inner color = blue!10]
      (0,0) rectangle (\paperwidth,\paperheight);
  \end{tikzpicture}}
\title{This is the title.}
\begin{document}
\maketitle
\end{document}

相关内容