Page Layout ⇒ re-numbering bibliography section
re-numbering bibliography section
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
re-numbering bibliography section
Code: Select all
\setcounter{page}{1}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: re-numbering bibliography section
\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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: re-numbering bibliography section
try \cleardoublepage oder \clearpage before changing the page counter.
Stefan
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
re-numbering bibliography section
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: re-numbering bibliography section - nevermind
Thanks again.
David