I'm using scrreprt (twosided) to typeset my dissertation with latex. For headers and footers I'm using scrpage2. I'm currently putting the chapter titles in right page headers, section titles in left page headers. Code posted below.
Now, what I would like to do is suppress the section and chapter numbers in the headers.
After unsuccessful searches through the web I'm really desperate for some hint(s) on how to go about this ...
Ideas anyone?
Thanks a lot!
Leo
Code: Select all
\documentclass[12pt, a4paper, twoside, openright]{scrreprt}
\usepackage[a4paper, inner=3.5cm, outer=6cm]{geometry}
\usepackage{changepage}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{scrpage2}
\pagestyle{scrheadings}
\clearscrheadings
\rohead{\rightmark}
\lehead{\leftmark}
\automark[section]{chapter}
\usepackage{setspace}
\begin{document}
\titlepage{TITLEPAGE}
\chapter{Abstract}
abstract here
\newpage
\chapter{Introduction}
Looooong Text
\section{section 1}
more text
\section{section 2}
even more text
... etc. ...
\end{document}