Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-29 Thread Helge Hafting

Chris Share wrote:

Hi,

I'm a PhD student and I'd like to use LyX for my thesis. I'm new to 
LyX (although I have written one research paper in LaTeX using 
TeXnicCenter). I've read the Introduction, Tutorial and part of the 
User's Guide.


I have two questions:

1. My document consists of a main file and separate files for each 
chapter. All files are reports. I realise that in a report class an 
abstract appears without a page number. How can I force a page number 
to appear on the abstract page/s?

\thispagestyle{plain}
inside an ERT box.  The ERT box goes inside the abstract, for example
in the first line.  This trick works for the standard report class.
When I tried this, LyX reset the page counter to 1 on the first page
of the abstract.  If this isn't what you want, consider
\setcounter{page}{45} or whatever to fix it. Or perhaps
you want a different style page numbers for the abstract?



2. Each chapter title is in Chapter format however because they're 
separate, each one is labelled Chapter 1. Although this doesn't 
affect the final document, I'd like to change it so that it matches 
the actual chapter number. How can I do this?

Three ways you may use:

The \setcounter way:
==
I wouldn't bother with it, but \setcounter{chapter}{5} will cause
the next chapter to be number 6.  I.e. use setcounter and one
less than the chapter number you want.  Logical, because
you are really setting the number of the previous chapter,
and the new chapter increase the counter value before printing.

Note that you will not see a different chapter number inside LyX,
only in the previews/printouts.

The reason I wouldn't bother with it, is mainly that this screws
up completely _if_ you add or remove a chapter, or reorder them.
you will then have to fix every \setcounter command.  Doing nothing
works for the final document after all.



Chapter headings in the main document
==
Another way of achieving what you want.  Put all the
chapter headings in the master document, and include
child documents that doesn't contain the chapter
environment.

When you print drafts, always print the master document
where you simply don't include more than one child document.
That way - you get headings for empty chapters as well as the
one document you wanted. 


The numbering is correct no matter  how you re-order stuff,
and you don't waste time running the entire thesis through
latex everytime.

Newer versions of LyX support Document branches.  This lets
you turn parts of the document on and off, instead of
removing/reinserting files in the master document.


Document branches
==
You can also use document branches to achieve time  paper
saving, without having to split into several documents.
In this case you put everything into one big document, and
put each chapter (except for the chapter heading itself perhaps)
in a document branch of its own.  You can then use
the document-settings-branches menu to turn
various parts of the document on and off.  Performance
should be fine even with a single huge document.


Helge Hafting


Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-29 Thread Helge Hafting

Chris Share wrote:

Hi,

I'm a PhD student and I'd like to use LyX for my thesis. I'm new to 
LyX (although I have written one research paper in LaTeX using 
TeXnicCenter). I've read the Introduction, Tutorial and part of the 
User's Guide.


I have two questions:

1. My document consists of a main file and separate files for each 
chapter. All files are reports. I realise that in a report class an 
abstract appears without a page number. How can I force a page number 
to appear on the abstract page/s?

\thispagestyle{plain}
inside an ERT box.  The ERT box goes inside the abstract, for example
in the first line.  This trick works for the standard report class.
When I tried this, LyX reset the page counter to 1 on the first page
of the abstract.  If this isn't what you want, consider
\setcounter{page}{45} or whatever to fix it. Or perhaps
you want a different style page numbers for the abstract?



2. Each chapter title is in Chapter format however because they're 
separate, each one is labelled Chapter 1. Although this doesn't 
affect the final document, I'd like to change it so that it matches 
the actual chapter number. How can I do this?

Three ways you may use:

The \setcounter way:
==
I wouldn't bother with it, but \setcounter{chapter}{5} will cause
the next chapter to be number 6.  I.e. use setcounter and one
less than the chapter number you want.  Logical, because
you are really setting the number of the previous chapter,
and the new chapter increase the counter value before printing.

Note that you will not see a different chapter number inside LyX,
only in the previews/printouts.

The reason I wouldn't bother with it, is mainly that this screws
up completely _if_ you add or remove a chapter, or reorder them.
you will then have to fix every \setcounter command.  Doing nothing
works for the final document after all.



Chapter headings in the main document
==
Another way of achieving what you want.  Put all the
chapter headings in the master document, and include
child documents that doesn't contain the chapter
environment.

When you print drafts, always print the master document
where you simply don't include more than one child document.
That way - you get headings for empty chapters as well as the
one document you wanted. 


The numbering is correct no matter  how you re-order stuff,
and you don't waste time running the entire thesis through
latex everytime.

Newer versions of LyX support Document branches.  This lets
you turn parts of the document on and off, instead of
removing/reinserting files in the master document.


