blob: b9544fe0f6c69c3d23f7a6a93428e5c1c0a4ad18 [file] [log] [blame]
junkkad4b3a162015-03-16 07:49:11 +01001% Generated by roxygen2 (4.1.0): do not edit by hand
2% Please edit documentation in R/revealjs_presentation.R
JJ Allaire2ec40242014-09-15 09:18:39 -04003\name{revealjs_presentation}
4\alias{revealjs_presentation}
5\title{Convert to a reveal.js presentation}
6\usage{
7revealjs_presentation(incremental = FALSE, center = FALSE, fig_width = 8,
8 fig_height = 6, fig_retina = if (!fig_caption) 2, fig_caption = FALSE,
9 smart = TRUE, self_contained = TRUE, theme = "default",
junkkad4b3a162015-03-16 07:49:11 +010010 transition = "default", background_transition = "default",
11 highlight = "default", mathjax = "default", template = "default",
12 includes = NULL, keep_md = FALSE, lib_dir = NULL, pandoc_args = NULL,
13 ...)
JJ Allaire2ec40242014-09-15 09:18:39 -040014}
15\arguments{
16\item{incremental}{\code{TRUE} to render slide bullets incrementally. Note
17that if you want to reverse the default incremental behavior for an
18individual bullet you can preceded it with \code{>}. For example:
19\emph{\code{> - Bullet Text}}}
20
21\item{center}{\code{TRUE} to vertically center content on slides}
22
23\item{fig_width}{Default width (in inches) for figures}
24
25\item{fig_height}{Default width (in inches) for figures}
26
27\item{fig_retina}{Scaling to perform for retina displays (defaults to 2 when
28\code{fig_caption} is \code{FALSE}, which currently works for all widely
29used retina displays). Set to \code{NULL} to prevent retina scaling. Note
30that this will always be \code{NULL} when \code{keep_md} is specified (this
31is because \code{fig_retina} relies on outputting HTML directly into the
32markdown document).}
33
34\item{fig_caption}{\code{TRUE} to render figures with captions}
35
36\item{smart}{Produce typographically correct output, converting straight
37quotes to curly quotes, --- to em-dashes, -- to en-dashes, and ... to
38ellipses.}
39
40\item{self_contained}{Produce a standalone HTML file with no external
41dependencies, using data: URIs to incorporate the contents of linked
42scripts, stylesheets, images, and videos. Note that even for self
43contained documents MathJax is still loaded externally (this is
44necessary because of it's size).}
45
junkkad4b3a162015-03-16 07:49:11 +010046\item{theme}{Visual theme ("default", "simple", "sky", "beige", "serif",
47"solarized", "blood", "moon", "night", "black", "league" or "white").}
JJ Allaire2ec40242014-09-15 09:18:39 -040048
junkkad4b3a162015-03-16 07:49:11 +010049\item{transition}{Slide transition ("default", "none", "fade", "slide",
50"convex", "concave" or "zoom")}
51
52\item{background_transition}{Slide background-transition ("default", "none", "fade", "slide",
53"convex", "concave" or "zoom")}
JJ Allaire2ec40242014-09-15 09:18:39 -040054
55\item{highlight}{Syntax highlighting style. Supported styles include
56"default", "tango", "pygments", "kate", "monochrome", "espresso",
57"zenburn", and "haddock". Pass \code{NULL} to prevent syntax highlighting.}
58
59\item{mathjax}{Include mathjax. The "default" option uses an https URL from
60the official MathJax CDN. The "local" option uses a local version of
61MathJax (which is copied into the output directory). You can pass an
62alternate URL or pass \code{NULL} to exclude MathJax entirely.}
63
64\item{template}{Pandoc template to use for rendering. Pass "default"
65 to use the rmarkdown package default template; pass \code{NULL}
66 to use pandoc's built-in template; pass a path to use a custom template
67 that you've created. Note that if you don't use the "default" template
68 then some features of \code{revealjs_presentation} won't be available
69 (see the Templates section below for more details).}
70
71\item{includes}{Named list of additional content to include within the
72document (typically created using the \code{\link{includes}} function).}
73
74\item{keep_md}{Keep the markdown file generated by knitting.}
75
76\item{lib_dir}{Directory to copy dependent HTML libraries (e.g. jquery,
77bootstrap, etc.) into. By default this will be the name of the document
78with \code{_files} appended to it.}
79
80\item{pandoc_args}{Additional command line options to pass to pandoc}
81
82\item{...}{Additional function arguments to pass to the base R Markdown HTML
83 output formatter}
84}
85\value{
86R Markdown output format to pass to \code{\link{render}}
87}
88\description{
89Format for converting from R Markdown to a reveal.js presentation.
90}
91\details{
92In reveal.js presentations you can use level 1 or level 2 headers for
93slides. If you use a mix of level 1 and level 2 headers then a
94two-dimensional layout will be produced, with level 1 headers building
95horizontally and level 2 headers building vertically.
96
97For more information on markdown syntax for presentations see
98\href{http://johnmacfarlane.net/pandoc/demo/example9/producing-slide-shows-with-pandoc.html}{producing
99slide shows with pandoc}.
100}
101\section{Templates}{
102
103
104You can provide a custom HTML template to be used for rendering. The syntax
105for templates is described in the documentation on
106\href{http://johnmacfarlane.net/pandoc/demo/example9/templates.html}{pandoc
107templates}. You can also use the basic pandoc template by passing
108\code{template = NULL}.
109
110Note however that if you choose not to use the "default" reveal.js template
111then several aspects of reveal.js presentation rendering will behave
112differently:
113
114\itemize{
115 \item{The \code{center} parameter does not work (you'd need to
116 set this directly in the template).
117 }
118 \item{The built-in template includes some additional tweaks to styles
119 to optimize for output from R, these won't be present.
120 }
121 \item{MathJax will not work if \code{self_contained} is \code{TRUE}
122 (these two options can't be used together in normal pandoc templates).
123 }
124}
125}
126\examples{
127\dontrun{
128
129library(rmarkdown)
130library(revealjs)
131
132# simple invocation
133render("pres.Rmd", revealjs_presentation())
134
135# specify an option for incremental rendering
136render("pres.Rmd", revealjs_presentation(incremental = TRUE))
137}
138}
139