Hi Michael!

You wrote:
> Is it possible to do equation numbering according to chapter?
> 
> for example the equations in chapter 2 to be  numbered as
> 2.1, 2.2, etc...
> the equations in chapter 3 to be
> 3.1, 3.2, etc...
> 
> and so on?
Sure. You'll have to fiddle with the LaTeX-Preamble, but it's not that
complicated.

Just add the following to lines:

  \@addtoreset{equation}{section}
  \renewcommand{\theequation}{\thesection.\arabic{equation}}

This sets a dot between the current section number and does the (normal)
arabic numbering scheme for your formulas. Sure you want to start the
numbering with 1 when a new section begins, so you have to use the
\@addtoreset directive, to "reset" the numbering with each section.
 
> Also is it possible to do this for figures and tables?
Replace the phrases {\theequation} with {\thetable}, {\thefigure} and
{equation} with {table}, {figure} and don't forget to adapt the
\@addtoreset command as well.

To the others in this list:

--> What about (another feature for the next version?) a dialog box to
handle this behaviour? I think, it's quite common to use the mentioned
numbering scheme with larger documents? Or is it worth to be added to an
FAQ?

To Michael: Hope this helps!

cul8r,
         Frank
-- 
  while (!asleep()) sheep++;

Reply via email to