I am using beamer for a presentation and I want to use two footnotes at one place with a comma between them.
In the following there is no comma but the footnotes appear correctly (with pdflatex):
\documentclass{beamer}
\begin{document}
\begin{frame}
Text\footnotemark[2]\footnotemark[3]
\footnotetext[1]{Text 1}
\footnotetext[2]{Text 2}
\end{frame}
\end{document}
If using multiple-footnotes-at-one-point with \usepackage[multiple]{footmisc}, I get the comma, but the footnotes are not shown (it seems that it breaks the beamer footnote configuration footmisc-in-beamer-citations-get-lost)
Does anyone have some suggestion on how to do this?


\documentclass{...}and ending with\end{document}. – dexteritas Sep 29 '21 at 11:18footmiscis not working withbeamer. As a simple workaround you could add\textsuperscript{,}between the footnotemarks. – dexteritas Sep 29 '21 at 14:09