Document branches
==
You can also use document branches to achieve time  paper
saving, without having to split into several documents.
In this case you put everything into one big document, and
put each chapter (except for the chapter heading itself perhaps)
in a document branch of its own.  You can then use
the document-settings-branches menu to turn
various parts of the document on and off.  Performance
should be fine even with a single huge document.


Helge Hafting


Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-29 Thread Helge Hafting

Chris Share wrote:

Hi,

I'm a PhD student and I'd like to use LyX for my thesis. I'm new to 
LyX (although I have written one research paper in LaTeX using 
TeXnicCenter). I've read the Introduction, Tutorial and part of the 
User's Guide.


I have two questions:

1. My document consists of a main file and separate files for each 
chapter. All files are "reports". I realise that in a report class an 
abstract appears without a page number. How can I force a page number 
to appear on the abstract page/s?

\thispagestyle{plain}
inside an ERT box.  The ERT box goes inside the abstract, for example
in the first line.  This trick works for the standard report class.
When I tried this, LyX reset the page counter to "1" on the first page
of the abstract.  If this isn't what you want, consider
\setcounter{page}{45} or whatever to fix it. Or perhaps
you want a different style page numbers for the abstract?



2. Each chapter title is in Chapter format however because they're 
separate, each one is labelled "Chapter 1". Although this doesn't 
affect the final document, I'd like to change it so that it matches 
the actual chapter number. How can I do this?

Three ways you may use:

The \setcounter way:
==
I wouldn't bother with it, but \setcounter{chapter}{5} will cause
the next chapter to be number 6.  I.e. use setcounter and one
less than the chapter number you want.  Logical, because
you are really setting the number of the previous chapter,
and the new chapter increase the counter value before printing.

Note that you will not see a different chapter number inside LyX,
only in the previews/printouts.

The reason I wouldn't bother with it, is mainly that this screws
up completely _if_ you add or remove a chapter, or reorder them.
you will then have to fix every \setcounter command.  Doing nothing
works for the final document after all.



Chapter headings in the main document
==
Another way of achieving what you want.  Put all the
chapter headings in the master document, and include
child documents that doesn't contain the "chapter"
environment.

When you print drafts, always print the master document
where you simply don't include more than one child document.
That way - you get headings for "empty" chapters as well as the
one document you wanted. 


The numbering is correct no matter  how you re-order stuff,
and you don't waste time running the entire thesis through
latex everytime.

Newer versions of LyX support "Document branches".  This lets
you turn parts of the document "on" and "off", instead of
removing/reinserting files in the master document.


Document branches
==
You can also use document branches to achieve time & paper
saving, without having to split into several documents.
In this case you put everything into one big document, and
put each chapter (except for the chapter heading itself perhaps)
in a document branch of its own.  You can then use
the document->settings->branches menu to turn
various parts of the document on and off.  Performance
should be fine even with a single huge document.


Helge Hafting


Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-28 Thread Jean-Pierre Chretien

Date: Fri, 25 Aug 2006 16:37:02 -0400
From: Richard Heck [EMAIL PROTECTED]
To: Chris Share [EMAIL PROTECTED]
CC: lyx-users@lists.lyx.org
Subject: Re: Abstract Page Numbering and Separate  Chapter Numbering

Chris Share wrote:
[...]
 2. Each chapter title is in Chapter format however because they're
 separate, each one is labelled Chapter 1. Although this doesn't
 affect the final document, I'd like to change it so that it matches
 the actual chapter number. How can I do this?
Maybe there's some secret formula for doing this, but I'm not sure it's
possible, at least not without a lot more customizing of .layout files
then you want to do.

Plain latex offers the \includeonly command to do this natively, that is

\includeonly{chap3}
...
\include{chap1}
...
\include{chap2}
...
\include{chap3}
...
\include{chap4}
...

Run once all needed passes with \includeonly commented out, then the next run
with \includeonly uncommented will output a correctly numbered chapter 3.

This seem quite difficult to port to LyX, and IMHO useless: multipart docs are 
quite
nice in LyX as you can compile separately without editing (in plain latex, you 
would have
to patch the preamble in each chapter file).
You just need to be confident in the fact that the numbers will be all right 
when you will build the
main document, in the same line as you are confident in TeX to compute a 
correct layout...

-- 
Jean-Pierre



Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-28 Thread Jean-Pierre Chretien

Date: Fri, 25 Aug 2006 16:37:02 -0400
From: Richard Heck [EMAIL PROTECTED]
To: Chris Share [EMAIL PROTECTED]
CC: lyx-users@lists.lyx.org
Subject: Re: Abstract Page Numbering and Separate  Chapter Numbering

