LyX ⇒ Numbering first pages
-
- Posts: 3
- Joined: Thu Jun 25, 2009 7:59 pm
Numbering first pages
Hi Guys ;
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
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
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10322
- Joined: Mon Mar 10, 2008 9:44 pm
Numbering first pages
Hi,
you could use \pagenumbering:
To add a line to the table of contents you could use \addcontentsline or \addtocontents.
Those LaTeX-macros mentioned above can be used with ERT in LyX.
Stefan
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
LaTeX.org admin
-
- Posts: 3
- Joined: Thu Jun 25, 2009 7:59 pm
Re: Numbering first pages
Hi ;
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
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: 10322
- Joined: Mon Mar 10, 2008 9:44 pm
Numbering first pages
Try
in ERT at the beginning of your LyX document, test it to see the effect.
Alternatively you could put this line into the document preamble, in the document settings you can change the preamble of your document.
Stefan
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
LaTeX.org admin
Numbering first pages
Can I use in order to have no page numbering on the first page?
Code: Select all
\pagenumbering{none}
- Stefan Kottwitz
- Site Admin
- Posts: 10322
- Joined: Mon Mar 10, 2008 9:44 pm
Numbering first pages
Hi amitk,
Stefan
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
LaTeX.org admin
Re: Numbering first pages
This didn't work. The \pagestyle{empty} just change the headings, not the numbering, which continue to appear in the same manner.