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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Unnumbered footnote in Beamer
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- 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} \blindtext
Text\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