How can I learn what output option key-values are available for the different bookdown output formats?
For example, below I show the YAML header for a bookdown doc of mine. I can provide word_document2
the key-value pair (reference_docx
, template-v01.docx
). But what other keys are available? I'd like to know if there is a font
key because I'd like to change the default output font from Cambria to Calibri.
---
title: "A Minimal Book Example Foo"
author: "Yihui Xie"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output:
bookdown::pdf_book:
includes:
in_header: preamble-v01.tex
toc: no
bookdown::word_document2:
reference_docx: template-v01.docx
---