I'm looking for the most versatile option to insert a footnote in beamer with no number.
Thanks so much, Asaf
I'm looking for the most versatile option to insert a footnote in beamer with no number.
Thanks so much, Asaf
You could define your own command that yields an unnumbered footnote as shown in the following MWE:
\documentclass{beamer}
\newcommand\unfootnote[1]{%
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup
}
\begin{document}
\begin{frame}
Some text\unfootnote{An unnumbered footnote} \footnote{a numbered footnote}
\end{frame}
\end{document}
The footnote number can be removed with a slight adjustment of beamers footnote template:
\documentclass{beamer}
\setbeamertemplate{footnote}{%
\parindent 1em\noindent%
\raggedright
\insertfootnotetext\par%
}
\begin{document}
\begin{frame}
text \footnotetext{A test footnote in the first column}
\end{frame}
\end{document}
[frame]option? According to thebeamerdocumentation, it is the default behaviour. – leandriis Jan 04 '18 at 09:48