Hallo,

ich möchte ein Logo im oder neben dem Header in einem zweiseitigen Dokument einfügen. Das Logo soll nicht mittig zur Linie im Header ausgerichtet sein, sondern etwas höher eingefügt werden. Ein Layout Entwurf habe ich angehängt. Hat jemand eine Idee wie es gehen könnte? Im Moment sieht mein Code so aus:

\documentclass[
12pt,
a4paper,
twoside,
headinclude,
headsepline,
BCOR12mm,
DIV12,
openright,
bibliography=totoc,
listof=totoc,
numbers=noenddot,
fleqn,
]{scrbook}

\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman, english]{babel}
\usepackage{lipsum}

\usepackage{xcolor}
\definecolor{grey} {RGB} {132,130,132}

\usepackage{scrpage2}

\setkomafont{pageheadfoot}{\color{grey}{\normalfon t\sffamily}}
\setkomafont{pagenumber}{\color{grey}{\normalfont\ sffamily}}
\setheadsepline{1pt}[\color{grey}]

\clearscrheadfoot
\pagestyle{scrheadings}
\rehead[ ]{Document title}
\lohead[ ]{Document title}
\lehead[ ]{\headmark}
\rohead[ ]{\headmark}
\refoot[\pagemark]{\pagemark}
\lofoot[\pagemark]{\pagemark}

\begin{document}

\section{section title}

\lipsum[1-9]

\end{document}