Re: Page numbers for the bibliography in book(AMS) document class.

2012-03-02 Thread Richard Heck

On 03/01/2012 03:56 AM, UD wrote:
On the first page of the chapter the command: 
\thispagestyle{myheadings} puts the page number in the upper right 
corner, but at the beginning of the bibliography that command does 
nothing


It probably comes too early or too late. If you put it before the 
bibliography command, it is on the previous page. If after it, it's 
probably on a later page.


I think you probably have to modify the chapter* environment to get this 
to work. This is what I find in amsbook.cls:


\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{plain}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

So I'd try:

\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{myheadings}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

in the preamble. This will take care of all the chapter pages at once.

If you only want to modify the bibliography page, then the easiest way 
is probably to modify the declaration of the thebibliography environment.


Richard



Re: Page numbers for the bibliography in book(AMS) document class.

2012-03-02 Thread UD
Thanks SO MUCH, Richard-- your little tweak of the chapter* environment 
did the trick!

Yours,
Ehud Kaplan

On 03/02/2012 12:35 PM, Richard Heck wrote:

On 03/01/2012 03:56 AM, UD wrote:
On the first page of the chapter the command: 
\thispagestyle{myheadings} puts the page number in the upper right 
corner, but at the beginning of the bibliography that command does 
nothing


It probably comes too early or too late. If you put it before the 
bibliography command, it is on the previous page. If after it, it's 
probably on a later page.


I think you probably have to modify the chapter* environment to get 
this to work. This is what I find in amsbook.cls:


\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{plain}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

So I'd try:

\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{myheadings}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

in the preamble. This will take care of all the chapter pages at once.

If you only want to modify the bibliography page, then the easiest way 
is probably to modify the declaration of the thebibliography environment.


Richard



-


Re: Page numbers for the bibliography in book(AMS) document class.

2012-03-02 Thread Richard Heck

On 03/01/2012 03:56 AM, UD wrote:
On the first page of the chapter the command: 
\thispagestyle{myheadings} puts the page number in the upper right 
corner, but at the beginning of the bibliography that command does 
nothing


It probably comes too early or too late. If you put it before the 
bibliography command, it is on the previous page. If after it, it's 
probably on a later page.


I think you probably have to modify the chapter* environment to get this 
to work. This is what I find in amsbook.cls:


\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{plain}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

So I'd try:

\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{myheadings}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

in the preamble. This will take care of all the chapter pages at once.

If you only want to modify the bibliography page, then the easiest way 
is probably to modify the declaration of the thebibliography environment.


Richard



Re: Page numbers for the bibliography in book(AMS) document class.

2012-03-02 Thread UD
Thanks SO MUCH, Richard-- your little tweak of the chapter* environment 
did the trick!

Yours,
Ehud Kaplan

On 03/02/2012 12:35 PM, Richard Heck wrote:

On 03/01/2012 03:56 AM, UD wrote:
On the first page of the chapter the command: 
\thispagestyle{myheadings} puts the page number in the upper right 
corner, but at the beginning of the bibliography that command does 
nothing


It probably comes too early or too late. If you put it before the 
bibliography command, it is on the previous page. If after it, it's 
probably on a later page.


I think you probably have to modify the chapter* environment to get 
this to work. This is what I find in amsbook.cls:


\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{plain}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

So I'd try:

\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{myheadings}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

in the preamble. This will take care of all the chapter pages at once.

If you only want to modify the bibliography page, then the easiest way 
is probably to modify the declaration of the thebibliography environment.


Richard



-


Re: Page numbers for the bibliography in book(AMS) document class.

2012-03-02 Thread Richard Heck

On 03/01/2012 03:56 AM, UD wrote:
On the first page of the chapter the command: 
\thispagestyle{myheadings} puts the page number in the upper right 
corner, but at the beginning of the bibliography that command does 
nothing


It probably comes too early or too late. If you put it before the 
bibliography command, it is on the previous page. If after it, it's 
probably on a later page.


I think you probably have to modify the chapter* environment to get this 
to work. This is what I find in amsbook.cls:


\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{plain}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

So I'd try:

\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{myheadings}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

in the preamble. This will take care of all the chapter pages at once.

If you only want to modify the bibliography page, then the easiest way 
is probably to modify the declaration of the thebibliography environment.


Richard



Re: Page numbers for the bibliography in book(AMS) document class.

