全幻灯片上的图像

全幻灯片上的图像

我正在尝试实现与此处描述的结果类似的结果:投影仪包中全幻灯片上的图像

但有一个变体。具体来说,我想将图形放在整个幻灯片中,但位于导航栏下方。有什么想法吗?

在此处输入图片描述

答案1

您知道导航栏占用了多少空间吗?如果您的答案是肯定的,则可以使用以下方法:

\documentclass{beamer}

\setbeamertemplate{background}{
    \parbox[c][\paperheight][c]{\paperwidth}{%
        \vspace*{.1\paperheight}%
        \includegraphics[height=.9\paperheight,width=\paperwidth]{example-image-a}}
}

\begin{document}

\begin{frame}

\end{frame}

\end{document}

在此处输入图片描述

相关内容