Page Layout ⇒ Headers in bibliography page
Headers in bibliography page
My current bibliography takes up three pages. The first page contains the title "References". I need the second page to have the header "References (continued)". Any suggestions?
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Headers in bibliography page
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Headers in bibliography page
I'm not real sure how I would use that in this instance.
Currently, my bibliography is created by As such, I fear I may need to edit the bibliography environment elsewhere.
Any help on making a .bst file to accomplish adding page headers?
Currently, my bibliography is created by
Code: Select all
\bibliography{deriv}{}
\bibliographystyle{unsrt}
Any help on making a .bst file to accomplish adding page headers?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Headers in bibliography page
Very simple. Consider the following basic example. With some tweaks by means of fancyhdr or titlesec it will look nicer.mgarruda wrote:I'm not real sure how I would use that in this instance. [...]
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage{blindtext}
\pagestyle{headings}
\begin{document}
\Blinddocument
\nocite{*}
\newpage
\bibliographystyle{unsrt}
\bibliography{deriv}
\markboth{\MakeUppercase{\refname\ (continued)}}{\MakeUppercase{\refname\ (continued)}}
\blindtext[7]
\end{document}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10