LyX ⇒ Numbering first pages
-
- Posts: 3
- Joined: Thu Jun 25, 2009 7:59 pm
Numbering first pages
I wrote my thesis in LyX, and it was very nice , but I need to alter something in it , and I don't know how ??
How could I add my first pages with roman numbers pages as follows :
Committee Decision
Dedication
Acknowledgment
List of contents
Abstract
Introduction
---------
Also , I need to know how to add in the last of table of contents the line :
Abstract in Indian
I'm waiting for answer as soon as possible .
Thank you all
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Numbering first pages
you could use \pagenumbering:
Code: Select all
\pagenumbering{roman}
...
Committee Decision
Dedication
Acknowledgment
...
\pagenumbering{arabic}
Those LaTeX-macros mentioned above can be used with ERT in LyX.
Stefan
-
- Posts: 3
- Joined: Thu Jun 25, 2009 7:59 pm
Re: Numbering first pages
Sorry Stefan , I'm not familiar with Latex code , what I should put in ERT to give me what I need and where exactly
thank you
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Numbering first pages
Code: Select all
\pagenumbering{roman}
Alternatively you could put this line into the document preamble, in the document settings you can change the preamble of your document.
Stefan
Numbering first pages
Code: Select all
\pagenumbering{none}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Numbering first pages
no, see \pagenumbering help, but you could use \thispagestyle or \pagestyle.amitk wrote:Can I usein order to have no page numbering on the first page?Code: Select all
\pagenumbering{none}
Stefan