Chris Share wrote:
[...]
 2. Each chapter title is in Chapter format however because they're
 separate, each one is labelled Chapter 1. Although this doesn't
 affect the final document, I'd like to change it so that it matches
 the actual chapter number. How can I do this?
Maybe there's some secret formula for doing this, but I'm not sure it's
possible, at least not without a lot more customizing of .layout files
then you want to do.

Plain latex offers the \includeonly command to do this natively, that is

\includeonly{chap3}
...
\include{chap1}
...
\include{chap2}
...
\include{chap3}
...
\include{chap4}
...

Run once all needed passes with \includeonly commented out, then the next run
with \includeonly uncommented will output a correctly numbered chapter 3.

This seem quite difficult to port to LyX, and IMHO useless: multipart docs are 
quite
nice in LyX as you can compile separately without editing (in plain latex, you 
would have
to patch the preamble in each chapter file).
You just need to be confident in the fact that the numbers will be all right 
when you will build the
main document, in the same line as you are confident in TeX to compute a 
correct layout...

-- 
Jean-Pierre



Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-28 Thread Jean-Pierre Chretien

>>Date: Fri, 25 Aug 2006 16:37:02 -0400
>>From: Richard Heck <[EMAIL PROTECTED]>
>>To: Chris Share <[EMAIL PROTECTED]>
>>CC: lyx-users@lists.lyx.org
>>Subject: Re: Abstract Page Numbering and Separate  Chapter Numbering
>>
>>Chris Share wrote:
[...]
>>> 2. Each chapter title is in Chapter format however because they're
>>> separate, each one is labelled "Chapter 1". Although this doesn't
>>> affect the final document, I'd like to change it so that it matches
>>> the actual chapter number. How can I do this?
>>Maybe there's some secret formula for doing this, but I'm not sure it's
>>possible, at least not without a lot more customizing of .layout files
>>then you want to do.

Plain latex offers the \includeonly command to do this natively, that is

\includeonly{chap3}
...
\include{chap1}
...
\include{chap2}
...
\include{chap3}
...
\include{chap4}
...

Run once all needed passes with \includeonly commented out, then the next run
with \includeonly uncommented will output a correctly numbered chapter 3.

This seem quite difficult to port to LyX, and IMHO useless: multipart docs are 
quite
nice in LyX as you can compile separately without editing (in plain latex, you 
would have
to patch the preamble in each chapter file).
You just need to be confident in the fact that the numbers will be all right 
when you will build the
main document, in the same line as you are confident in TeX to compute a 
correct layout...

-- 
Jean-Pierre



Abstract Page Numbering and Separate Chapter Numbering

2006-08-25 Thread Chris Share

Hi,

I'm a PhD student and I'd like to use LyX for my thesis. I'm new to LyX 
(although I have written one research paper in LaTeX using 
TeXnicCenter). I've read the Introduction, Tutorial and part of the 
User's Guide.


I have two questions:

1. My document consists of a main file and separate files for each 
chapter. All files are reports. I realise that in a report class an 
abstract appears without a page number. How can I force a page number to 
appear on the abstract page/s?


2. Each chapter title is in Chapter format however because they're 
separate, each one is labelled Chapter 1. Although this doesn't affect 
the final document, I'd like to change it so that it matches the actual 
chapter number. How can I do this?


Thanks in advance,

Cheers,

Chris




Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-25 Thread Richard Heck
Chris Share wrote:
 I have two questions:

 1. My document consists of a main file and separate files for each
 chapter. All files are reports. I realise that in a report class an
 abstract appears without a page number. How can I force a page number
 to appear on the abstract page/s?
Try ERT: \pagestyle{plain}.
 2. Each chapter title is in Chapter format however because they're
 separate, each one is labelled Chapter 1. Although this doesn't
 affect the final document, I'd like to change it so that it matches
 the actual chapter number. How can I do this?
Maybe there's some secret formula for doing this, but I'm not sure it's
possible, at least not without a lot more customizing of .layout files
then you want to do.

Richard


Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-25 Thread Chris Share

Richard Heck wrote:

Chris Share wrote:


I have two questions:

1. My document consists of a main file and separate files for each
chapter. All files are reports. I realise that in a report class an
abstract appears without a page number. How can I force a page number
to appear on the abstract page/s?


Try ERT: \pagestyle{plain}.


I tried what you suggested however the page number still doesn't appear.

Any ideas?

Cheers,

Chris




2. Each chapter title is in Chapter format however because they're
separate, each one is labelled Chapter 1. Although this doesn't
affect the final document, I'd like to change it so that it matches
the actual chapter number. How can I do this?


