Question
When I want to change the background of a beamer presentation I used to use something like this:
\setbeamertemplate{background canvas}%
{%
\includegraphics[width=\paperwidth, height=\paperheight]%
{%
Picture.jpg
}%
}
which is also documented in the beamer documentation. In some answers here I often see
\usebackgroundtemplate{
\includegraphics[width=\paperwidth,height=\paperheight]{Picture.jpg}
}
- Is there a best practice?
- Surprisingly I can't find
\usebackgroundtemplatewhen searching in thebeamerdocumentation.
Related
- What is difference between template's `background` and `background canvas`? (I added
\setbeamertemplate{background}so that the question title is more complete)