scrlayer-scrpage: Kopfzeile bzw. Seitenzahl auf bestimmten Seiten löschen
Hallo zusammen,
ich würde gern in meinem LaTeX-Dokument (Abschlussarbeit) die Kopfzeile auf bestimmten Seiten löschen (Abstract, Inhaltsverzeichnis etc.). Hier ein Minimalbeispiel meines Codes. Dort ist noch kein Befehl vorhanden, der die Kopfzeile auf bestimmten Seiten löscht.
\documentclass[11pt, parskip=half]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage [scaled=0.95]{helvet}
\usepackage[utf8]{inputenc}
\usepackage[babel=true, german=quotes, french=guillemets, threshold=30, thresholdtype=
words]{csquotes}
\usepackage[style=apa,backend=biber,language=ngerman]{biblatex}
\DeclareLanguageMapping{ngerman}{ngerman-apa}
\DeclareFieldFormat{apacase}{#1}
\bibliography{quellen}
\usepackage[french, american, ngerman]{babel}
\selectlanguage{ngerman}
\usepackage{paralist}
\newcommand*{\mcite}[1]{\citeauthor{#1} (\citeyear{#1})}
\usepackage{graphicx}
\graphicspath{ {Bilder/} }
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage[onehalfspacing]{setspace}
\expandafter\def\expandafter\quote\expandafter{\quote\singlespacing} Blockzitaten
\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5}
\renewcommand*\chapterheadstartvskip{\vspace*{-\topskip}}
\renewcommand*\chapterheadendvskip{%
\vspace*{1\baselineskip plus .1\baselineskip minus .167\baselineskip}}
\usepackage[automark, headsepline, autooneside=false]{scrlayer-scrpage}
\pagestyle{scrheadings}
\automark{chapter}
\automark*{section}
\automark*{subsection}
\automark*{subsubsection}
\ihead{\headmark}
\ohead[\pagemark]{\pagemark}
\chead{}
\cfoot[]{}
\renewcommand*\chapterpagestyle{scrheadings}
\RedeclareSectionCommands[
beforeskip=-.5\baselineskip,
afterskip=.001\baselineskip
]{section,subsection,subsubsection}
\RedeclareSectionCommands[
beforeskip=.5\baselineskip,
afterskip=-1em]{paragraph,subparagraph}
\title{
{Thesis Title}\\
{\large Institution Name}\\
{\includegraphics[scale=0.25]{beispiel.jpg}}
}
\author{Author Name}
\date{Day Month Year}
\begin{document}
\maketitle
\chapter*{Abstract}
Abstract goes here
\chapter*{Widmung}
To mum and dad
\chapter*{Eidesstattliche Versicherung}
I declare that..
\chapter*{Dank}
I want to thank...
\tableofcontents
\chapter{Einleitung}
\input{Kapitel/Einleitung}
\part{Theorie}
\chapter{Theoretischer Hintergrund}
\input{Kapitel/Theorie}
\chapter{chaptera}
\input{Kapitel/chaptera}
\chapter{chapterb}
\input{Kapitel/chapterb}
\chapter{Fazit}
\input{Kapitel/Fazit}
\chapter{Literaturverzeichnis}
\input{Kapitel/Literatur}
\appendix
\chapter{Anhang}
\input{Kapitel/Anhang}
\end{document}
Vielen Dank für eure Hilfe!