blob: 7f9ace8cc8b3ca8e0df0df49cf042ec5355717c7 [file] [log] [blame]
JJ Allaire2ec40242014-09-15 09:18:39 -04001#' Convert to a reveal.js presentation
JJ Allaire4c178052016-01-30 19:35:39 -05002#'
JJ Allaire2ec40242014-09-15 09:18:39 -04003#' Format for converting from R Markdown to a reveal.js presentation.
JJ Allaire4c178052016-01-30 19:35:39 -05004#'
JJ Allaire2ec40242014-09-15 09:18:39 -04005#' @inheritParams rmarkdown::beamer_presentation
6#' @inheritParams rmarkdown::pdf_document
7#' @inheritParams rmarkdown::html_document
JJ Allaire4c178052016-01-30 19:35:39 -05008#'
JJ Allaire2ec40242014-09-15 09:18:39 -04009#' @param center \code{TRUE} to vertically center content on slides
JJ Allaire4c178052016-01-30 19:35:39 -050010#' @param slide_level Level of heading to denote individual slides. If
11#' \code{slide_level} is 2 (the default), a two-dimensional layout will be
12#' produced, with level 1 headers building horizontally and level 2 headers
13#' building vertically. It is not recommended that you use deeper nesting of
14#' section levels with reveal.js.
15#' @param theme Visual theme ("simple", "sky", "beige", "serif", "solarized",
16#' "blood", "moon", "night", "black", "league" or "white").
junkkad4b3a162015-03-16 07:49:11 +010017#' @param transition Slide transition ("default", "none", "fade", "slide",
18#' "convex", "concave" or "zoom")
JJ Allaire4c178052016-01-30 19:35:39 -050019#' @param background_transition Slide background-transition ("default", "none",
20#' "fade", "slide", "convex", "concave" or "zoom")
21#' @param reveal_options Additional options to specify for reveal.js (see
22#' \href{https://github.com/hakimel/reveal.js#configuration}{https://github.com/hakimel/reveal.js#configuration}
23#' for details).
24#' @param template Pandoc template to use for rendering. Pass "default" to use
25#' the rmarkdown package default template; pass \code{NULL} to use pandoc's
26#' built-in template; pass a path to use a custom template that you've
27#' created. Note that if you don't use the "default" template then some
28#' features of \code{revealjs_presentation} won't be available (see the
29#' Templates section below for more details).
JJ Allaire8d1c2f42016-01-30 14:56:45 -050030#' @param ... Ignored
JJ Allaire4c178052016-01-30 19:35:39 -050031#'
JJ Allaire2ec40242014-09-15 09:18:39 -040032#' @return R Markdown output format to pass to \code{\link{render}}
JJ Allaire4c178052016-01-30 19:35:39 -050033#'
JJ Allaire2ec40242014-09-15 09:18:39 -040034#' @details
JJ Allaire309bc7d2016-01-30 19:17:54 -050035#'
JJ Allaire4c178052016-01-30 19:35:39 -050036#' In reveal.js presentations you can use level 1 or level 2 headers for slides.
37#' If you use a mix of level 1 and level 2 headers then a two-dimensional layout
38#' will be produced, with level 1 headers building horizontally and level 2
39#' headers building vertically.
40#'
41#' For additional documentation on using revealjs presentations see
42#' \href{https://github.com/rstudio/revealjs}{https://github.com/rstudio/revealjs}.
JJ Allaire309bc7d2016-01-30 19:17:54 -050043#'
JJ Allaire2ec40242014-09-15 09:18:39 -040044#' @section Templates:
JJ Allaire4c178052016-01-30 19:35:39 -050045#'
46#' You can provide a custom HTML template to be used for rendering. The syntax
47#' for templates is described in the documentation on
48#' \href{http://johnmacfarlane.net/pandoc/demo/example9/templates.html}{pandoc
49#' templates}. You can also use the basic pandoc template by passing
50#' \code{template = NULL}.
51#'
52#' Note however that if you choose not to use the "default" reveal.js template
53#' then several aspects of reveal.js presentation rendering will behave
54#' differently:
55#'
56#' \itemize{ \item{The \code{center} parameter does not work (you'd need to
57#' set this directly in the template). } \item{The built-in template includes
58#' some additional tweaks to styles to optimize for output from R, these won't
59#' be present. } \item{MathJax will not work if \code{self_contained} is
60#' \code{TRUE} (these two options can't be used together in normal pandoc
61#' templates). } }
62#'
JJ Allaire2ec40242014-09-15 09:18:39 -040063#' @examples
64#' \dontrun{
JJ Allaire4c178052016-01-30 19:35:39 -050065#'
JJ Allaire2ec40242014-09-15 09:18:39 -040066#' library(rmarkdown)
67#' library(revealjs)
JJ Allaire4c178052016-01-30 19:35:39 -050068#'
JJ Allaire2ec40242014-09-15 09:18:39 -040069#' # simple invocation
70#' render("pres.Rmd", revealjs_presentation())
JJ Allaire4c178052016-01-30 19:35:39 -050071#'
JJ Allaire2ec40242014-09-15 09:18:39 -040072#' # specify an option for incremental rendering
73#' render("pres.Rmd", revealjs_presentation(incremental = TRUE))
74#' }
JJ Allaire4c178052016-01-30 19:35:39 -050075#'
76#'
JJ Allaire2ec40242014-09-15 09:18:39 -040077#' @export
78revealjs_presentation <- function(incremental = FALSE,
79 center = FALSE,
JJ Allaire4c178052016-01-30 19:35:39 -050080 slide_level = 2,
JJ Allaire2ec40242014-09-15 09:18:39 -040081 fig_width = 8,
82 fig_height = 6,
83 fig_retina = if (!fig_caption) 2,
84 fig_caption = FALSE,
85 smart = TRUE,
86 self_contained = TRUE,
JJ Allaire6da1bb62016-01-30 14:28:39 -050087 theme = "simple",
JJ Allaire2ec40242014-09-15 09:18:39 -040088 transition = "default",
junkkad55cff02015-03-15 22:27:03 +010089 background_transition = "default",
JJ Allaire37f45b72016-01-30 18:17:45 -050090 reveal_options = NULL,
JJ Allaire2ec40242014-09-15 09:18:39 -040091 highlight = "default",
92 mathjax = "default",
93 template = "default",
JJ Allairefad55232015-10-19 07:47:26 -040094 css = NULL,
JJ Allaire2ec40242014-09-15 09:18:39 -040095 includes = NULL,
96 keep_md = FALSE,
97 lib_dir = NULL,
98 pandoc_args = NULL,
99 ...) {
100
101 # function to lookup reveal resource
102 reveal_resources <- function() {
JJ Allaire2d8f3f22016-01-30 13:08:52 -0500103 system.file("rmarkdown/templates/revealjs_presentation/resources",
JJ Allaire2ec40242014-09-15 09:18:39 -0400104 package = "revealjs")
105 }
106
107 # base pandoc options for all reveal.js output
108 args <- c()
109
110 # template path and assets
JJ Allairea8c414b2016-01-30 14:36:53 -0500111 if (identical(template, "default")) {
112 default_template <- system.file(
113 "rmarkdown/templates/revealjs_presentation/resources/default.html",
114 package = "revealjs"
115 )
116 args <- c(args, "--template", pandoc_path_arg(default_template))
117 } else if (!is.null(template)) {
JJ Allaire2ec40242014-09-15 09:18:39 -0400118 args <- c(args, "--template", pandoc_path_arg(template))
JJ Allairea8c414b2016-01-30 14:36:53 -0500119 }
JJ Allaire2ec40242014-09-15 09:18:39 -0400120
121 # incremental
122 if (incremental)
123 args <- c(args, "--incremental")
124
125 # centering
JJ Allaire40fec332016-01-30 16:54:51 -0500126 jsbool <- function(value) ifelse(value, "true", "false")
127 args <- c(args, pandoc_variable_arg("center", jsbool(center)))
JJ Allaire2ec40242014-09-15 09:18:39 -0400128
JJ Allaire4c178052016-01-30 19:35:39 -0500129 # slide level
130 args <- c(args, "--slide-level", "2")
131
JJ Allaire2ec40242014-09-15 09:18:39 -0400132 # theme
133 theme <- match.arg(theme, revealjs_themes())
134 if (identical(theme, "default"))
135 theme <- "simple"
136 else if (identical(theme, "dark"))
JJ Allaire6da1bb62016-01-30 14:28:39 -0500137 theme <- "black"
138 if (theme %in% c("blood", "moon", "night", "black"))
JJ Allaire2ec40242014-09-15 09:18:39 -0400139 args <- c(args, "--variable", "theme-dark")
140 args <- c(args, "--variable", paste("theme=", theme, sep=""))
141
142
143 # transition
144 transition <- match.arg(transition, revealjs_transitions())
145 args <- c(args, "--variable", paste("transition=", transition, sep=""))
146
junkkad55cff02015-03-15 22:27:03 +0100147 # background_transition
148 background_transition <- match.arg(background_transition, revealjs_transitions())
JJ Allaire40fec332016-01-30 16:54:51 -0500149 args <- c(args, "--variable", paste("backgroundTransition=", background_transition, sep=""))
150
JJ Allaire37f45b72016-01-30 18:17:45 -0500151 # additional reveal options
152 if (is.list(reveal_options)) {
153 for (option in names(reveal_options)) {
154 value <- reveal_options[[option]]
155 if (is.logical(value))
156 value <- jsbool(value)
157 args <- c(args, pandoc_variable_arg(option, value))
158 }
159 }
160
JJ Allaire2ec40242014-09-15 09:18:39 -0400161 # content includes
162 args <- c(args, includes_to_pandoc_args(includes))
163
JJ Allairefad55232015-10-19 07:47:26 -0400164 # additional css
165 for (css_file in css)
166 args <- c(args, "--css", pandoc_path_arg(css_file))
167
JJ Allaire2ec40242014-09-15 09:18:39 -0400168 # pre-processor for arguments that may depend on the name of the
169 # the input file (e.g. ones that need to copy supporting files)
170 pre_processor <- function(metadata, input_file, runtime, knit_meta, files_dir,
171 output_dir) {
172
JJ Allairee60feb22016-01-30 18:28:47 -0500173 # we don't work with runtime shiny
174 if (identical(runtime, "shiny")) {
175 stop("revealjs_presentation is not compatible with runtime 'shiny'",
176 call. = FALSE)
177 }
178
JJ Allaire2ec40242014-09-15 09:18:39 -0400179 # use files_dir as lib_dir if not explicitly specified
180 if (is.null(lib_dir))
181 lib_dir <- files_dir
182
183 # extra args
184 args <- c()
185
186 # reveal.js
JJ Allairea8c414b2016-01-30 14:36:53 -0500187 revealjs_path <- system.file("reveal.js-3.2.0", package = "revealjs")
JJ Allaire2ec40242014-09-15 09:18:39 -0400188 if (!self_contained || identical(.Platform$OS.type, "windows"))
189 revealjs_path <- relative_to(
190 output_dir, render_supporting_files(revealjs_path, lib_dir))
191 args <- c(args, "--variable", paste("revealjs-url=",
192 pandoc_path_arg(revealjs_path), sep=""))
193
194 # highlight
195 args <- c(args, pandoc_highlight_args(highlight, default = "pygments"))
196
197 # return additional args
198 args
199 }
200
201 # return format
202 output_format(
203 knitr = knitr_options_html(fig_width, fig_height, fig_retina, keep_md),
204 pandoc = pandoc_options(to = "revealjs",
205 from = rmarkdown_format(ifelse(fig_caption,
206 "",
207 "-implicit_figures")),
208 args = args),
209 keep_md = keep_md,
210 clean_supporting = self_contained,
211 pre_processor = pre_processor,
212 base_format = html_document_base(smart = smart, lib_dir = lib_dir,
213 self_contained = self_contained,
214 mathjax = mathjax,
215 pandoc_args = pandoc_args, ...))
216}
217
218revealjs_themes <- function() {
219 c("default",
JJ Allaire6da1bb62016-01-30 14:28:39 -0500220 "dark",
JJ Allaire2ec40242014-09-15 09:18:39 -0400221 "simple",
222 "sky",
223 "beige",
224 "serif",
225 "solarized",
JJ Allaire2ec40242014-09-15 09:18:39 -0400226 "blood",
227 "moon",
junkka77fbf082015-03-15 22:25:47 +0100228 "night",
229 "black",
230 "league",
231 "white")
JJ Allaire2ec40242014-09-15 09:18:39 -0400232}
233
234
235revealjs_transitions <- function() {
junkka77fbf082015-03-15 22:25:47 +0100236 c(
237 "default",
238 "none",
JJ Allaire2ec40242014-09-15 09:18:39 -0400239 "fade",
junkka77fbf082015-03-15 22:25:47 +0100240 "slide",
241 "convex",
242 "concave",
243 "zoom"
244 )
JJ Allaire2ec40242014-09-15 09:18:39 -0400245}
246
247