Presentations and PostersUnnumbered footnote in Beamer

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
asafw
Posts: 37
Joined: Sun Jun 10, 2012 12:33 pm

Unnumbered footnote in Beamer

Post by asafw »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Unnumbered footnote in Beamer

Post by Johannes_B »

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.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Unnumbered footnote in Beamer

Post by Stefan Kottwitz »

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.

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}
beamer.png
beamer.png (46.5 KiB) Viewed 41397 times
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 (Infominimal working example) that shows the problem?

Stefan
LaTeX.org admin
asafw
Posts: 37
Joined: Sun Jun 10, 2012 12:33 pm

Unnumbered footnote in Beamer

Post by asafw »

Thanks so much Stefan!
Looks like it didn't work for me earlier due to incompatibility with "setspace" and "subcaption" packages.

Thanks again,
Asaf
Post Reply