On Wed, May 09, 2001 at 12:09:25PM -0500, Shawn Koons wrote:
> How can I eliminate a page number on the first page, use small case
> Roman numerals on the next few pages and start regular numbers on the
> main body of text.
> 
> I have a title page with a page break, then the TOC, then another page
> break, then the main body of text.

Put the following using latex mode (ctrl+l)

1. \thispagestyle{empty} in the title page.

2. \renewcommand{\thepage}{\roman{page}} at the beginning of the document.

3. \setcounter{page}{1}\renewcommand{\thepage}{\arabic{page}}
  after the TOC (after the page break).
  
If you are using the book class, replace 2&3 by putting
\frontmatter at the beginning, and \mainmatter after the TOC (and remove the
manual pagebreak).


Reply via email to