Falsche Kopfzeile für List of Abbreviations
Hallo Zusammen,
Ich habe folgendes Problem:
In meinem Dokument funktionieren alle Kopfzeilen, bis die auf des Abkürzungsverzeichnis. Hier steht die Kopfzeile: List of Tables.
Hat jemand eine Idee, wie ich das lösen kann?
%Dokumentenklasse
\documentclass[a4paper,12pt]{scrreprt}
\usepackage{geometry}
\geometry{top=2.5cm, left=2.5cm, right=2cm, bottom=3cm}
%\usepackage[left= 2.5cm,right = 2cm, bottom = 4 cm]{geometry} %top 4cm?
%Dokumenteninformationen
\usepackage[
pdftitle={Abschlussarbeit},
pdfsubject= {},
pdfauthor= {},
%hidelinks
]{hyperref}
%Standard Packages
\usepackage[utf8]{inputenc}
\usepackage[USenglish]{babel}
\usepackage[T1]{fontenc}
\usepackage{graphicx, subfig}
\graphicspath{{img/}}
%\usepackage{fancyhdr}
\usepackage{lmodern}
\usepackage{color}
\usepackage{transparent}
%Package für Kopfzeile
\usepackage[automark, headsepline, plainheadsepline]{scrlayer-scrpage}
%\usepackage{acronym}
\usepackage[withpage]{acronym}
%\usepackage[acronym]{glossaries}
\usepackage{glossaries}
\usepackage{tabularx}
%\usepackage[absolute]{textpos}
\usepackage{booktabs}
%\usepackage{nonumberlist, toc} %keine Seitenzahlen anzeigen, Einträge Inhaltsverzeichnis
\makeglossaries
% zusätzliche Schriftzeichen der American Mathematical Society
\usepackage{amsfonts}
\usepackage{amsmath}
Kopf und Fußzeile
\clearpairofpagestyles
\ihead{\headmark}
\cfoot{\thepage}
\renewcommand{\chapterpagestyle}{scrheadings}
\usepackage{blindtext}
\automark[section] {section}
\ihead{\headmark}
% ============= Package Einstellungen & Sonstiges =============
%Besondere Trennungen
\hyphenation{De-zi-mal-tren-nung}
% ============= Dokumentbeginn =============
\begin{document}
%Seiten ohne Kopf- und Fußzeile sowie Seitenzahl
\pagestyle{empty}
\include{01_titel}
% Kopf-/Fußzeile
\pagestyle{scrheadings}
\cleardoublepage
\cfoot{}
\ihead{Declaration of Academic Honesty}
\include{02_declaration of academic honesty}}
\ihead{Confidentiality notice}
\include{03_blocking note}
\ihead{Gender disclaimer}
\include{04_gender disclaimer}
\ihead{Abstract}
\include{05_abstract}
\clearpairofpagestyles
\ihead{\headmark}
\automark{chapter}
\renewcommand{\chapterpagestyle}{scrheadings}
\automark[section] {section}
\ihead{\headmark}
\pagestyle{scrheadings}
\renewcommand\contentsname{Table of Contents}
\cleardoublepage
\tableofcontents
\cfoot{}
\setcounter{tocdepth} {5}
\cleardoublepage
\listoffigures
\addcontentsline {toc} {section} {List of Figures}
\pagenumbering{Roman}
\cfoot{\thepage}
\cleardoublepage
\listoftables
\addcontentsline {toc} {section} {List of Tables}
%Alle Abkürzungen hier
\cleardoublepage
\chapter*{List of Abbreviations}
\begin{acronym}[EuGH]
\acro{eugh}[EuGH]{Europäischer Gerichtshof}
\acro{eu}[EU]{Europäische Union}
\end{acronym}
\addcontentsline {toc} {section} {List of Abbreviations}
\clearpairofpagestyles
\ihead{\headmark}
\automark{chapter}
\renewcommand{\chapterpagestyle}{scrheadings}
\automark[section] {section}
\ihead{\headmark}
\cfoot{\thepage}
\pagestyle{scrheadings}
%\chapter*{Glossary}
%Alles Glossary entries hier
\newglossaryentry{fondue}{
name=Fondue,
description={is a Swiss dish consisting of melted cheese}
}
\printglossary
\addcontentsline {toc} {section} {Glossary}
\cleardoublepage
end{document} end{document}