On Fri, Oct 11, 2002 at 08:28:36PM +0200, Vladimir Milovanovic wrote:
> I seem to remember doing this, but I don't know how to do it anymore...
> I want to number the pages up to the Chapter One using roman numerals,
> i.e. the table of contents and list of figures and tables, the abstract
> etc, they must all be numbered using roman numerals. How is this done?
For the book class, write
\frontmatter
(in latex mode) at the beginning of the document, and
\mainmatter
before the 1st chapter.
If you are using a class for which the above doesn't work, use
\renewcommand{\thepage}{\roman{page}}
to change to Roman numbering, and
\renewcommand{\thepage}{\arabic{page}}
to switch to normal numbering.