General ⇒ what is the header style for contents, lof, lot
what is the header style for contents, lof, lot
Does someone know what is the header "style" for the contents, list of figures, list of tables headers? What I am trying to do is make a List of Symbols after it, and it would be nice if the formatting, margins, etc were the same for all the preface sections. The closest is the \chapter* but still there is a small difference on the margins. Oh yes, we are talking about a report documentclass. Thanks.
gm
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
what is the header style for contents, lof, lot
you could look into the file report.cls on your computer, then you will see what's actually done. For example concerning the list of figures:
Code: Select all
\newcommand\listoffigures{%
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse
\fi
\chapter*{\listfigurename}%
\@mkboth{\MakeUppercase\listfigurename}%
{\MakeUppercase\listfigurename}%
\@starttoc{lof}%
\if@restonecol\twocolumn\fi
}
Stefan
Re: what is the header style for contents, lof, lot
