I would like to reduce the size of the actual citation marks (that you get as a result of cite{key}) and make it half of the size of the regular font. Is this possible? I am using \documentclass[11pt]{beamer} and \usepackage{natbib}. I have tried the solution here:
\renewcommand*{\citesetup}{%
\tiny
\biburlsetup
\frenchspacing}
but I get an error \citesetup undefined probably because I am using natbib. Note: I don't care about the font size in the bibliography. Here's a MWE:
\documentclass[11pt]{beamer}
\usepackage{natbib}
\begin{document}
\bibliographystyle{plainnat}
\begin{frame}
Lorem ipsum \citep{jon90} % I would like this citation to be 50 percent smaller
\end{frame}
\begin{thebibliography}{1}
\bibitem[Jones et al.(1990)]{jon90}
\end{thebibliography}
\end{document}
