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
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
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

Code, edit and compile here:
\clearpage
\chapter*{Bibliography}
\markboth{\MakeUppercase{Bibliography}}{}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
for the twoside class option

or

Code: Select all

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

Mathias
Post Reply