How can I make figures be renumbered in a TeX document? I want the main figures to be 1, 2, 3, ...etc. But then I want a section to have supplementary figures, S1, S2, S3, S4. The "S" does not have to appear in the figure name, but I do want to reset the counter.

link|improve this question

76% accept rate
1  
This would be better asked on the TeX/LaTeX Stack Exchange site, now in public beta: tex.stackexchange.com/questions – David Zaslavsky Aug 2 '10 at 20:39
have you looked at the caption package? – Mica Aug 2 '10 at 20:42
area51 says TeX is still in private beta. Public beta should launch today or tomorrow though. – Seamus Aug 3 '10 at 10:03
feedback

2 Answers

up vote 6 down vote accepted

Next to reseting the counter for the figures:

\setcounter{figure}{0}

You can also add the "S" by using:

\makeatletter 
\renewcommand{\thefigure}{S\@arabic\c@figure} 
link|improve this answer
You should always use \makeatother after this or it will mess up the use of @ in commands. – Quantum7 Dec 14 '10 at 12:42
feedback

you can reset the figure counter with

\setcounter{figure}{0}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.