Citar en el título

Citar en el título
\documentclass{beamer}
\usepackage[latin1]{inputenc}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{wasysym}

\usetheme{CambridgeUS}

\title{Beamer o Beamer}
\author{mishr}

\begin{document}

\begin{frame}
\titlepage
\end{frame}

%slide 0
\begin{frame}
\frametitle{Introduction}

\begin{itemize}
    \item Item A \cite{author1} %This works
    \item ItemB


\end{frame}

\begin{frame}
\begin{figure}
    \includegraphics[scale=0.4]{fig}
    \caption{Some figure\protect \cite{Author}}%This doesn't work.
\end{figure}
\end{frame}

\begin{frame}
\frametitle{Bibliography}
\bibliographystyle{abbrvnat}
\bibliography{pres}
\end{frame}

El archivo %bib se llama pres.bib

Estoy usando lo anterior en Beamer. La cita me da [?] después de varias ejecuciones. Las citas en el texto funcionan bien. ¿Alguna idea de por qué?

Editar: MWE agregado.

Respuesta1

No veo ningún problema con el siguiente código. Lo he eliminado \protect. MikTeX 2.9 y beamer3.20A. Puse el comando \listfilesen el archivo para que la información de la versión de los paquetes se imprima en el archivo de registro.

\documentclass{beamer}
\listfiles
\usepackage[latin1]{inputenc}
\usepackage{lmodern} % Irrelevant for the problem but suppresses warnings
\usepackage{mwe}     % Adds the dummy image used and loads graphicx
%\usepackage{tikz}    % Not needed for the problem
%\usepackage{wasysym} % Same here
\usetheme{CambridgeUS}
\usepackage{filecontents} % For a dummy bibfile creation
\begin{filecontents*}{mybibfile.bib}
@ARTICLE{authora,
  author = {A. Aaaaa},
  title = {Some article},
  journal = {Journal of Dummy Article Names},
  year = {2012},
  volume = {99},
  pages = {1-5}
}

@ARTICLE{authorb,
  author = {B. Baaaa},
  title = {Another article},
  journal = {Journal of Dummy Article Names},
  year = {2012},
  volume = {99},
  pages = {6-10}
}

\end{filecontents*}



\title{Beamer o Beamer}
\author{mishr}

\begin{document}

\begin{frame}
\frametitle{Introduction}
\begin{itemize}
    \item Item A \cite{authora} %This works
    \item ItemB
\end{itemize}
\end{frame}

\begin{frame}
\begin{figure}
    \includegraphics[scale=0.4]{example-image-a}
    \caption{Some figure from \cite{authorb}}%This doesn't work.
\end{figure}
\end{frame}

\begin{frame}
\frametitle{Bibliography}
\bibliographystyle{abbrvnat}
\bibliography{mybibfile}
\end{frame}

\end{document}

ingrese la descripción de la imagen aquí

información relacionada