Page LayoutHeaders in bibliography page

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
mgarruda
Posts: 5
Joined: Thu Mar 19, 2009 5:18 am

Headers in bibliography page

Post by mgarruda »

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?

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

Headers in bibliography page

Post by localghost »

Perhaps the \markboth command can be useful in this case.


Best regards
Thorsten
mgarruda
Posts: 5
Joined: Thu Mar 19, 2009 5:18 am

Headers in bibliography page

Post by mgarruda »

I'm not real sure how I would use that in this instance.

Currently, my bibliography is created by

Code: Select all

\bibliography{deriv}{}
\bibliographystyle{unsrt}
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?
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Headers in bibliography page

Post by localghost »

mgarruda wrote:I'm not real sure how I would use that in this instance. [...]
Very simple. Consider the following basic example. With some tweaks by means of fancyhdr or titlesec it will look nicer.

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}
The last \blindtext[7] command represents a replacement for a multiple page bibliography with the desired header.
Post Reply