Chapter in Kopfzeile
-
basti-fantasti-48
- Forum-Century

- Beiträge: 214
- Registriert: So 4. Apr 2021, 14:27
Chapter in Kopfzeile
Moin, ich möchte ein Chapter nicht ins Inhaltsverzeichnis, daher habe ich \chapter*(xxx) geschrieben. Allerdings habe ich in meiner Kopfzeile immer das Chapter stehen. Bei der Seite mit dem Chapter xxx ist in der Kopfzeile der Name des Chapters davor. Wie löse ich das?
-
ich meine ja nur
Re: Chapter in Kopfzeile
Ohne Minimalbeispiel würde ich schlicht sagen: Such dir etwas passendes aus:
\documentclass[headings=optiontotoc]{scrbook}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\chapter[]{Kapitel ohne Inhaltsverzeichniseintrag}
\Blindtext[10]
\addchap[]{Kapitel ohne Nummer und Inhaltsverzeichniseintrag}
\Blindtext[10]
\chapter{Kapitel mit Inhaltsverzeichniseintrag}
\Blindtext[10]
\addchap{Kapitel ohne Nummer aber mit Inhaltsverzeichniseintrag}
\Blindtext[10]
\addchap*{Kapitel ohne alles und ohne Kopfzeile}
\Blindtext[10]
\end{document}