Graphics, Figures & Tablessidecap | Figure Numbering

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
fcc
Posts: 2
Joined: Mon Mar 23, 2009 5:16 am

sidecap | Figure Numbering

Post by fcc »

Hi,

everybody wants to number figures and tables. Not me. It's easy in the figure environment. Just use an asterisk:

Code: Select all

\caption*{your text}
Unfortunately this does not work in the SCfigure environment, as defined by sidecap. Both the LaTeX from TeX Live and the one found in Fedora 10 do not complete the PDFLaTeX command. My exact code is:

Code: Select all

\begin{SCfigure}
 \includegraphics[height=7cm]{myfigure.jpg}
 \caption*{\emph{mycaption.}}
\end{SCfigure}
Did someone notice (and solved) the problem?

Thank you!
fcc

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

sommerfee
Posts: 503
Joined: Mon Apr 09, 2007 4:20 pm

sidecap | Figure Numbering

Post by sommerfee »

Using \caption* inside an SCfigure is working fine here, using the latest caption package 3.1j:

Code: Select all

\listfiles
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage[textfont=it]{caption}
\usepackage{sidecap}
\begin{document}
\begin{SCfigure}
\includegraphics[height=7cm]{myfigure.jpg}
\caption*{mycaption.}
\end{SCfigure}
\end{document}
fcc
Posts: 2
Joined: Mon Mar 23, 2009 5:16 am

Re: sidecap | Figure Numbering

Post by fcc »

Danke vielmals!
I upgraded my package and I have seen that you are right.
fcc
Post Reply