Beamer:介绍幻灯片上的透明且居中的背景图像

Beamer:介绍幻灯片上的透明且居中的背景图像

我知道这与其他问题类似。其他答案涉及以下任一问题:

  1. 添加透明图像
  2. 使图像居中但我无法同时找到答案。

根据之前的答案,我可以成功地使图像透明或居中,但不能同时使图像透明或居中。我尝试过将两者结合起来的方法,但没有成功。

这是我在介绍幻灯片中使用的代码

\usepackage{tikz}

    \usebackgroundtemplate{ 
         \vbox to \paperheight
              {\tikz \node[opacity=0.2] 
                 {\vfil\hbox to \paperwidth
                     {\hfil\includegraphics[width=1.5in]{name.png}
                  \hfil}\vfil} ;  }
            }

答案1

结合投影机中的透明图像背景投影仪包中全幻灯片上的图像,你可以这样做:

\documentclass{beamer}
\usepackage{tikz}

\usebackgroundtemplate{%
\tikz[overlay,remember picture] \node[opacity=0.3, at=(current page.center)] {
   \includegraphics[height=\paperheight,width=\paperwidth]{example-image-a}};
}

\begin{document}

\begin{frame}
Background transparent image, centered on slide
\end{frame}

\end{document}

示例输出

您必须编译两次才能使图像居中。

相关内容