I'd like to put a figure next to a list which contains a footnote. Without the footnote everything works fine. But when I add the footnote, the figure gets shifted to the right and partly appears to be outside the frame margin. I'd like to put the figure back to where it was before I added the footnote. Here is an MWE:
\documentclass{beamer}
\begin{document}
\frame{\frametitle{Title}
\begin{columns}[c]
\begin{column}[r]{5cm}
\begin{itemize}[<+->]
\item The first item
\item The second item\footnote{A footnote}
\item The third item
\end{itemize}
\end{column}
\begin{column}[l]{5cm}
{\rule{2cm}{2cm}}%
%\includegraphics
\end{column}
\end{columns}
}
\end{document}
Any idea how to solve this problem?


\footnotemark[num]in the item and\footnotetext[num]{text}outside of columns. check out this question – jenson_bo Mar 19 at 11:34\footnotemark,\footnotetextdoesn't solve the problem. – Gonzalo Medina Mar 19 at 12:18\footnotetextafter\end{columns}? – jenson_bo Mar 19 at 12:35frameoption for\footnote, as in\footnote[frame]{A footnote}. I assumed that AnjaM's intent was to have the footnote text close to the itemized list. – Gonzalo Medina Mar 19 at 13:05