Page LayoutLoT Title appearing in new Chapter

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
xboxrob
Posts: 2
Joined: Thu Aug 25, 2011 10:33 am

LoT Title appearing in new Chapter

Post by xboxrob »

Hi,

I have a document in which I invoke a list of Tables command and then need a page which does not have any chapter number hence I have

Code: Select all

\listoffigures
\listoftables
\include{Abbreviations/abbreviations}
and in abbreviations.tex

Code: Select all

\Chapter*{Abbreviations}
On the second page at the top right there is text "LIST OF TABLES". If I use \Chapter{Abbreviations} this is removed but I would prefer not to have this specific chapter numbered.

If anyone could help that would be great. Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10348
Joined: Mon Mar 10, 2008 9:44 pm

LoT Title appearing in new Chapter

Post by Stefan Kottwitz »

Hi,

use \markboth, such as

Code: Select all

\Chapter*{Abbreviations}
\markboth{Abbreviations}{Abbreviations}
Stefan
LaTeX.org admin
xboxrob
Posts: 2
Joined: Thu Aug 25, 2011 10:33 am

Re: LoT Title appearing in new Chapter

Post by xboxrob »

Amazing.

Thank you
Post Reply