6

Is there a beamer theme that allows one to add small thumbnails of authors to the right end of the frame title line?

Ideally I'd like something that can easily work on successive pages throughout a document. Is there an automatic sizing facility?

Werner
  • 603,163
welch
  • 191

1 Answers1

3

As suggested in a comment, the hobete shows one way to do this: alter the frametitle template. As this is 'standard' beamer it's easiest done without the extras of the package:

\documentclass{beamer}
\setbeamertemplate{frametitle}
  {%
    \nointerlineskip
    \begin{beamercolorbox}
      [wd=\paperwidth,dp=1ex, ht=4.5ex, sep=0.5ex, colsep*=0pt]%
      {frametitle in title}%
        \usebeamerfont{frametitle}%
        \strut
        \insertframetitle
        \hfill
        \raisebox{-2ex}[0pt][-\ht\strutbox ]{\includegraphics[height=1cm]{example-image-a}} 
    \end{beamercolorbox}%
 }
\begin{document}

\begin{frame}
  \frametitle{Test a}
\end{frame}

\begin{frame}
  \frametitle{Test b}
\end{frame}

\end{document}

The exact detail of the frametitle template you need to alter will depend on your overall design, but basically it comes down to adding a fill and including the graphic. I've used a demo one: a real case might make this a command such as \inserttumbnail os something like that.

Joseph Wright
  • 259,911
  • 34
  • 706
  • 1,036