Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Lyx Physicst

On 7/17/07, Charles de Miramon [EMAIL PROTECTED] wrote:


Lyx Physicst wrote:

 Hi all, I am writing my thesis in Lyx 1.44(OS X).  I need to have all
the
 page numbering for the first pages of a new section(ie Table of Figures,
 first page in chapter, etc) removed.  I have managed to remove them all,
 except the first page of my bibliography.  I am using a bibtex generated
 bibliography and I have no idea how to remove the page numbering.  I am
 writing the paper in Report class.  Is there anyway to remove the page
 numbering and have it start re-counting again on the 2nd page of the
bib?
 Thanks,
 charles

I guess inserting in ERT \thispagestyle{empty} just after the bibliography
inset should work. A cleaner but more complex solution would be to
redefine
the bibliography environment.




Hi, I tried to do that originally, but it doesnt seem to work.  That just
makes the last page of the bib. un-numbered, but not the first as I need..


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Todd Denniston

Lyx Physicst wrote:

On 7/17/07, Charles de Miramon [EMAIL PROTECTED] wrote:


Lyx Physicst wrote:

 Hi all, I am writing my thesis in Lyx 1.44(OS X).  I need to have all
the
 page numbering for the first pages of a new section(ie Table of 
Figures,
 first page in chapter, etc) removed.  I have managed to remove them 
all,
 except the first page of my bibliography.  I am using a bibtex 
generated

 bibliography and I have no idea how to remove the page numbering.  I am
 writing the paper in Report class.  Is there anyway to remove the page
 numbering and have it start re-counting again on the 2nd page of the
bib?
 Thanks,
 charles

I guess inserting in ERT \thispagestyle{empty} just after the 
bibliography

inset should work. A cleaner but more complex solution would be to
redefine
the bibliography environment.




Hi, I tried to do that originally, but it doesnt seem to work.  That just
makes the last page of the bib. un-numbered, but not the first as I need..



I am also seeing what you are, can't get the bib pages to be un-numbered, with 
out redefining stuff in the bib def.


however is the requirement that the pages be un-counted as far as the document 
length is concerned, or that they have no page count numbers at all?


if it is only that they not be counted for the overall length, you might do a 
work around something like:

ERT \pagenumbering{roman} %before bib
ERT \setcounter{page}{1} %before bib

ERT \pagenumbering{arabic} %after bib
ERT \setcounter{page}{1} %after bib

or after reading:
http://www.emerson.emory.edu/services/latex/latex_129.html
you could probably use something like:
ERT \pagestyle{empty} %before bib
ERT \pagestyle{plain} %after bib

Assuming plain is the style you have been using, the URL does not indicate if 
fancy is allowed.


--
Todd Denniston
Crane Division, Naval Surface Warfare Center (NSWC Crane)
Harnessing the Power of Technology for the Warfighter


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

Lyx Physicst wrote:



Sorry, let me clarify.  My thesis ends on page 85, so I would like the 
first

page of the bib to not have a page number(which would be 86) at the bottom,
and then the 2nd page to continue counting at 87 and so on.
 I tried to use the
ERT \pagestyle{empty} %before bib
ERT \pagestyle{plain} %after bib
 method, but that doesnt remove the page number of the first page of the
bib...



Try the following.  Put \usepackage{afterpage} in your preamble.  (This 
presumes you have the tools package, but I think that's a standard part 
of all LaTeX distros.)  At the end of the text on what will be page 85, 
put \afterpage{\thispagestyle{empty}} in ERT just before the page break. 
 I think that will do it for you.


/Paul



Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Lyx Physicst

On 7/17/07, Paul A. Rubin [EMAIL PROTECTED] wrote:


Lyx Physicst wrote:


 Sorry, let me clarify.  My thesis ends on page 85, so I would like the
 first
 page of the bib to not have a page number(which would be 86) at the
bottom,
 and then the 2nd page to continue counting at 87 and so on.
  I tried to use the
 ERT \pagestyle{empty} %before bib
 ERT \pagestyle{plain} %after bib
  method, but that doesnt remove the page number of the first page of the
 bib...


