This function lists the Monash Quarto templates available.
quarto_template_use(
type = c("report", "workingpaper", "thesis", "memo", "letter", "exam"),
dir = type
)
quarto_template_install(
type = c("report", "workingpaper", "thesis", "memo", "letter", "exam")
)
quarto_template_add(
type = c("report", "workingpaper", "thesis", "memo", "letter", "exam")
)
Arguments
- type
One of either "report", "workingpaper", "thesis", "memo", or
"letter".
- dir
The name of the directory to put the template in. The directory
should not exist.
Examples
if (FALSE) { # \dontrun{
quarto_template_use("report", dir = "myreport")
quarto_template_install("workingpaper")
quarto_template_add("thesis")
} # }