html_document {BiocStyle} | R Documentation |
Format for converting from R Markdown to an Bioconductor HTML document.
html_document(toc = TRUE, number_sections = TRUE, fig_width = NA, fig_height = NA, self_contained = TRUE, css = NULL, pandoc_args = NULL, ..., titlecaps = TRUE)
toc |
logical(1), |
number_sections |
logical(1), |
fig_width |
numeric(1), default width (in inches) for figures |
fig_height |
numeric(1), default width (in inches) for figures |
self_contained |
numeric(1), |
css |
character, one or more css files to include |
pandoc_args |
character, additional command line options to pass to pandoc |
... |
Additional arguments passed to
|
titlecaps |
logical(1), |
BiocStyle::html_document
format extends the
html_document
format. See the
online
documentation and the package vignette "Authoring R Markdown Vignettes" for
additional details on using the format,
R Markdown output format to pass to render
Andrzej OleÅ› <andrzej.oles@embl.de>, 2014-2017
## Not run: # simple invocation render("input.Rmd", BiocStyle::html_document()) # specify options render("input.Rmd", BiocStyle::html_document(toc = FALSE)) ## End(Not run)