I'm using beamer package to produce slides. I put many figures on a slide by using the subfigure package. The problem is that for captions, the subfigure are labeled "a", "b".. "m", "n" and so on, for subfigures appearing on different slides. How could I reset the subfigure numbering when passing to a new slide?
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
Instead of doing this for every figure, you could define it once in the preamble:
Alternatively, using the
Though I would expect such a reset per figure as default subfigure behavior, but you did not post your code. |
|||||||
|
|
@Jim Silverton: You could use the
|
|||||||
|
|
Solved: added |
|||
|


\makeatletter \@addtoreset{subfigure}{framenumber} \makeatotheralways in the preamble. I've just tried it and it works. Regards! – oxio Jan 31 at 14:46