使用背景图像作为投影仪幻灯片的一部分

使用背景图像作为投影仪幻灯片的一部分

有没有办法将图像设置为幻灯片的背景beamer,但具有覆盖规范?

我知道在 Beamer 中更改单张幻灯片的背景图像,使用类似

{
    \usebackgroundtemplate{
    \begin{tikzpicture}[remember picture, overlay]
        \node[opacity=0.5,inner sep=1pt] at (current page.center)
        {\includegraphics[width=\paperwidth,height=\paperheight]{images/example.jpg}};
    \end{tikzpicture}}

    \begin{frame}{Title}
        \begin{itemize}
            \item<1-> Item 1
            \item<2-> Item 2
        \end{itemize}
    \end{frame}
}

我希望背景图像仅在第二项出现时出现。目前,一种解决方法是创建两张幻灯片,让第二张幻灯片\item在第二张幻灯片期间出现,并且仅将第二张幻灯片的背景设置为所需的图像。有没有办法在不添加额外框架的情况下实现这一点?

答案1

只需插入背景图片即可\item<2-> Item 2

\begin{frame}{Title}
    \begin{itemize}
        \item<1-> Item 1
        \item<2-> Item 2
        \begin{tikzpicture}[remember picture, overlay]
            \node[opacity=0.5,inner sep=1pt] at (current page.center)
            {\includegraphics[width=\paperwidth,height=\paperheight]{example-image-a}};
        \end{tikzpicture}
    \end{itemize}
\end{frame}

在此处输入图片描述

相关内容