2012-03-02 Thread UD
Thanks SO MUCH, Richard-- your little tweak of the chapter* environment 
did the trick!

Yours,
Ehud Kaplan

On 03/02/2012 12:35 PM, Richard Heck wrote:

On 03/01/2012 03:56 AM, UD wrote:
On the first page of the chapter the command: 
\thispagestyle{myheadings} puts the page number in the upper right 
corner, but at the beginning of the bibliography that command does 
nothing


It probably comes too early or too late. If you put it before the 
bibliography command, it is on the previous page. If after it, it's 
probably on a later page.


I think you probably have to modify the chapter* environment to get 
this to work. This is what I find in amsbook.cls:


\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{plain}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

So I'd try:

\def\chapter{%
  \if@openright\cleardoublepage\else\clearpage\fi
  \thispagestyle{myheadings}\global\@topnum\z@
  \@afterindenttrue \secdef\@chapter\@schapter}

in the preamble. This will take care of all the chapter pages at once.

If you only want to modify the bibliography page, then the easiest way 
is probably to modify the declaration of the thebibliography environment.


Richard



-


Re: Page numbers for the bibliography in book(AMS) document class.

2012-03-01 Thread UD
On the first page of the chapter the command: \thispagestyle{myheadings} 
puts the page number in the upper right corner, but at the beginning of 
the bibliography that command does nothing


On 02/29/2012 01:41 PM, Richard Heck wrote:

On 02/28/2012 05:18 PM, UD wrote:
Here is a short example.  Subsequent pages of the bibliography have 
their page number in the upper right corner-- only the first page has 
it at the bottom.


