0

I'm trying to put a logo on the top right of the headers of all my slides (c.f. the following picture) but I have absolutely no idea how to do it. Can someone help me about it please.

enter image description here

1 Answers1

1

Quick hack (you will make sure that your title is short enough to not be hidden by the logo):

\documentclass{beamer}
\usetheme{Madrid}

\title{The Title} \author{The Author} \institute{The Institute}

\usepackage{tikz} \addtobeamertemplate{frametitle}{}{ \begin{tikzpicture}[remember picture,overlay] \node[anchor=north east] at (current page.north east) {\includegraphics[height=0.6cm]{example-image-a}}; \end{tikzpicture} }

\begin{document}

\begin{frame} \maketitle \end{frame}

\begin{frame}{this} test \end{frame}

\end{document}

enter image description here