Como definir a caixa de legenda no frametitle visível no beamer?

Como definir a caixa de legenda no frametitle visível no beamer?

estou usandoeste estilo de projetor personalizado

insira a descrição da imagem aqui

mas precisa de uma pequena modificação para funcionar de maneira robusta. Tudo bem quando não temos legenda para o quadro

\begin{frame}{Introduction}%{My Title}
    some text about Latex
\end{frame}

mas no modo de legenda, a caixa de legenda torna-se a linha de base para o círculo definido e depois salta um pouco para baixo.

\begin{frame}{Introduction}{My Title}
    some text about Latex
\end{frame}

para isso quero deixar a caixa de legenda visível mesmo que esteja vazia. Outra solução é não usar legenda.

\documentclass{beamer}

\definecolor{devryblue}{RGB}{5, 51, 92}    
\makeatletter
\colorlet{beamer@blendedblue}{devryblue}
\makeatother

\usepackage[utf8]{inputenc}
\usepackage{tikz}

\usetheme{Madrid}
\usepackage{default}  

\addtobeamertemplate{frametitle}{}{%
\begin{tikzpicture}[remember picture,overlay]
\fill[devryblue] (10.8,0.6) circle (.9cm);
\clip (10.8,0.6) circle (.75cm);
\node at (10.8,0.6) {\includegraphics[width=2.1cm]{example-image}};
\end{tikzpicture}}

\begin{document}

\section{title}

\begin{frame}
\frametitle{title}
\tableofcontents

\end{frame}

Responder1

Você pode evitar qualquer potencial salto do logotipo posicionando-o em relação à página:

\documentclass{beamer}

\definecolor{devryblue}{RGB}{5, 51, 92}    
\makeatletter
\colorlet{beamer@blendedblue}{devryblue}
\makeatother

\usepackage[utf8]{inputenc}
\usepackage{tikz}

\usetheme{Madrid}
%\usepackage{default}  

\addtobeamertemplate{frametitle}{}{%
\begin{tikzpicture}[remember picture,overlay]
\coordinate (logo) at ([xshift=-1.5cm,yshift=-1cm]current page.north east);
\fill[devryblue] (logo) circle (.9cm);
\clip (logo) circle (.75cm);
\node at (logo) {\includegraphics[width=2.1cm]{example-image}};
\end{tikzpicture}}

\begin{document}

\section{title}

\begin{frame}
\frametitle{title}
\tableofcontents

\end{frame}

\begin{frame}
\frametitle{title}
\framesubtitle{My Title}
    some text about Latex
\end{frame}


\end{document}

insira a descrição da imagem aqui

informação relacionada