[Tex/LaTex] Beamer: How To Include Logo In Every Slide

beamer

I'm preparing a presentation using beamer.

As a prerequisite I need to include the logo of my funding scheme in each slide, preferably in the bottom left corner. The logo is just a .png image.

I know how to include graphics in my presentations, but is there an easy way to include an image in every slide in the bottom left corner (or somewhere else)?

Best Answer

Bottom right is easy:

\documentclass{beamer}

\logo{\includegraphics[width=.1\textwidth]{example-image}}

\begin{document}

\begin{frame}
    abc
\end{frame} 

\end{document}

And with a dirty hack, it can be moved to the left:

\documentclass{beamer}

\logo{\includegraphics[width=.1\textwidth]{example-image}\hspace*{.88\paperwidth}}

\begin{document}

\begin{frame}
    abc
\end{frame} 

\end{document}