Graphics, Figures & TablesRemove Label of Figure Caption in Presentation

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
User avatar
butek
Posts: 15
Joined: Tue Feb 19, 2013 9:35 pm

Remove Label of Figure Caption in Presentation

Post by butek »

I used \caption for a figure in the beamer class and I'd like skip the label "Figure". How can I do it? - Please have a look at the attached files.
Attachments
beamer_proba.pdf
(309.18 KiB) Downloaded 402 times
beamer_proba.tex
(977 Bytes) Downloaded 464 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Remove Label of Figure Caption in Presentation

Post by localghost »

Section 12.6 of the beamer user guide describes the template caption and its parameters for possible settings. So you can try something like is.

Code: Select all

\documentclass[professonialfonts]{beamer}
\usepackage[T1]{fontenc}

\setbeamertemplate{caption}{\insertcaption}

\begin{document}

\begin{frame}
  \begin{figure}
    \rule{8cm}{4.5cm}
    \caption{Dummy figure}
  \end{figure}
\end{frame}

\end{document}

Thorsten
Post Reply