When a footnote is created in beamer that contains a box whose depth is too great, beamer inserts a blank slide before the slide with the footnote.
MWE
\documentclass{beamer}
\setbox0=\hbox{}
\dp0=1.131ex
\begin{document}
\begin{frame}
\footnote{\box0 }
\end{frame}
\end{document}
If I change the 1.131ex to 1.130ex, there is only one slide.
My actual problem doesn't involve an empty box with an artificial depth (of course). I can work around this issue by putting the material with the too-great depth into a box and set its \dp to 0pt, but this seems like the wrong solution in general.
What is the correct method to prevent an extra slide from being inserted in this case?
1.31exlike crazy. – Feb 06 '18 at 19:46