I'd like to have a header where the current section is centered but without the section-number. In the following example the header looks like "1 Example" but I'd like to have "Example".
\documentclass[headsepline, footsepline]{scrartcl}
\usepackage{scrpage2}
\begin{document}
\clearscrheadfoot
\pagestyle{scrheadings}
\automark[section]{section}
\ihead[University]{University}
\chead[\rightmark]{\rightmark}
\ohead[Author]{Author}
\ifoot[\today]{\today}
\ofoot{\thepage}
\section{Example}
Text
\end{document}
Is that anyhow possible?
\renewcommand*{\sectionmarkformat}{}in your preamble and you should get the section name without the number in the header – greyshade Aug 07 '14 at 19:30