Do chapters in AMS books generally put the page number at the bottom 
on the first page of the chapter? It is common to use a different page 
style for the first page of a chapter, and the bibliography is 
generated, I will guess, as a \chapter*. (That's what most books do.)


Richard



--
Ehud Kaplan, Ph.D.
Jules and Doris Stein /Research to Prevent Blindness/ Professor
*Director*, The laboratory of Visual  Computational Neuroscience
*Director*, Center for Excellence in Computational  Systems Neuroscience
/Friedman Brain Institute/
Departments of Neuroscience, Ophthalmology, Structural  Chemical Biology,
The Mount Sinai School of Medicine
One Gustave Levy Place,
NY, NY, 10029


Re: Page numbers for the bibliography in book(AMS) document class.

2012-03-01 Thread UD
On the first page of the chapter the command: \thispagestyle{myheadings} 
puts the page number in the upper right corner, but at the beginning of 
the bibliography that command does nothing


On 02/29/2012 01:41 PM, Richard Heck wrote:

On 02/28/2012 05:18 PM, UD wrote:
Here is a short example.  Subsequent pages of the bibliography have 
their page number in the upper right corner-- only the first page has 
it at the bottom.


Do chapters in AMS books generally put the page number at the bottom 
on the first page of the chapter? It is common to use a different page 
style for the first page of a chapter, and the bibliography is 
generated, I will guess, as a \chapter*. (That's what most books do.)


Richard



--
Ehud Kaplan, Ph.D.
Jules and Doris Stein /Research to Prevent Blindness/ Professor
*Director*, The laboratory of Visual  Computational Neuroscience
*Director*, Center for Excellence in Computational  Systems Neuroscience
/Friedman Brain Institute/
Departments of Neuroscience, Ophthalmology, Structural  Chemical Biology,
The Mount Sinai School of Medicine
One Gustave Levy Place,
NY, NY, 10029


Re: Page numbers for the bibliography in book(AMS) document class.

2012-03-01 Thread UD
On the first page of the chapter the command: \thispagestyle{myheadings} 
puts the page number in the upper right corner, but at the beginning of 
the bibliography that command does nothing


On 02/29/2012 01:41 PM, Richard Heck wrote:

On 02/28/2012 05:18 PM, UD wrote:
Here is a short example.  Subsequent pages of the bibliography have 
their page number in the upper right corner-- only the first page has 
it at the bottom.


Do chapters in AMS books generally put the page number at the bottom 
on the first page of the chapter? It is common to use a different page 
style for the first page of a chapter, and the bibliography is 
generated, I will guess, as a \chapter*. (That's what most books do.)


Richard



--
Ehud Kaplan, Ph.D.
Jules and Doris Stein /Research to Prevent Blindness/ Professor
*Director*, The laboratory of Visual & Computational Neuroscience
*Director*, Center for Excellence in Computational & Systems Neuroscience
/Friedman Brain Institute/
Departments of Neuroscience, Ophthalmology, Structural & Chemical Biology,
The Mount Sinai School of Medicine
One Gustave Levy Place,
NY, NY, 10029


Re: Page numbers for the bibliography in book(AMS) document class.

2012-02-29 Thread Richard Heck

On 02/28/2012 05:18 PM, UD wrote:
Here is a short example.  Subsequent pages of the bibliography have 
their page number in the upper right corner-- only the first page has 
it at the bottom.


Do chapters in AMS books generally put the page number at the bottom on 
the first page of the chapter? It is common to use a different page 
style for the first page of a chapter, and the bibliography is 
generated, I will guess, as a \chapter*. (That's what most books do.)


Richard



Re: Page numbers for the bibliography in book(AMS) document class.

2012-02-29 Thread Richard Heck

On 02/28/2012 05:18 PM, UD wrote:
Here is a short example.  Subsequent pages of the bibliography have 
their page number in the upper right corner-- only the first page has 
it at the bottom.


Do chapters in AMS books generally put the page number at the bottom on 
the first page of the chapter? It is common to use a different page 
style for the first page of a chapter, and the bibliography is 
generated, I will guess, as a \chapter*. (That's what most books do.)


Richard



Re: Page numbers for the bibliography in book(AMS) document class.

2012-02-29 Thread Richard Heck

On 02/28/2012 05:18 PM, UD wrote:
Here is a short example.  Subsequent pages of the bibliography have 
their page number in the upper right corner-- only the first page has 
it at the bottom.


Do chapters in AMS books generally put the page number at the bottom on 
the first page of the chapter? It is common to use a different page 
style for the first page of a chapter, and the bibliography is 
generated, I will guess, as a \chapter*. (That's what most books do.)


Richard



Page numbers for the bibliography in book(AMS) document class.

2012-02-28 Thread UD

I am using the book(AMS) document class to write a chapter for a book.
The first page of the Bibliography has its page number at
the bottom of the page, rather than in the upper right corner, where all 
the other pages have their numbers.

Using \thispagestyle{headings} did not fix it.
Any ideas?
Thanks,
--
Ehud Kaplan,


Re: Page numbers for the bibliography in book(AMS) document class.

2012-02-28 Thread Richard Heck

On 02/28/2012 02:30 PM, UD wrote:

I am using the book(AMS) document class to write a chapter for a book.
The first page of the Bibliography has its page number at
the bottom of the page, rather than in the upper right corner, where 
all the other pages have their numbers.

Using \thispagestyle{headings} did not fix it.


Can you post a small example file?

Richard



Page numbers for the bibliography in book(AMS) document class.

2012-02-28 Thread UD

I am using the book(AMS) document class to write a chapter for a book.
The first page of the Bibliography has its page number at
the bottom of the page, rather than in the upper right corner, where all 
the other pages have their numbers.

Using \thispagestyle{headings} did not fix it.
Any ideas?
Thanks,
--
Ehud Kaplan,


Re: Page numbers for the bibliography in book(AMS) document class.

2012-02-28 Thread Richard Heck

On 02/28/2012 02:30 PM, UD wrote:

I am using the book(AMS) document class to write a chapter for a book.
The first page of the Bibliography has its page number at
the bottom of the page, rather than in the upper right corner, where 
all the other pages have their numbers.

Using \thispagestyle{headings} did not fix it.


Can you post a small example file?

Richard



Page numbers for the bibliography in book(AMS) document class.

2012-02-28 Thread UD

I am using the book(AMS) document class to write a chapter for a book.
The first page of the Bibliography has its page number at
the bottom of the page, rather than in the upper right corner, where all 
the other pages have their numbers.

Using \thispagestyle{headings} did not fix it.
Any ideas?
Thanks,
--
Ehud Kaplan,


Re: Page numbers for the bibliography in book(AMS) document class.

2012-02-28 Thread Richard Heck

On 02/28/2012 02:30 PM, UD wrote:

I am using the book(AMS) document class to write a chapter for a book.
The first page of the Bibliography has its page number at
the bottom of the page, rather than in the upper right corner, where 
all the other pages have their numbers.

Using \thispagestyle{headings} did not fix it.


Can you post a small example file?

Richard