I defined the headmark over \ihead[]{\headmark} and an image over \ohead[\Logo]{\Logo} with the use of koma script. Now I´ve got the problem, that the \headmark is not at the baseline of the head. I helped me by defining \ihead[]{\vphantom{\Logo}\headmark}, but that gives different headers on scrplain and scrheadings. Here is an example:
\documentclass{scrreprt}
\usepackage[T1]{fontenc}
\usepackage{selinput}
\SelectInputMappings{
adieresis={ä},
germandbls={ß},
Euro={€},
}
\usepackage{blindtext}
\usepackage[ automark
, headsepline
, plainheadsepline
]{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\addtolength{\headheight}{1.2cm}
\addtolength{\textheight}{-1.2cm}
\ihead[]{\vphantom{\Logo}\\\headmark}
\ohead[\Logo]{\Logo}
\newcommand{\Logo}{\rule{3cm}{1cm}}
\begin{document}
\blinddocument
\end{document}
How can I adjust the \ihead to the baseline of the header?