>>Date: Wed, 27 Oct 1999 06:26:09 +0200 >>From: Martina Schwarz van Doorn <[EMAIL PROTECTED]> >>To: [EMAIL PROTECTED] >>Subject: Lyx 1.04: How do I stop the previous chapter heading from appearing on >´Chapter*´ pages ? >> >> >> Hello everybody, >> >> can anyone help me on how stop the previous chapter heading from >>appearing on ´Chapter*´ pages ? >> >> Thanks >> In TeX mode \markboth{Title}{Title} is a first workaround. If you want Title in the toc, you will need also \addcontentsline{toc}{chapter}{\protect\numberline{}#1} If you need it often, a good way is to define a command in the preamble \newcommand{\tocchap}[1]{\addcontentsline{toc}{chapter}{\protect\numberline{}#1}% \markboth{#1}{#1}} so that \tocchap{Title} does the job. You may have to modify the arguments to make these headings look like the others headings, e.g. \uppercase{#1} Regards -- Jean-Pierre