Page Layoutre-numbering bibliography section

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
dkaplan
Posts: 6
Joined: Tue May 19, 2009 4:18 pm

re-numbering bibliography section

Post by dkaplan »

Greetings all,
I am writing a grant proposal that requires that the bibliography be a separate document with page number starting over again. At the end of the document, I invoke the bibliography with \bibliography{filename}. Everything works fine, but I would like to have the actual bibliography start with new page numbers so that I can save it as a separate file. I hope that made sense.

Thanks in advance,

David

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
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

re-numbering bibliography section

Post by localghost »

Just reset the page number right before your bibliography starts.

Code: Select all

\setcounter{page}{1}

Best regards and welcome to the board
Thorsten
dkaplan
Posts: 6
Joined: Tue May 19, 2009 4:18 pm

Re: re-numbering bibliography section

Post by dkaplan »

Hi. Thanks for the quick response. When add that command as follows

\setcounter{page}{1}
\bibliography{kaplan}
\end{document}

it actually numbers the last page of text as page 1 and starts the bibliography on page 2.

Thoughts.

Thanks again in advance.

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

Re: re-numbering bibliography section

Post by Stefan Kottwitz »

Hi David,

try \cleardoublepage oder \clearpage before changing the page counter.

Stefan
LaTeX.org admin
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

re-numbering bibliography section

Post by localghost »

A simple \newpage will do also.
dkaplan
Posts: 6
Joined: Tue May 19, 2009 4:18 pm

Re: re-numbering bibliography section - nevermind

Post by dkaplan »

Hi. Nevermind previous post. I got it to work by having \newpage before \setcounter.

Thanks again.

David
Post Reply