Replies: 1 comment 2 replies
-
The Pandoc latex templates are fully customizable. See the great-wave example in quarto_titlepages Specifically, the before-body.tex file where I redefine how the title page is created and on line 6, tell LaTeX start the page numbers at 1. Although this is a scrbook document class and I am in the frontmatter so this is actually causing the table of contents to start at i. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Typically when I use latex for creating documents like books/reports I would set a different page number format for frontmatter and the main contents (e.g. Preface would be on page (i), List of Figures on page (ii), etc, while Chapter 1 would start on page 1).
How do you achieve this affect when using
quarto
to render to pdf? Inlatex
it's simply a case of adding\pagenumbering{roman}
or\pagenumbering{arabic}
before each section begins? Is this apandoc
limitation?I've noticed the ToC, ToF are already using roman numerals (but don't start at (i) as the cover page and cover back are numbered) but the preface then starts at 1.
Beta Was this translation helpful? Give feedback.
All reactions