Motivation
I want to maintain a footnote in beamer through some slides. To avoid jumping I tried to place them with TikZ (which works) but the height of the inline math causes empty slides.
Question
How can I maintain my awfully high footnote line without any empty pages?
MWE.tex
\documentclass{beamer}
\usepackage{tikz}
\mode<presentation>
\setbeamertemplate{footline}[frame number]
\begin{document}
\begin{frame}{Intro}
Hello
\end{frame}
\begin{frame}{Slide Title}
\begin{theorem}
Some theorem \footnotemark[1] to break the ice
\end{theorem}
% footnote
% https://tex.stackexchange.com/questions/6185/absolute-positioning-in-beamer?rq=1
\begin{tikzpicture}[remember picture,overlay]
\node at (current page.south west){%
\footnotetext[1]{
% {\footnotesize
where $E =M \Big\lvert_{y =\zeta( x )}C^2$
}
};
\end{tikzpicture}
\end{frame}
\begin{frame}{Proof Slide}
\begin{proof}
Its proof ... where I want to keep the footnote
\end{proof}
% footnote
\begin{tikzpicture}[remember picture,overlay]
\node at (current page.south west){%
\footnotetext[1]{
where $E =M \Big\lvert_{y =\zeta( x )}C^2$
}
};
\end{tikzpicture}
\end{frame}
\end{document}

\smash{}solves the problem anyways. – BadAtLaTeX Aug 31 '23 at 19:21remember picture, overlaycombined with current page capture that respective size and footnote always goes to the bottom of the page/area. That is fine though; currently. – BadAtLaTeX Aug 31 '23 at 19:50