Hi there,
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
Presentations and Posters ⇒ Unnumbered footnote in Beamer
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Unnumbered footnote in Beamer
Crosspost in TeX.SX.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Unnumbered footnote in Beamer
Hi Asaf,
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.
The reason, why it doesn't show up on your slide, is in your other code. Or the slide is already too full. Can you post your code (
minimal working example) that shows the problem?
Stefan
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
LaTeX.org admin
Unnumbered footnote in Beamer
Thanks so much Stefan!
Looks like it didn't work for me earlier due to incompatibility with "setspace" and "subcaption" packages.
Thanks again,
Asaf
Looks like it didn't work for me earlier due to incompatibility with "setspace" and "subcaption" packages.
Thanks again,
Asaf