我使用以下方法获得已检查乳胶文档中的背景(取自为页面制作方格背景):
\documentclass{article}
\usepackage{background}
\usepackage{lipsum}
\newlength\mylen
\setlength\mylen{\dimexpr\paperwidth/150\relax}
\SetBgScale{1}
\SetBgAngle{0}
\SetBgColor{blue!15}
\SetBgContents{\tikz{\draw[step=\mylen]
(-.5\paperwidth,-.5\paperheight) grid
(.5\paperwidth,.5\paperheight);}}
\begin{document}
\lipsum[1-20]
\end{document}
我得到了我想要的漂亮背景。现在我也想在我的 Beamer 演示文稿中使用同样的背景。为此,我在序言中添加了以下内容:
\usepackage{background}
\newlength\mylen
\setlength\mylen{\dimexpr\paperwidth/150\relax}
\SetBgScale{1}
\SetBgAngle{0}
\SetBgColor{blue!15}
\SetBgContents{\tikz{\draw[step=\mylen]
(-.5\paperwidth,-.5\paperheight) grid
(.5\paperwidth,.5\paperheight);}}
但是,背景没有任何变化,即,背景仍然是相同的纯色。如何才能使演示文稿的所有幻灯片都具有方格背景?