Maybe there's some secret formula for doing this, but I'm not sure it's
possible, at least not without a lot more customizing of .layout files
then you want to do.

Richard



Abstract Page Numbering and Separate Chapter Numbering

2006-08-25 Thread Chris Share

Hi,

I'm a PhD student and I'd like to use LyX for my thesis. I'm new to LyX 
(although I have written one research paper in LaTeX using 
TeXnicCenter). I've read the Introduction, Tutorial and part of the 
User's Guide.


I have two questions:

1. My document consists of a main file and separate files for each 
chapter. All files are reports. I realise that in a report class an 
abstract appears without a page number. How can I force a page number to 
appear on the abstract page/s?


2. Each chapter title is in Chapter format however because they're 
separate, each one is labelled Chapter 1. Although this doesn't affect 
the final document, I'd like to change it so that it matches the actual 
chapter number. How can I do this?


Thanks in advance,

Cheers,

Chris




Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-25 Thread Richard Heck
Chris Share wrote:
 I have two questions:

 1. My document consists of a main file and separate files for each
 chapter. All files are reports. I realise that in a report class an
 abstract appears without a page number. How can I force a page number
 to appear on the abstract page/s?
Try ERT: \pagestyle{plain}.
 2. Each chapter title is in Chapter format however because they're
 separate, each one is labelled Chapter 1. Although this doesn't
 affect the final document, I'd like to change it so that it matches
 the actual chapter number. How can I do this?
Maybe there's some secret formula for doing this, but I'm not sure it's
possible, at least not without a lot more customizing of .layout files
then you want to do.

Richard


Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-25 Thread Chris Share

Richard Heck wrote:

Chris Share wrote:


I have two questions:

1. My document consists of a main file and separate files for each
chapter. All files are reports. I realise that in a report class an
abstract appears without a page number. How can I force a page number
to appear on the abstract page/s?


Try ERT: \pagestyle{plain}.


I tried what you suggested however the page number still doesn't appear.

Any ideas?

Cheers,

Chris




2. Each chapter title is in Chapter format however because they're
separate, each one is labelled Chapter 1. Although this doesn't
affect the final document, I'd like to change it so that it matches
the actual chapter number. How can I do this?


Maybe there's some secret formula for doing this, but I'm not sure it's
possible, at least not without a lot more customizing of .layout files
then you want to do.

Richard



Abstract Page Numbering and Separate Chapter Numbering

2006-08-25 Thread Chris Share

Hi,

I'm a PhD student and I'd like to use LyX for my thesis. I'm new to LyX 
(although I have written one research paper in LaTeX using 
TeXnicCenter). I've read the Introduction, Tutorial and part of the 
User's Guide.


I have two questions:

1. My document consists of a main file and separate files for each 
chapter. All files are "reports". I realise that in a report class an 
abstract appears without a page number. How can I force a page number to 
appear on the abstract page/s?


2. Each chapter title is in Chapter format however because they're 
separate, each one is labelled "Chapter 1". Although this doesn't affect 
the final document, I'd like to change it so that it matches the actual 
chapter number. How can I do this?


Thanks in advance,

Cheers,

Chris




Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-25 Thread Richard Heck
Chris Share wrote:
> I have two questions:
>
> 1. My document consists of a main file and separate files for each
> chapter. All files are "reports". I realise that in a report class an
> abstract appears without a page number. How can I force a page number
> to appear on the abstract page/s?
Try ERT: \pagestyle{plain}.
> 2. Each chapter title is in Chapter format however because they're
> separate, each one is labelled "Chapter 1". Although this doesn't
> affect the final document, I'd like to change it so that it matches
> the actual chapter number. How can I do this?
Maybe there's some secret formula for doing this, but I'm not sure it's
possible, at least not without a lot more customizing of .layout files
then you want to do.

Richard


Re: Abstract Page Numbering and Separate Chapter Numbering

2006-08-25 Thread Chris Share

Richard Heck wrote:

Chris Share wrote:


I have two questions:

1. My document consists of a main file and separate files for each
chapter. All files are "reports". I realise that in a report class an
abstract appears without a page number. How can I force a page number
to appear on the abstract page/s?


Try ERT: \pagestyle{plain}.


I tried what you suggested however the page number still doesn't appear.

Any ideas?

Cheers,

Chris




2. Each chapter title is in Chapter format however because they're
separate, each one is labelled "Chapter 1". Although this doesn't
affect the final document, I'd like to change it so that it matches
the actual chapter number. How can I do this?


Maybe there's some secret formula for doing this, but I'm not sure it's
possible, at least not without a lot more customizing of .layout files
then you want to do.

Richard