Try the following.  Put \usepackage{afterpage} in your preamble.  (This
presumes you have the tools package, but I think that's a standard part
of all LaTeX distros.)  At the end of the text on what will be page 85,
put \afterpage{\thispagestyle{empty}} in ERT just before the page break.
  I think that will do it for you.

/Paul



Hi paul,  I tried that but it still isnt working...  I didnt get any errors
so I assume I have the package.  Is there anything else that I can try?
Another possibility that I wouldnt mind is to make a separate file somehow
that has my bib in it and removing the first page there.  I am turning in a
hard copy, not a digital one, so any way to get that first page of my bib
un-numbered will work...
Thanks again for all the help


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread curtis osterhoudt
 - Original Message 
From: Lyx Physicst [EMAIL PROTECTED]
To: Paul A. Rubin [EMAIL PROTECTED]
Cc: lyx-users@lists.lyx.org
Sent: Tuesday, July 17, 2007 9:10:36 AM
Subject: Re: Removing first page number on bibtex generated bibliography

On 7/17/07, Paul A. Rubin [EMAIL PROTECTED] wrote:

 Lyx Physicst wrote:

 
  Sorry, let me clarify.  My thesis ends on page 85, so I would like the
  first
  page of the bib to not have a page number(which would be 86) at the
 bottom,
  and then the 2nd page to continue counting at 87 and so on.
   I tried to use the
  ERT \pagestyle{empty} %before bib
  ERT \pagestyle{plain} %after bib
   method, but that doesnt remove the page number of the first page of the
  bib...
 

 Try the following.  Put \usepackage{afterpage} in your preamble.  (This
 presumes you have the tools package, but I think that's a standard part
 of all LaTeX distros.)  At the end of the text on what will be page 85,
 put \afterpage{\thispagestyle{empty}} in ERT just before the page break.
   I think that will do it for you.

 /Paul


Hi paul,  I tried that but it still isnt working...  I didnt get any errors
so I assume I have the package.  Is there anything else that I can try?
Another possibility that I wouldnt mind is to make a separate file somehow
that has my bib in it and removing the first page there.  I am turning in a
hard copy, not a digital one, so any way to get that first page of my bib
un-numbered will work...
Thanks again for all the help



 original message above =



When I wrote my thesis, I was required to have page numbers on EVERY
page except the first couple. So I can't help you with a nice technical
hack. However, I did have to resort (for various reasons) to a very
low-tech kludge. If you're desperate for a just-good-enough solution,
you might try simply printing the page as-is, page number and all. Then
take a nice sharp knife blade or razor, and carefully scrape away the
ink. One of the professors in my department also swore that a
high-powered, pulsed infrared laser will blow the ink off the paper,
but not damage the paper itself (this is something I didn't try,
though). 



In any case, I was able to sneak a couple of wrongly-numbered pages
by the hard-copy examiner using the trick. When it comes down to the
wire, you might do the same. 



Best of luck!





   

Pinpoint customers who are looking for what you sell. 
http://searchmarketing.yahoo.com/

Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

curtis osterhoudt wrote:



When I wrote my thesis, I was required to have page numbers on EVERY
page except the first couple. So I can't help you with a nice technical
hack. However, I did have to resort (for various reasons) to a very
low-tech kludge. If you're desperate for a just-good-enough solution,
you might try simply printing the page as-is, page number and all. Then
take a nice sharp knife blade or razor, and carefully scrape away the
ink. One of the professors in my department also swore that a
high-powered, pulsed infrared laser will blow the ink off the paper,
but not damage the paper itself (this is something I didn't try,
though). 


You're sure he wasn't suggesting aiming it at the twit that requires no 
page number on the first reference page?




Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

Lyx Physicst wrote:

Hi all, I am writing my thesis in Lyx 1.44(OS X).  I need to have all the
page numbering for the first pages of a new section(ie Table of Figures,
first page in chapter, etc) removed.  I have managed to remove them all,
except the first page of my bibliography.  I am using a bibtex generated
bibliography and I have no idea how to remove the page numbering.  I am
writing the paper in Report class.  Is there anyway to remove the page
numbering and have it start re-counting again on the 2nd page of the bib?


