I am using beamer to put together a presentation for a meeting. I use the
following code for inserting a figure :
\begin{figure}
\resizebox{45mm}{!}{\includegraphics{figure1.jpg}}
\caption{This is a figure.}
\label{fig:fig1}
\end{figure}
This produces a caption :
"Figure: This is a figure."
I wish to produce :
"This is a figure."
(The word "Figure" is serving no useful purpose and makes the thing look
like a fake text document.).
Is there a way to accomplish this ?
Is the label really necessary in a presentation? Referring to figures
by numbers in a presentation is pretty useless, since members of the
audience have no way to go back and see it themselves.
Probably a simple
\begin{center}
\includegraphics[width=45mm]{figure1}\\
This is a figure
\end{center}
is sufficient. In case you need to jump back or forward to the figure,
use the means provided by beamer.
Alternatively use the caption package:
\usepackage{caption}
\captionsetup{labelformat=empty,labelsep=none}
Ciao
Enrico
>> Is there a way to accomplish this ?
>
> Is the label really necessary in a presentation? Referring to figures
Just as a target for possible hyperlinks.
> by numbers in a presentation is pretty useless, since members of the
> audience have no way to go back and see it themselves.
>
> Probably a simple
>
> \begin{center}
> \includegraphics[width=45mm]{figure1}\\
> This is a figure
> \end{center}
>
> is sufficient. In case you need to jump back or forward to the figure,
> use the means provided by beamer.
I will look into this.
>
> Alternatively use the caption package:
>
> \usepackage{caption}
> \captionsetup{labelformat=empty,labelsep=none}
>
Does not work for me.
Change beamertemplate "caption" to not call \insertcaptionname. (I wish I
had a cent for every time a beamer-related question can be answered by
opening the manual, looking at the list of beamer-templates in the index,
briefly looking at the description to verify it's the right thing.)
Ulrich
Then you would probably be a very rich man.
Thanks !