Presentations and Posters ⇒ Unnumbered footnote in Beamer
Unnumbered footnote in Beamer
What is the simplest way to insert an unnumbered footnote in a Beamer slide?
I found an answer online which suggests to define
\newcommand\blfootnote[1]{%
\begingroup
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\endgroup
}
but the footnote does not show at the bottom of the slide when I try to use it.
Thanks so much,
Asaf
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Unnumbered footnote in Beamer
- Stefan Kottwitz
- Site Admin
- Posts: 10330
- Joined: Mon Mar 10, 2008 9:44 pm
Unnumbered footnote in Beamer
your code works as expected. When I use it, the footnote text appears at the bottom. Here is an example that shows it with your code. Just click on "Open in Overleaf" to easily verify it in the online LaTeX compiler. I tested with several beamer themes such as Warsaw and Singapore.
Code: Select all
\documentclass{beamer}\usetheme{Singapore}\usepackage{blindtext}\newcommand\blfootnote[1]{%\begingroup\renewcommand\thefootnote{}\footnote{#1}%\addtocounter{footnote}{-1}%\endgroup}\begin{document}\begin{frame}Text\blfootnote{Unnumbered footnote} \blindtextText\footnote{Numbered footnote}\end{frame}\end{document}

Stefan
Unnumbered footnote in Beamer
Looks like it didn't work for me earlier due to incompatibility with "setspace" and "subcaption" packages.
Thanks again,
Asaf