Am 10.10.2010 16:24, schrieb Hiisi:

I would like to count the total number of figures and tables in the
document. How can it be done?

The command
\thefigure
that you can insert in TeX code outputs the current number of figures. So using this command at the end of your document should do what you want.
If you have a document with the numbering scheme
chapter.figure
you have to use tis command at the end of every chapter and sum the result:
\addtocounter{\myCounter}{figure}
(where \mycounter is a counter you need to define in the document preamble)

For tables, the command is
\thetable

regards Uwe

Reply via email to