[Tex/LaTex] scrpage2 with scrbook. Chapter on left and right header

header-footerkoma-scriptscrbookscrpage2

I started using scrpage2 with scrbook. First thing I don't understand is the usage of \automark[chapter]{chapter}. How could I let display chapter on left and right header. I managed to do that with subsection and chapter etc. But the first seems to be more difficult..

\documentclass[12pt, draft]{scrbook} 
\usepackage[automark]{scrpage2}   

between \begin{document} and \end{document}

 \pagestyle{scrheadings}
 \ohead{\pagemark} 
 \cehead{\leftmark} 
 \cohead{\rightmark} 
 \ofoot[]{} 

%%%%%%

\chapter{Intro}
\automark[chapter]{chapter} 


\chapter{Different Chapter}
\automark[subsection]{chapter} 

etc.

Best Answer

As far as I can understand, \headmark refers to the chapter on even pages (left hand) and to sections on odd pages (right hand).

If you say

\ihead{\leftmark}

you'll have the chapter title in the inner side of the header on all pages, without any need to give \automark commands.