In _output.yml, the following actually sets the paper size correctly:
bookdown::pdf_book:
pandoc_args: [
"-V", "papersize=a4"
]
But when I want to use tufte_book, the papersize argument has no effect, and the output in in letter size no matter what:
bookdown::pdf_book:
base_format: tufte::tufte_book
pandoc_args: [
"-V", "papersize=a4"
]
How do I override the default paper size in tufte_book?