Page Layout ⇒ Unwanted CHAPTER 0
Unwanted CHAPTER 0
%%%%%%%%%%%%%%%%%%%%%
\include{Preamble}
\begin{document}
\frontmatter
...
\include{Preface}
\mainmatter
%%%%%%%%%%%%%%%%%%%%%
I also have:
\fancyhead[RE,LO]{\slshape \leftmark}.
On page 'vi' the upper right hand corner of the page reads "CHAPTER 0. PREFACE"
In my opinion, CHAPTER 0 doesn't look nice, since one doesn't think of a PREFACE as a CHAPTER. Is there a way to suppress it so the upper right hand corner just reads "PREFACE"?
Thank you,
Joe
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: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Unwanted CHAPTER 0
\include is (mostly) for chapters, since it starts a new page for each included file. So, instead of
\include{Preamble} please write \input{Preamble}. \input just plainly copies the file in.That's important, but not the main issue.
Chapter 0 is something strange, that should not happen if all is normal. What is your code?
Stefan