ich möchte, dass in meinem Inhaltsverzeichnis und Literaturverzeichnis eine Kopfzeile angezeigt wird, leider bekomme ich das nicht hin. Auf der zweiten Seite des Literaturverzeichnisses wird eine Kopfzeile angezeigt. Kann mir bitte jemand helfen?
Seite 2 Literaturverzeichnis:

\documentclass{scrbook}
\makeatletter
...
\makeatother
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{textcomp}
\usepackage[automark]{scrpage2}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathrsfs}
\usepackage{fhacmb}
\KOMAoptions{
parskip=true,
fontsize=12,
toc=flat,
twoside=false,
numbers=nodotatend,
%toc=bibliography,
toc=listof,
toc=index,
}
\usepackage{chngcntr}
\counterwithout{figure}{section}
\renewcommand{\thefigure}{\thechapter-\arabic{figure}}
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\usepackage{tikz-cd}
%----------------------------------------------------------------------------
%----------------------------Biblatex-Settings-----------------------
%----------------------------------------------------------------------
\usepackage[style=alphabetic,]{biblatex}
\usepackage{csquotes}
\addbibresource{babib.bib}
\DeclareFieldFormat{title}{#1\isdot}
\DeclareFieldFormat{url}{\space(\url{#1})}
\renewcommand*{\labelnamepunct}{\addcolon\addspace}
\renewcommand*{\finentrypunct}{\addspace\newline}
\renewcommand*{\chapterheadstartvskip}{\vspace*{0\baselineskip}}
\renewcommand*{\chapterheadendvskip}{\vspace*{1\baselineskip}}
\RedeclareSectionCommands[
beforeskip=-.5\baselineskip,
afterskip=.25\baselineskip
]{section,subsection,subsubsection}
\addtokomafont{chapter}{\Large}
\addtokomafont{section}{\large}
\addtokomafont{subsection}{\large}
\renewcommand*{\sectionformat}{\makebox[12mm][l]{\thesection}}
\renewcommand*{\chapterformat}{\makebox[12mm][l]{\thechapter}}
\renewcommand*{\subsectionformat}{\makebox[12mm][l]{\thesubsection}}
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
\usepackage[hidelinks]{hyperref}
\usepackage{geometry}
\geometry{a4paper, top=20mm, left=30mm, right=20mm, bottom=25mm}
\linespread{1.25}
% ----------------------------------------------------------------------------
% ------------------------------Angaben für Titelseite------------------------
% ----------------------------------------------------------------------------
\input{titelangaben}
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
\begin{document}
\fhacmbtitle{\includegraphics[height=4cm]{fh_logo}}{5pt}{5pt}
% ----------------------------------------------------------------------------
% ------------------------------Eerklärung------------------------------------
% ----------------------------------------------------------------------------
\input{erklaerung}
% ----------------------------------------------------------------------------
% ------------------------------Kurzfassung-----------------------------------
% ----------------------------------------------------------------------------
\input{Kurzfassung}
% ----------------------------------------------------------------------------
% ------------------------------Inhaltsverzeichnis----------------------------
% ----------------------------------------------------------------------------
\tableofcontents
\thispagestyle{plain}
\pagestyle{scrheadings}
\renewcommand{\chaptermark}[1]{\markboth{\thechapter\hspace{1cm}#1}{}}
\chead{}
\ihead{\leftmark}
\renewcommand{\headfont}{\bfseries}
\setheadsepline{0.5pt}
% ----------------------------------------------------------------------------
% -----------------------------TEXT-------------------------------------------
% ----------------------------------------------------------------------------
% Gliederung und Text:
\input{Kapitel1}
\input{Kapitel2}
%\input{Kapitel3}
%\input{Kapitel4}
%\input{Kapitel5}
%\input{Kapitel6}
%\input{Kapitel7}
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
\pagestyle{plain}
\renewcommand{\chaptermark}[1]{\markboth{\thechapter\hspace{1cm}#1}{}}
\ihead{\hspace{0pt}\rightmark}
\chead{}
\renewcommand{\headfont}{\bfseries}
\setheadsepline{0.5pt}
\printbibliography[title=Literaturverzeichnis]
\addcontentsline{toc}{chapter}{Literaturverzeichnis}
\thispagestyle{scrheadings}
\listoffigures
\thispagestyle{scrheadings}
\listoftables
\thispagestyle{scrheadings}
\appendix
\thispagestyle{scrheadings}
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
% ----------------------------------------------------------------------------
\end{document}
