> 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.

it's easy to use in ERT
    \pagenumbering{roman}
at the beginning of the document
and then set to
   \pagenumbering{arabic}
in due place.

as a note, using
   \pagenumbering{Roman}
you will get capital romans (I, II, III, IV s.a.m.d.)


Reply via email to