Discussion:
Figure without caption
(too old to reply)
F.P. Laussy
2005-04-11 01:15:33 UTC
Permalink
Hi,

How can I use \caption without numbering of the figure (and without any
mention "Figure. x" appearing). Using a starred version of figure
environment does not do the trick,

Best,

F.
Lars Madsen
2005-04-11 00:06:26 UTC
Permalink
Post by F.P. Laussy
Hi,
How can I use \caption without numbering of the figure (and without any
mention "Figure. x" appearing). Using a starred version of figure
environment does not do the trick,
Best,
F.
the figure environment has nothing to do with the numberring, the *'ed
version is for something else.

have a look at the caption package, it should be able to do such a thing.
--
/daleif (remove RTFSIGNATURE for email)
Donald Arseneau
2005-04-11 01:30:35 UTC
Permalink
Post by F.P. Laussy
How can I use \caption without numbering of the figure (and without any
mention "Figure. x" appearing).
Those are two of the three things that \caption does. Do you want
an entry in a list of figures? If not then sureley just type your
text, without \caption. If you need a LOF entry, then I would
probably use \addcontentsline, but you might want to do

\renewcommand\***@figure[1]{\ignorespaces}
--
Donald Arseneau ***@triumf.ca
Uwe Siart
2005-04-11 11:32:06 UTC
Permalink
How can I use \caption without numbering [...]
% --------------------------------------------
\documentclass{article}
\usepackage{caption}
\captionsetup{labelsep=none,labelformat=empty}
\begin{document}
\begin{figure}
\centering
\rule{8cm}{4cm}
\caption{Caption without label}
\end{figure}
\end{document}
% --------------------------------------------
--
Uwe
Peter Wilson
2005-04-11 16:31:45 UTC
Permalink
Post by F.P. Laussy
Hi,
How can I use \caption without numbering of the figure (and without any
mention "Figure. x" appearing). Using a starred version of figure
environment does not do the trick,
The memoir class and the ccaption (double c) package provide a \legend
command for this.

Peter W.

Loading...