Sven Herzberg wrote:
> Hi
>
> to make it short:
>
> 1. i want to write a doc with a title page a toc and content.
>
> 2. i want the title page and the second page to be numbered with capital
> roman numbers (I and II).
Add the following command in ERT before the title page.
\pagenumbering{Roman}
> 3. i want the toc to be numbered with capital letters (A, B, C, ...).
Instead of placing the ToC with the LyX menus add the following in ERT:
\tableofcontents \addtocontents{toc}{\protect\pagenumbering{Alph}}
> 4. i want the content to be numbered with numbers (1, 2, 3, 4, ...).
\pagenumbering{arabic}
> 5. i want that the toc page numbers start with 'A' (not with 'C' as it
> is the third page of the document) as well as i want the content page
> numbers to start with '1' (and not with '5' as this is the fifth page of
> the document).
The \pagenumbering command automatically resets the numbers when issued.
HTH,
Roberto