汉诺威主题中 Beamer 演示文稿右侧的背景图像

汉诺威主题中 Beamer 演示文稿右侧的背景图像

LaTex我正在使用 Beamer 文档类制作演示文稿。我正在使用Hannover主题。它在左侧有一个导航栏,演示文稿的内容在右侧。

我想将背景图像放在幻灯片(或框架)上,但只放在右侧(跨越整个右侧仅有的)我点击了这个链接 -->如何在投影仪框架中插入背景图像?。但是,部分图像也位于导航栏后面(我不想要)。我该如何实现?

编辑1: 以下是 MWE:

\documentclass[xcolor={dvipsnames}]{beamer}
\usetheme{Hannover}
\usecolortheme{rose}

\begin{document}
    \section{A section}
    {
        \usebackgroundtemplate{\includegraphics[width=\paperwidth {../img/cluster-ex-1.png}}%
        \begin{frame}
            \begin{center}
                \LARGE
                    \textit{\textbf{Title of the frame}}            
            \end{center}
        \end{frame}
    }
\end{document}

结果如下: 上述乳胶代码的结果

正如您所见,图像也位于导航栏后面,我不想。我希望它占据演示文稿的整个右侧仅有的。我怎样才能做到同样的事情?

答案1

\documentclass{beamer}
\usetheme{Hannover}

\makeatletter
    \newlength{\imagewidth}
    \setlength{\imagewidth}{\paperwidth}
    \addtolength{\imagewidth}{-\beamer@sidebarwidth}

    \newlength{\sidebarwidth}
    \setlength{\sidebarwidth}{\beamer@sidebarwidth}
\makeatother

\usebackgroundtemplate{%
    \hspace*{\sidebarwidth}%
    \includegraphics[width=\imagewidth,height=\paperheight]{example-image}%
}

\begin{document}

\begin{frame}
content
\end{frame}

\end{document}

在此处输入图片描述

相关内容