Turns out the document is in koma-book, and that apparently clobbers 
afterpage.  Inserting \setbibpreamble{\thispagestyle{empty}} in ERT 
before the page break above the bibliography did the trick for me.


/Paul



Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

Paul A. Rubin wrote:

Turns out the document is in koma-book, and that apparently clobbers 
afterpage.  Inserting \setbibpreamble{\thispagestyle{empty}} in ERT 
before the page break above the bibliography did the trick for me.




Spoke too soon.  This does indeed work with koma-book, but he's actually 
using report, which also seems to clobber afterpage.  I got this to work 
with report: \renewcommand{\bibname}{\thispagestyle{empty}Bibliography} 
in ERT before the page break leading to the bibliography.




Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Lyx Physicst

On 7/17/07, Paul A. Rubin [EMAIL PROTECTED] wrote:


Paul A. Rubin wrote:

 Turns out the document is in koma-book, and that apparently clobbers
 afterpage.  Inserting \setbibpreamble{\thispagestyle{empty}} in ERT
 before the page break above the bibliography did the trick for me.


Spoke too soon.  This does indeed work with koma-book, but he's actually
using report, which also seems to clobber afterpage.  I got this to work
with report: \renewcommand{\bibname}{\thispagestyle{empty}Bibliography}
in ERT before the page break leading to the bibliography.

That did it!!  Thank you very very much for all the help, good learning

experience...
Thanks again,
Charles


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Lyx Physicst

On 7/17/07, Charles de Miramon [EMAIL PROTECTED] wrote:


Lyx Physicst wrote:

 Hi all, I am writing my thesis in Lyx 1.44(OS X).  I need to have all
the
 page numbering for the first pages of a new section(ie Table of Figures,
 first page in chapter, etc) removed.  I have managed to remove them all,
 except the first page of my bibliography.  I am using a bibtex generated
 bibliography and I have no idea how to remove the page numbering.  I am
 writing the paper in Report class.  Is there anyway to remove the page
 numbering and have it start re-counting again on the 2nd page of the
bib?
 Thanks,
 charles

I guess inserting in ERT \thispagestyle{empty} just after the bibliography
inset should work. A cleaner but more complex solution would be to
redefine
the bibliography environment.




Hi, I tried to do that originally, but it doesnt seem to work.  That just
makes the last page of the bib. un-numbered, but not the first as I need..


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Todd Denniston

Lyx Physicst wrote:

On 7/17/07, Charles de Miramon [EMAIL PROTECTED] wrote:


Lyx Physicst wrote:

 Hi all, I am writing my thesis in Lyx 1.44(OS X).  I need to have all
the
 page numbering for the first pages of a new section(ie Table of 
Figures,
 first page in chapter, etc) removed.  I have managed to remove them 
all,
 except the first page of my bibliography.  I am using a bibtex 
generated

 bibliography and I have no idea how to remove the page numbering.  I am
 writing the paper in Report class.  Is there anyway to remove the page
 numbering and have it start re-counting again on the 2nd page of the
bib?
 Thanks,
 charles

I guess inserting in ERT \thispagestyle{empty} just after the 
bibliography

inset should work. A cleaner but more complex solution would be to
redefine
the bibliography environment.




Hi, I tried to do that originally, but it doesnt seem to work.  That just
makes the last page of the bib. un-numbered, but not the first as I need..



I am also seeing what you are, can't get the bib pages to be un-numbered, with 
out redefining stuff in the bib def.


however is the requirement that the pages be un-counted as far as the document 
length is concerned, or that they have no page count numbers at all?


if it is only that they not be counted for the overall length, you might do a 
work around something like:

ERT \pagenumbering{roman} %before bib
ERT \setcounter{page}{1} %before bib

ERT \pagenumbering{arabic} %after bib
ERT \setcounter{page}{1} %after bib

or after reading:
http://www.emerson.emory.edu/services/latex/latex_129.html
you could probably use something like:
ERT \pagestyle{empty} %before bib
ERT \pagestyle{plain} %after bib

Assuming plain is the style you have been using, the URL does not indicate if 
fancy is allowed.


--
Todd Denniston
Crane Division, Naval Surface Warfare Center (NSWC Crane)
Harnessing the Power of Technology for the Warfighter


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

Lyx Physicst wrote:



