I use the article document class and I created a TOC. It works fine and uses the \section to write the header, but the problem is that the first page after my TOC is the introduction and there I used \part without any \section. This is not recognized and so on the introduction page in the header it says "Contents" and not "Introduction". Can anyone help?
\tableofcontents
\newpage
\setcounter{page}{1}
\input{Chapter1}
%\newpage
\input{Chapter2}
etc.
and the chapters are like:
\part{Chapter1}
\part{Chapter2}
\section
\section
But the problem is, Chapter 1 has no \section and is not recognized.
sectionand in any case, the syntax to use it is:\section{This is the title of my section}. This title then also appears in the toc. – Philipp Apr 8 '12 at 17:37articleclass does feature\part(here not followed by a page break). – lockstep Apr 8 '12 at 17:43sectioncommand was used. Else I dont see why this shouldn't work. – Philipp Apr 8 '12 at 17:49articleand\partto emulate chapters is quite strange: use thebookclass. – egreg Apr 8 '12 at 19:18