漢諾威主題中 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}

在此輸入影像描述

相關內容