[Tex/LaTex] Beamer – Footnotes at the very bottom

beamerfootnotespositioning

I'm using beamer for a presentation, and introducing some references along it using \footonote. However, the spacing between the bottom of the slide and the last footnote reference is too big : I would like to save as much space as possible, for exemple by aligning the slide number and the footnote line.

How can I modify this in a clean way ? I would like to have the same result as using the footmisc package, which can not be used in beamer.

Thanks

Best Answer

This causes probably more problems then it solves (for example overlapping if the footnotes are longer then one line), but in case you can sacrifice the navigation symbols:

\documentclass{beamer}

\setbeamertemplate{navigation symbols}{\usebeamercolor[fg]{title in head/foot}\usebeamerfont{title in head/foot}\insertframenumber/\inserttotalframenumber}
\setbeamertemplate{footline}{}

\begin{document}

\begin{frame}
    abc\footnote{text}
\end{frame} 

\end{document}

enter image description here