Using the metropolis theme, I am able to use footonotes with and without markers using: Footnote without a marker
\begin{document}
\documentclass{beamer}
\usepackage{natbib}
\usepackage[french]{babel}
%\usepackage[sfdefault]{FiraSans}
\usepackage{lmodern}
\usepackage{anyfontsize}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usetheme[sectionpage=progressbar, subsectionpage = none, progressbar = frametitle]{metropolis}
\uselanguage{French}
\languagepath{French}
\usefonttheme{professionalfonts} % using non standard fonts for beamer
\usefonttheme{serif} % default family is serif
\setbeamercolor{background canvas}{bg=white}
\newcommand\blfootnote[1]{%
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup
}
\begin{document}
\begin{frame}
\footnote{With marker}
\blfootnote{Without marker}
\end{frame}
\end{document}
How do I format the footnote such that It looks like in usual documents ? Like in :
- Why \footcite not working in beamer?
- Footnote without a marker
- This person is also using metropolis with the footnote layout I want, but I could not catch what he changed: How to insert a horizontal bar as a footnote at the end of a beamer slide in metropolis/mtheme?