Sorry, let me clarify.  My thesis ends on page 85, so I would like the 
first

page of the bib to not have a page number(which would be 86) at the bottom,
and then the 2nd page to continue counting at 87 and so on.
 I tried to use the
ERT \pagestyle{empty} %before bib
ERT \pagestyle{plain} %after bib
 method, but that doesnt remove the page number of the first page of the
bib...



Try the following.  Put \usepackage{afterpage} in your preamble.  (This 
presumes you have the tools package, but I think that's a standard part 
of all LaTeX distros.)  At the end of the text on what will be page 85, 
put \afterpage{\thispagestyle{empty}} in ERT just before the page break. 
 I think that will do it for you.


/Paul



Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Lyx Physicst

On 7/17/07, Paul A. Rubin [EMAIL PROTECTED] wrote:


Lyx Physicst wrote:


 Sorry, let me clarify.  My thesis ends on page 85, so I would like the
 first
 page of the bib to not have a page number(which would be 86) at the
bottom,
 and then the 2nd page to continue counting at 87 and so on.
  I tried to use the
 ERT \pagestyle{empty} %before bib
 ERT \pagestyle{plain} %after bib
  method, but that doesnt remove the page number of the first page of the
 bib...


Try the following.  Put \usepackage{afterpage} in your preamble.  (This
presumes you have the tools package, but I think that's a standard part
of all LaTeX distros.)  At the end of the text on what will be page 85,
put \afterpage{\thispagestyle{empty}} in ERT just before the page break.
  I think that will do it for you.

/Paul



Hi paul,  I tried that but it still isnt working...  I didnt get any errors
so I assume I have the package.  Is there anything else that I can try?
Another possibility that I wouldnt mind is to make a separate file somehow
that has my bib in it and removing the first page there.  I am turning in a
hard copy, not a digital one, so any way to get that first page of my bib
un-numbered will work...
Thanks again for all the help


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread curtis osterhoudt
 - Original Message 
From: Lyx Physicst [EMAIL PROTECTED]
To: Paul A. Rubin [EMAIL PROTECTED]
Cc: lyx-users@lists.lyx.org
Sent: Tuesday, July 17, 2007 9:10:36 AM
Subject: Re: Removing first page number on bibtex generated bibliography

On 7/17/07, Paul A. Rubin [EMAIL PROTECTED] wrote:

 Lyx Physicst wrote:

 
  Sorry, let me clarify.  My thesis ends on page 85, so I would like the
  first
  page of the bib to not have a page number(which would be 86) at the
 bottom,
  and then the 2nd page to continue counting at 87 and so on.
   I tried to use the
  ERT \pagestyle{empty} %before bib
  ERT \pagestyle{plain} %after bib
   method, but that doesnt remove the page number of the first page of the
  bib...
 

 Try the following.  Put \usepackage{afterpage} in your preamble.  (This
 presumes you have the tools package, but I think that's a standard part
 of all LaTeX distros.)  At the end of the text on what will be page 85,
 put \afterpage{\thispagestyle{empty}} in ERT just before the page break.
   I think that will do it for you.

 /Paul


Hi paul,  I tried that but it still isnt working...  I didnt get any errors
so I assume I have the package.  Is there anything else that I can try?
Another possibility that I wouldnt mind is to make a separate file somehow
that has my bib in it and removing the first page there.  I am turning in a
hard copy, not a digital one, so any way to get that first page of my bib
un-numbered will work...
Thanks again for all the help



 original message above =



When I wrote my thesis, I was required to have page numbers on EVERY
page except the first couple. So I can't help you with a nice technical
hack. However, I did have to resort (for various reasons) to a very
low-tech kludge. If you're desperate for a just-good-enough solution,
you might try simply printing the page as-is, page number and all. Then
take a nice sharp knife blade or razor, and carefully scrape away the
ink. One of the professors in my department also swore that a
high-powered, pulsed infrared laser will blow the ink off the paper,
but not damage the paper itself (this is something I didn't try,
though). 



In any case, I was able to sneak a couple of wrongly-numbered pages
by the hard-copy examiner using the trick. When it comes down to the
wire, you might do the same. 



Best of luck!





   

