LyXNumbering first pages

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
Greenberet
Posts: 3
Joined: Thu Jun 25, 2009 7:59 pm

Numbering first pages

Post by Greenberet »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10322
Joined: Mon Mar 10, 2008 9:44 pm

Numbering first pages

Post by Stefan Kottwitz »

Hi,

you could use \pagenumbering:

Code: Select all

\pagenumbering{roman}
...
Committee Decision
Dedication
Acknowledgment 
...
\pagenumbering{arabic}
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
LaTeX.org admin
Greenberet
Posts: 3
Joined: Thu Jun 25, 2009 7:59 pm

Re: Numbering first pages

Post by Greenberet »

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
User avatar
Stefan Kottwitz
Site Admin
Posts: 10322
Joined: Mon Mar 10, 2008 9:44 pm

Numbering first pages

Post by Stefan Kottwitz »

Try

Code: Select all

\pagenumbering{roman}
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
LaTeX.org admin
amitk
Posts: 20
Joined: Sun May 17, 2009 10:48 am

Numbering first pages

Post by amitk »

Can I use

Code: Select all

\pagenumbering{none}
in order to have no page numbering on the first page?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10322
Joined: Mon Mar 10, 2008 9:44 pm

Numbering first pages

Post by Stefan Kottwitz »

Hi amitk,
amitk wrote:Can I use

Code: Select all

\pagenumbering{none}
in order to have no page numbering on the first page?
no, see \pagenumbering help, but you could use \thispagestyle or \pagestyle.

Stefan
LaTeX.org admin
amitk
Posts: 20
Joined: Sun May 17, 2009 10:48 am

Re: Numbering first pages

Post by amitk »

This didn't work. The \pagestyle{empty} just change the headings, not the numbering, which continue to appear in the same manner.
Post Reply