md_document(variant = "markdown_strict", preserve_yaml = FALSE, toc = FALSE, toc_depth = 3, fig_width = 7, fig_height = 5, fig_retina = NULL, dev = "png", df_print = "default", includes = NULL, md_extensions = NULL, pandoc_args = NULL)
TRUE
to include a table of contents in the outputNULL
which performs no scaling. A setting of 2 will work for all
widely used retina displays, but will also result in the output of
![]()
tags rather than markdown images due to the need to set the
width of the image explicitly.print.data.frame
. The "kable" method uses the
knitr::kable
function. The "tibble" method uses
the tibble package to print a summary of the data frame. The "paged"
method creates a paginated HTML table (note that this method is only valid
for formats that produce HTML). In addition
to the named methods you can also pass an arbitrary function to be used
for printing data frames. You can disable the df_print behavior entirely
by setting the option rmarkdown.df_print
to FALSE
.includes
function).rmarkdown_format
for
additional details.render
md_document
format.R Markdown documents can have optional metadata that is used to generate a document header that includes the title, author, and date. For more details see the documentation on R Markdown metadata.
R Markdown documents also support citations. You can find more information on the markdown syntax for citations in the Bibliographies and Citations article in the online documentation.
## Not run:
#
# library(rmarkdown)
#
# render("input.Rmd", md_document())
#
# render("input.Rmd", md_document(variant = "markdown_github"))
# ## End(Not run)
Run the code above in your browser using DataLab