in my current document there are some chapters that have to be added with the \chapter*-command because i don't want them to be real chapters (no entry in toc, no chapter-number, ...). this works fine!
but in my header i want the chapter-name to be displayed. i'm using fancyheaders and \leftmark:
\fancyhead[RO,LE]{\leftmark}
the problem is, that for chapters added with the \chapter*-command, \leftmark is not updated and so the header still displays the chapter-name of the previous chapter.
therefore i either need to force \chapter* to automatically update \leftmark, or i switch to the \chapter-command but prevent the other stuff that comes along (entry in toc, ...). but i don't know how! any ideas?