slidy_presentation(incremental = FALSE, duration = NULL, footer = NULL, font_adjustment = 0, fig_width = 8, fig_height = 6, fig_retina = 2, fig_caption = TRUE, dev = "png", df_print = "default", smart = TRUE, self_contained = TRUE, highlight = "default", mathjax = "default", template = "default", css = NULL, includes = NULL, keep_md = FALSE, lib_dir = NULL, md_extensions = NULL, pandoc_args = NULL, extra_dependencies = NULL, ...)
TRUE
to render slide bullets incrementally. Note
that if you want to reverse the default incremental behavior for an
individual bullet you can precede it with >
. For example:
> - Bullet Text
NULL
to
prevent retina scaling. Note that this will always be NULL
when
keep_md
is specified (this is because fig_retina
relies on
outputting HTML directly into the markdown document).TRUE
to render figures with captionsprint.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
.NULL
to prevent syntax highlighting.NULL
to exclude MathJax entirely.NULL
to use pandoc's
built-in template; pass a path to use a custom template that you've
created. See the documentation on
pandoc online documentation
for details on creating custom templates.includes
function)._files
appended to it.rmarkdown_format
for
additional details.latex_dependency()
dependencies. It can
can be used to add custom LaTeX packages to the .tex header.html_document_base
render
slidy_presentation
format.For more information on markdown syntax for presentations see the pandoc online documentation.
## Not run:
#
# library(rmarkdown)
#
# # simple invocation
# render("pres.Rmd", slidy_presentation())
#
# # specify an option for incremental rendering
# render("pres.Rmd", slidy_presentation(incremental = TRUE))
# ## End(Not run)
Run the code above in your browser using DataLab