Pinpoint customers who are looking for what you sell. 
http://searchmarketing.yahoo.com/

Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

curtis osterhoudt wrote:



When I wrote my thesis, I was required to have page numbers on EVERY
page except the first couple. So I can't help you with a nice technical
hack. However, I did have to resort (for various reasons) to a very
low-tech kludge. If you're desperate for a just-good-enough solution,
you might try simply printing the page as-is, page number and all. Then
take a nice sharp knife blade or razor, and carefully scrape away the
ink. One of the professors in my department also swore that a
high-powered, pulsed infrared laser will blow the ink off the paper,
but not damage the paper itself (this is something I didn't try,
though). 


You're sure he wasn't suggesting aiming it at the twit that requires no 
page number on the first reference page?




Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

Lyx Physicst wrote:

Hi all, I am writing my thesis in Lyx 1.44(OS X).  I need to have all the
page numbering for the first pages of a new section(ie Table of Figures,
first page in chapter, etc) removed.  I have managed to remove them all,
except the first page of my bibliography.  I am using a bibtex generated
bibliography and I have no idea how to remove the page numbering.  I am
writing the paper in Report class.  Is there anyway to remove the page
numbering and have it start re-counting again on the 2nd page of the bib?


Turns out the document is in koma-book, and that apparently clobbers 
afterpage.  Inserting \setbibpreamble{\thispagestyle{empty}} in ERT 
before the page break above the bibliography did the trick for me.


/Paul



Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

Paul A. Rubin wrote:

Turns out the document is in koma-book, and that apparently clobbers 
afterpage.  Inserting \setbibpreamble{\thispagestyle{empty}} in ERT 
before the page break above the bibliography did the trick for me.




Spoke too soon.  This does indeed work with koma-book, but he's actually 
using report, which also seems to clobber afterpage.  I got this to work 
with report: \renewcommand{\bibname}{\thispagestyle{empty}Bibliography} 
in ERT before the page break leading to the bibliography.




Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Lyx Physicst

On 7/17/07, Paul A. Rubin [EMAIL PROTECTED] wrote:


Paul A. Rubin wrote:

 Turns out the document is in koma-book, and that apparently clobbers
 afterpage.  Inserting \setbibpreamble{\thispagestyle{empty}} in ERT
 before the page break above the bibliography did the trick for me.


Spoke too soon.  This does indeed work with koma-book, but he's actually
using report, which also seems to clobber afterpage.  I got this to work
with report: \renewcommand{\bibname}{\thispagestyle{empty}Bibliography}
in ERT before the page break leading to the bibliography.

That did it!!  Thank you very very much for all the help, good learning

experience...
Thanks again,
Charles


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Lyx Physicst

On 7/17/07, Charles de Miramon <[EMAIL PROTECTED]> wrote:


Lyx Physicst wrote:

> Hi all, I am writing my thesis in Lyx 1.44(OS X).  I need to have all
the
> page numbering for the first pages of a new section(ie Table of Figures,
> first page in chapter, etc) removed.  I have managed to remove them all,
> except the first page of my bibliography.  I am using a bibtex generated
> bibliography and I have no idea how to remove the page numbering.  I am
> writing the paper in Report class.  Is there anyway to remove the page
> numbering and have it start re-counting again on the 2nd page of the
bib?
> Thanks,
> charles

I guess inserting in ERT \thispagestyle{empty} just after the bibliography
inset should work. A cleaner but more complex solution would be to
redefine
the bibliography environment.




Hi, I tried to do that originally, but it doesnt seem to work.  That just
makes the last page of the bib. un-numbered, but not the first as I need..


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Todd Denniston

Lyx Physicst wrote:

On 7/17/07, Charles de Miramon <[EMAIL PROTECTED]> wrote:


Lyx Physicst wrote:

> Hi all, I am writing my thesis in Lyx 1.44(OS X).  I need to have all
the
> page numbering for the first pages of a new section(ie Table of 
Figures,
> first page in chapter, etc) removed.  I have managed to remove them 
all,
> except the first page of my bibliography.  I am using a bibtex 
generated

> bibliography and I have no idea how to remove the page numbering.  I am
> writing the paper in Report class.  Is there anyway to remove the page
> numbering and have it start re-counting again on the 2nd page of the
bib?
> Thanks,
> charles

