A family of Microsoft word processing software products for creating web, email, and print documents.
[Peter's reply was not showing when I posted this!]
Just use the "reset" switch in the first Table in each chapter that you need to renumber. That is:
{ SEQ Table \r 1 \ ARABIC }*
will cause your named sequence "Table" to restart from 1 (or from any other specified number).
You can also do it through independent sequences named Table1, Table2... You obtain these self-numbered sequence names by pasting a STYLEREF field inside the SEQ field:
{ SEQ "Table{ STYLEREF "chapter name" \n }" \* ARABIC }
Note that you do need the quotes here. This has the advantage that you can always use the same field (as above) throughout your document. The above combo is equivalent to using:
- { SEQ "Table1" \ ARABIC }* in Chapter 1
- { SEQ "Table 2" \ ARABIC }* in Chapter 2
- etc.
except that the names are built automatically, according to the value of each **{ STYLEREF "chapter name" \n }"**as it appears each time.