\frontmatter may include
- Table of Contents
- List of Figures
- List of Tables
- Preference
- and other parts
Now, I want to set up the pagestyle of pages range from the tag \frontmatter to the tag \mainmatter be plain. that is said all of \tableofcontents,\listoffigures,\listoftables,preference parts should not contain page number, page head, page foot. I dont want to set them one by one with \thispagestyle.
the \pagestyle of all pages in \mainmatterpart should be fancy.
I think if I can deal with \frontmatter, I also can apply the method to \mainmatter to \backmatter.
Am I right?
\frontmatter,\mainmatter, and\backmatter? If so, why can't you define three different page styles? – jon May 2 '12 at 15:47pagestyle{empty}in your preamble? Also you have to redefine page styleplainto beemptyto have similar effect on chapter pages too. – Harish Kumar May 2 '12 at 16:13