I guess inserting in ERT \thispagestyle{empty} just after the 
bibliography

inset should work. A cleaner but more complex solution would be to
redefine
the bibliography environment.




Hi, I tried to do that originally, but it doesnt seem to work.  That just
makes the last page of the bib. un-numbered, but not the first as I need..



I am also seeing what you are, can't get the bib pages to be un-numbered, with 
out redefining stuff in the bib def.


however is the requirement that the pages be un-counted as far as the document 
length is concerned, or that they have no page count numbers at all?


if it is only that they not be counted for the overall length, you might do a 
work around something like:

ERT \pagenumbering{roman} %before bib
ERT \setcounter{page}{1} %before bib

ERT \pagenumbering{arabic} %after bib
ERT \setcounter{page}{1} %after bib

or after reading:
http://www.emerson.emory.edu/services/latex/latex_129.html
you could probably use something like:
ERT \pagestyle{empty} %before bib
ERT \pagestyle{plain} %after bib

Assuming plain is the style you have been using, the URL does not indicate if 
"fancy" is allowed.


--
Todd Denniston
Crane Division, Naval Surface Warfare Center (NSWC Crane)
Harnessing the Power of Technology for the Warfighter


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

Lyx Physicst wrote:



Sorry, let me clarify.  My thesis ends on page 85, so I would like the 
first

page of the bib to not have a page number(which would be 86) at the bottom,
and then the 2nd page to continue counting at 87 and so on.
 I tried to use the
ERT \pagestyle{empty} %before bib
ERT \pagestyle{plain} %after bib
 method, but that doesnt remove the page number of the first page of the
bib...



Try the following.  Put \usepackage{afterpage} in your preamble.  (This 
presumes you have the tools package, but I think that's a standard part 
of all LaTeX distros.)  At the end of the text on what will be page 85, 
put \afterpage{\thispagestyle{empty}} in ERT just before the page break. 
 I think that will do it for you.


/Paul



Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Lyx Physicst

On 7/17/07, Paul A. Rubin <[EMAIL PROTECTED]> wrote:


Lyx Physicst wrote:

>
> Sorry, let me clarify.  My thesis ends on page 85, so I would like the
> first
> page of the bib to not have a page number(which would be 86) at the
bottom,
> and then the 2nd page to continue counting at 87 and so on.
>  I tried to use the
> ERT \pagestyle{empty} %before bib
> ERT \pagestyle{plain} %after bib
>  method, but that doesnt remove the page number of the first page of the
> bib...
>

Try the following.  Put \usepackage{afterpage} in your preamble.  (This
presumes you have the tools package, but I think that's a standard part
of all LaTeX distros.)  At the end of the text on what will be page 85,
put \afterpage{\thispagestyle{empty}} in ERT just before the page break.
  I think that will do it for you.

/Paul



Hi paul,  I tried that but it still isnt working...  I didnt get any errors
so I assume I have the package.  Is there anything else that I can try?
Another possibility that I wouldnt mind is to make a separate file somehow
that has my bib in it and removing the first page there.  I am turning in a
hard copy, not a digital one, so any way to get that first page of my bib
un-numbered will work...
Thanks again for all the help


Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread curtis osterhoudt
 - Original Message 
From: Lyx Physicst <[EMAIL PROTECTED]>
To: Paul A. Rubin <[EMAIL PROTECTED]>
Cc: lyx-users@lists.lyx.org
Sent: Tuesday, July 17, 2007 9:10:36 AM
Subject: Re: Removing first page number on bibtex generated bibliography

On 7/17/07, Paul A. Rubin <[EMAIL PROTECTED]> wrote:
>
> Lyx Physicst wrote:
>
> >
> > Sorry, let me clarify.  My thesis ends on page 85, so I would like the
> > first
> > page of the bib to not have a page number(which would be 86) at the
> bottom,
> > and then the 2nd page to continue counting at 87 and so on.
> >  I tried to use the
> > ERT \pagestyle{empty} %before bib
> > ERT \pagestyle{plain} %after bib
> >  method, but that doesnt remove the page number of the first page of the
> > bib...
> >
>
> Try the following.  Put \usepackage{afterpage} in your preamble.  (This
> presumes you have the tools package, but I think that's a standard part
> of all LaTeX distros.)  At the end of the text on what will be page 85,
> put \afterpage{\thispagestyle{empty}} in ERT just before the page break.
>   I think that will do it for you.
>
> /Paul


