Include a YAML header in write2
Arguments
- ...
For
yaml(), arguments to be bundled into a list and passed toas.yaml. Forprint.yaml(), extra arguments. Forc.yaml(), "yaml" objects to be concatenated.- x
An object of class
"yaml".- recursive
Not in use at this time.
Examples
x <- yaml(title = "My cool title", author = "Ethan P Heinzen")
x
#> ---
#> title: My cool title
#> author: Ethan P Heinzen
#> ---
y <- yaml("header-includes" = list("\\usepackage[labelformat=empty]{caption}"))
y
#> ---
#> header-includes:
#> - \usepackage[labelformat=empty]{caption}
#> ---
c(x, y)
#> ---
#> title: My cool title
#> author: Ethan P Heinzen
#> header-includes:
#> - \usepackage[labelformat=empty]{caption}
#> ---
