I am using \columns in beamer to show two pictures. After I added \footnote{ExampleText} after captions, the ExampleTest just appear in each column. Now I want to show all of the ExampleText in the bottom of the slide instead of each column, how can I do this?
MWE:
\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}
\begin{columns}
\begin{column}{.5\textwidth}
\includegraphics{img1}\footnote{f2}
\end{column}
\begin{column}{.5\textwidth}
\includegraphics{img2}\footnote{f1}
\end{column}
\end{columns}
\end{frame}
\end{document}



\only<3->to have the footnote appearing with the third item on the slide, but not before? – Matthias Braun Sep 19 '19 at 08:30\footnote<.->{Some text}and\footnote<3->{Some text}etc. – jadelord Sep 19 '19 at 13:55