Hi paul,  I tried that but it still isnt working...  I didnt get any errors
so I assume I have the package.  Is there anything else that I can try?
Another possibility that I wouldnt mind is to make a separate file somehow
that has my bib in it and removing the first page there.  I am turning in a
hard copy, not a digital one, so any way to get that first page of my bib
un-numbered will work...
Thanks again for all the help



 original message above =



When I wrote my thesis, I was required to have page numbers on EVERY
page except the first couple. So I can't help you with a nice technical
hack. However, I did have to resort (for various reasons) to a very
low-tech kludge. If you're desperate for a just-good-enough solution,
you might try simply printing the page as-is, page number and all. Then
take a nice sharp knife blade or razor, and carefully scrape away the
ink. One of the professors in my department also swore that a
high-powered, pulsed infrared laser will blow the ink off the paper,
but not damage the paper itself (this is something I didn't try,
though). 



In any case, I was able to sneak a couple of wrongly-numbered pages
by the hard-copy examiner using the trick. When it comes down to the
wire, you might do the same. 



Best of luck!





   

Pinpoint customers who are looking for what you sell. 
http://searchmarketing.yahoo.com/

Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

curtis osterhoudt wrote:



When I wrote my thesis, I was required to have page numbers on EVERY
page except the first couple. So I can't help you with a nice technical
hack. However, I did have to resort (for various reasons) to a very
low-tech kludge. If you're desperate for a just-good-enough solution,
you might try simply printing the page as-is, page number and all. Then
take a nice sharp knife blade or razor, and carefully scrape away the
ink. One of the professors in my department also swore that a
high-powered, pulsed infrared laser will blow the ink off the paper,
but not damage the paper itself (this is something I didn't try,
though). 


You're sure he wasn't suggesting aiming it at the twit that requires no 
page number on the first reference page?




Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

Lyx Physicst wrote:

Hi all, I am writing my thesis in Lyx 1.44(OS X).  I need to have all the
page numbering for the first pages of a new section(ie Table of Figures,
first page in chapter, etc) removed.  I have managed to remove them all,
except the first page of my bibliography.  I am using a bibtex generated
bibliography and I have no idea how to remove the page numbering.  I am
writing the paper in Report class.  Is there anyway to remove the page
numbering and have it start re-counting again on the 2nd page of the bib?


Turns out the document is in koma-book, and that apparently clobbers 
afterpage.  Inserting \setbibpreamble{\thispagestyle{empty}} in ERT 
before the page break above the bibliography did the trick for me.


/Paul



Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Paul A. Rubin

Paul A. Rubin wrote:

Turns out the document is in koma-book, and that apparently clobbers 
afterpage.  Inserting \setbibpreamble{\thispagestyle{empty}} in ERT 
before the page break above the bibliography did the trick for me.




Spoke too soon.  This does indeed work with koma-book, but he's actually 
using report, which also seems to clobber afterpage.  I got this to work 
with report: \renewcommand{\bibname}{\thispagestyle{empty}Bibliography} 
in ERT before the page break leading to the bibliography.




Re: Removing first page number on bibtex generated bibliography

2007-07-17 Thread Lyx Physicst

On 7/17/07, Paul A. Rubin <[EMAIL PROTECTED]> wrote:


Paul A. Rubin wrote:

> Turns out the document is in koma-book, and that apparently clobbers
> afterpage.  Inserting \setbibpreamble{\thispagestyle{empty}} in ERT
> before the page break above the bibliography did the trick for me.
>

Spoke too soon.  This does indeed work with koma-book, but he's actually
using report, which also seems to clobber afterpage.  I got this to work
with report: \renewcommand{\bibname}{\thispagestyle{empty}Bibliography}
in ERT before the page break leading to the bibliography.

That did it!!  Thank you very very much for all the help, good learning

experience...
Thanks again,
Charles