Theses, Books, Title pagesBibliography: Running header from previous chapter/section

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Bibliography: Running header from previous chapter/section

Post by templateuser »

In a longer text, with a longer bibliography, the bibliography inherits the running header lines from the previous chapter/section (instead of displaying "Bibliography"), which appears to be due to the \chapter* usage. However, I would not want to change this to \chapter to avoid the numbering and maintain the nice appearance in the TOC. So: Is there a fix for that? (I assume the same applies to the Index, though my index is still only one page, therefore I can't check)

mharz

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Bibliography: Running header from previous chapter/section

Post by Vel »

Hey,

The easiest and dirtiest fix for this is to simply remove headers once the bibliography/index starts by inserting a \pagestyle{empty} just before \chapter*{Bibliography}. Of course, if you want the headers but just want them to say Bibliography/Index this will require a bit more digging. Let me know if you can't find the solution to this and I'll look around a bit more.

Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Bibliography: Running header from previous chapter/section

Post by templateuser »

Or you may want to try:

Code: Select all

\clearpage
\chapter*{Bibliography}
\markboth{\MakeUppercase{Bibliography}}{}
for the twoside class option

or

Code: Select all

\markright{\MakeUppercase{Bibliography}}
for the oneside class option.

Mathias
Post Reply