Generalappendix problems

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Aurora
Posts: 17
Joined: Thu Jun 28, 2007 3:42 pm

appendix problems

Post by Aurora »

hi there,

I have some problems with my appendix.
I have a chapter in the appendix but don't want it to have a big letter in front. so I use

Code: Select all

\chapter*{Name}
In this chapter I want to show some additional images. When they are referenced with the above line I get something like "Image .1" instead of "Image A.1".

Is it possible to define the image-numbering independent to the chapter (non)numbering?

Thank a lot.
regards

Recommended reading 2024:

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

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

rockstar1707
Posts: 27
Joined: Wed Jan 17, 2007 12:35 pm

Re: appendix problems

Post by rockstar1707 »

My opinion is, that it is not good to enumerate figures with something that doesn't exist. In your case, there actually is no "number" A. So, why using it at all, if it's nowhere. I know that it is more or less obvious that the first appendix has "number" A, second B etc., even if those numbers are not written. But it is really not consistent to use these numbers in figures and not in sections.
Aurora
Posts: 17
Joined: Thu Jun 28, 2007 3:42 pm

Re: appendix problems

Post by Aurora »

You're right! It's better to have this "A" in front of Appendix than the reader is not knowing what ht number means.
cuintheicu
Posts: 2
Joined: Wed May 14, 2008 10:09 pm

Re: appendix problems

Post by cuintheicu »

I'm facing the exact same problem (first post). And unfortunately, I have to keep to that standard.

Could someone please (please!) help me out with that?

PLEASE :(

Thanks!
Last edited by cuintheicu on Thu Jun 11, 2009 8:16 pm, edited 1 time in total.
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

appendix problems

Post by gmedina »

Redefine the \thefigure command. Taka a look at the following sample code

Code: Select all

\documentclass{book}
\usepackage{graphicx}

\begin{document}
\listoffigures
\clearpage

As you can see in figure~\ref{fig:testfig}...

\appendix
\renewcommand{\thefigure}{A.\arabic{figure}}
\chapter*{First Appendix}
\begin{figure}[!ht]
  \centering
  \rule{4cm}{2cm}
  \caption{Test figure}
  \label{fig:testfig}
\end{figure}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
cuintheicu
Posts: 2
Joined: Wed May 14, 2008 10:09 pm

Re: appendix problems

Post by cuintheicu »

Thank you !
Post Reply