答案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}