I have the following title page:
\documentclass[a4paper,twoside,12pt,chapterprefix=false]{scrbook}
\begin{document}
\begin{titlepage}
\thispagestyle{empty}
\fancypagestyle{empty}{
\lhead{\includegraphics[height=1.5cm]{images/logo_black}}
\renewcommand{\headrulewidth}{0.0pt}
\rhead{\vspace*{-0.2cm}\includegraphics[height=1.4cm]{images/logo_black_blue.jpg}}
\fancyfoot{}
}
\vspace*{2cm}
\begin{center}
\Huge{\textbf{Title of Thesis}\\}
\large{Master Thesis\\[0.8cm]}
\LARGE{My Name\\}
\normalsize{Institute \\ My mail address}
\end{center}
\vfill
\begin{center}
\begin{tabular}{ll}
\Large{\textbf Supervised by:} & \Large{Name 1}\\
\Large{} & \Large{Name 2}\\
& \small{Institute}\\
\end{tabular}
\end{center}
\begin{center}
\today\\
\end{center}
\end{titlepage}
\end{document}
The problem is now that I'm using scrpage2 instead of fancyhdr, that means fancypagestyle, lhead, headrulewidth, rhead and fancyfoot does not work.
How can this be corrected?


\documentclassand end with\end{document}... – Werner Jan 18 '16 at 22:41\Hugedo not take arguments. They are switches. – cfr Jan 18 '16 at 22:42fancyhdr? Both may work together, most likely there will be problems. It's not recommended to use both in a document! – Jan 19 '16 at 00:06fancyhdr(or any other package for page headers/footers) on a titlepage is not a good idea. Please read How to customize my titlepage? – Johannes_B Jan 19 '16 at 07:54scrpageis obsolete and should be replaced byscrlayer-scrpage. – Johannes_B Jan 19 '16 at 07:56