Possible Duplicate:
Continuous v. per-chapter/section numbering of figures, tables, and other document elements
How can I label the tables per chapter in document class report rather than the continuous numbering in both the body and in the list of tables. I am writing a thesis. I have tried a few tricks but they did not work. I have tried:
\usepackage{chngcntr}
\counterwithin{table}{section}
But it displyed 'chngcntr.sty' not found.
I also want to write 'chapter one' instead of 'chapter 1' using:
\renewcommand{\thechapter}{\Numberstring{chapter}} % for lowercase one, two, three, ...
\renewcommand{\thesection}{\arabic{chapter}.\arabic{section}}
But it displayed 'fmtcount.sty' not found.
Are there other things I can do or where did I get it wrong? Please assist.