I have a figure with a relatively long caption that goes over a single line, and within that caption I have a footnote. For some reason, the footnote gets repeated at the bottom. I notice this only happens when the figure caption goes over one line, if I shorten the caption to just one line, there is no duplicate of the footnote.
\documentclass[11pt]{beamer}
\usepackage[gen]{eurosym}
\setbeamerfont{caption}{size=\scriptsize}
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\renewcommand*\footnoterule{}
\setbeamerfont{footnote}{size=\tiny}
\setbeamersize{text margin left=7mm,text margin right=7mm}
\begin{document}
\begin{frame}{Slide Title}
\addtobeamertemplate{footnote}{}{\vspace{1.5ex}}
\begin{figure}
\centering
\includegraphics[width=0.7\textwidth,keepaspectratio]{example-image-a}
\vspace*{-3mm}
\caption{My looooooooooooooooooooooooooonooooooooooooooog figure caption\footnote{Some footnote}\tiny(source: source)}
\end{figure}
\end{frame}
\end{document}
How do I correct this behavior?




\captiondoesn't play nice with\footnote, probably best to avoid using the two together – Skyork May 16 '20 at 07:33