This post shows how one can change the background image in a Beamer presentation: %% all slides \usebackgroundtemplate{ \includegraphics[width=\paperwidth, height=\paperheight]{my_bg_image} } %% single slide { \usebackgroundtemplate{\includegraphics[width=\paperwidth]{my_bg_image}} \begin{frame} \frametitle{Frame with nice background} \begin{itemize} \item 1 \item 2 \item 3 \end{itemize} \end{frame} } The above method spans the image to cover the entire page size. To include… Read more »