rpgtex / DND-5e-LaTeX-Template

LaTeX package to typeset material for the fifth edition of the "world's greatest roleplaying game".
MIT License
1.44k stars 312 forks source link

Question: Is there a way to exclude certain pages from the footer image and numbered pages? For example, the first few pages. #117

Closed YoeyShmoe closed 6 years ago

YoeyShmoe commented 6 years ago

As it says in the title, I'd like to remove that element from the title page, but I suppose I'm a bit inept.

BrianCriswell commented 6 years ago

I am not 100% sure what you want.

You may want to look at changing the page style. For instance, \thispagestyle{empty} removes both the header and footer from a page.

Some documents, like the ones I make, use roman numerals for the front and back cover before setting page one at the table of contents. In this case, the following commands would be useful to you.

\frontmatter%turns off chapter numbering and uses roman numerals for page numbers;
\mainmatter%turns on chapter numbering, resets page numbering and uses arabic numerals for page numbers;
\appendix%resets chapter numbering, uses letters for chapter numbers and doesn't fiddle with page numbering;
\backmatter%turns off chapter numbering and doesn't fiddle with page numbering.

Descriptions stolen from here->https://tex.stackexchange.com/questions/20538/what-is-the-right-order-when-using-frontmatter-tableofcontents-mainmatter

YoeyShmoe commented 6 years ago

That did it, thanks @BrianCriswell 👍