I got a document that I want to have the following structure:
Table of content
Introduction
Chapter 1
Chapter 2
...
My code looks like this:
\begin{document}
\include{chapters/titlepage}
\frontmatter
%Thesis Body
\include{chapters/acknowledgements}
\include{chapters/summary-es}
\include{chapters/summary-en}
%Index
\tableofcontents
%Chapters
\mainmatter
\include{chapters/introduction}
\pagestyle{headings}
\include{chapters/chapter1}
\include{chapters/chapter2}
\include{chapters/conclusions}
\appendix
\include{chapters/appendix}
\backmatter
%Bibliography
\end{document}
In the introduction file the code is
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
With this the introduction
is not numbered as a chapter (as intended)
included in the table of contents (toc; as intended)
but the page headings of the introduction take the heading of the preceding toc and not the heading of the introduction chapter (this is not as intended).
How can I change the page heading for the introduction?
\markboth{Introduction}{Introduction}after\chapter*{Introduction}help you? – Stephen Jul 03 '15 at 18:49