I have chapters beginning as follows:
\chapter*{MyChapter}
\chaptermark{MyChapter}
\addcontentsline{toc}{chapter}{MyChapter}
As you can see the chapters are not numbered but added to the TOC. My problem is with the \chaptermark{} that still puts the chapter number in front of the chapter title on all page headers. What do I have to do?
Here is a working example:
\documentclass[10pt]{scrreprt}
\begin{document}
\pagestyle{headings}
\tableofcontents
\chapter*{MyChapter}
\chaptermark{MyChapter}
\addcontentsline{toc}{chapter}{MyChapter}
Repeat this text to get a second page in this chapter!
\end{document}
Important: You need to make the text longer so a second page will be added to the chapter. The page header of this second page now reads "0 MyChapter". However, since I like it unnumbered, it should read "MyChapter".



\documentclass{...}and ending with\end{document}. – alexwlchan Mar 09 '14 at 14:27