JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 1 | #' Convert to a reveal.js presentation |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 2 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 3 | #' Format for converting from R Markdown to a reveal.js presentation. |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 4 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 5 | #' @inheritParams rmarkdown::beamer_presentation |
| 6 | #' @inheritParams rmarkdown::pdf_document |
| 7 | #' @inheritParams rmarkdown::html_document |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 8 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 9 | #' @param center \code{TRUE} to vertically center content on slides |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 10 | #' @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"). |
junkka | d4b3a16 | 2015-03-16 07:49:11 +0100 | [diff] [blame] | 17 | #' @param transition Slide transition ("default", "none", "fade", "slide", |
| 18 | #' "convex", "concave" or "zoom") |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 19 | #' @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). |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 24 | #' @param reveal_plugins Reveal plugins to include. Available plugins include "notes", |
| 25 | #' "search", and "zoom". Note that \code{self_contained} must be set to |
| 26 | #' \code{FALSE} in order to use Reveal plugins. |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 27 | #' @param template Pandoc template to use for rendering. Pass "default" to use |
| 28 | #' the rmarkdown package default template; pass \code{NULL} to use pandoc's |
| 29 | #' built-in template; pass a path to use a custom template that you've |
| 30 | #' created. Note that if you don't use the "default" template then some |
| 31 | #' features of \code{revealjs_presentation} won't be available (see the |
| 32 | #' Templates section below for more details). |
JJ Allaire | 8d1c2f4 | 2016-01-30 14:56:45 -0500 | [diff] [blame] | 33 | #' @param ... Ignored |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 34 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 35 | #' @return R Markdown output format to pass to \code{\link{render}} |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 36 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 37 | #' @details |
JJ Allaire | 309bc7d | 2016-01-30 19:17:54 -0500 | [diff] [blame] | 38 | #' |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 39 | #' In reveal.js presentations you can use level 1 or level 2 headers for slides. |
| 40 | #' If you use a mix of level 1 and level 2 headers then a two-dimensional layout |
| 41 | #' will be produced, with level 1 headers building horizontally and level 2 |
| 42 | #' headers building vertically. |
| 43 | #' |
| 44 | #' For additional documentation on using revealjs presentations see |
| 45 | #' \href{https://github.com/rstudio/revealjs}{https://github.com/rstudio/revealjs}. |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 46 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 47 | #' @examples |
| 48 | #' \dontrun{ |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 49 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 50 | #' library(rmarkdown) |
| 51 | #' library(revealjs) |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 52 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 53 | #' # simple invocation |
| 54 | #' render("pres.Rmd", revealjs_presentation()) |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 55 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 56 | #' # specify an option for incremental rendering |
| 57 | #' render("pres.Rmd", revealjs_presentation(incremental = TRUE)) |
| 58 | #' } |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 59 | #' |
| 60 | #' |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 61 | #' @export |
| 62 | revealjs_presentation <- function(incremental = FALSE, |
| 63 | center = FALSE, |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 64 | slide_level = 2, |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 65 | fig_width = 8, |
| 66 | fig_height = 6, |
| 67 | fig_retina = if (!fig_caption) 2, |
| 68 | fig_caption = FALSE, |
| 69 | smart = TRUE, |
| 70 | self_contained = TRUE, |
JJ Allaire | 6da1bb6 | 2016-01-30 14:28:39 -0500 | [diff] [blame] | 71 | theme = "simple", |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 72 | transition = "default", |
junkka | d55cff0 | 2015-03-15 22:27:03 +0100 | [diff] [blame] | 73 | background_transition = "default", |
JJ Allaire | 37f45b7 | 2016-01-30 18:17:45 -0500 | [diff] [blame] | 74 | reveal_options = NULL, |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 75 | reveal_plugins = NULL, |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 76 | highlight = "default", |
| 77 | mathjax = "default", |
| 78 | template = "default", |
JJ Allaire | fad5523 | 2015-10-19 07:47:26 -0400 | [diff] [blame] | 79 | css = NULL, |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 80 | includes = NULL, |
| 81 | keep_md = FALSE, |
| 82 | lib_dir = NULL, |
| 83 | pandoc_args = NULL, |
| 84 | ...) { |
| 85 | |
| 86 | # function to lookup reveal resource |
| 87 | reveal_resources <- function() { |
JJ Allaire | 2d8f3f2 | 2016-01-30 13:08:52 -0500 | [diff] [blame] | 88 | system.file("rmarkdown/templates/revealjs_presentation/resources", |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 89 | package = "revealjs") |
| 90 | } |
| 91 | |
| 92 | # base pandoc options for all reveal.js output |
| 93 | args <- c() |
| 94 | |
| 95 | # template path and assets |
JJ Allaire | a8c414b | 2016-01-30 14:36:53 -0500 | [diff] [blame] | 96 | if (identical(template, "default")) { |
| 97 | default_template <- system.file( |
| 98 | "rmarkdown/templates/revealjs_presentation/resources/default.html", |
| 99 | package = "revealjs" |
| 100 | ) |
| 101 | args <- c(args, "--template", pandoc_path_arg(default_template)) |
| 102 | } else if (!is.null(template)) { |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 103 | args <- c(args, "--template", pandoc_path_arg(template)) |
JJ Allaire | a8c414b | 2016-01-30 14:36:53 -0500 | [diff] [blame] | 104 | } |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 105 | |
| 106 | # incremental |
| 107 | if (incremental) |
| 108 | args <- c(args, "--incremental") |
| 109 | |
| 110 | # centering |
JJ Allaire | 40fec33 | 2016-01-30 16:54:51 -0500 | [diff] [blame] | 111 | jsbool <- function(value) ifelse(value, "true", "false") |
| 112 | args <- c(args, pandoc_variable_arg("center", jsbool(center))) |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 113 | |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 114 | # slide level |
JJ Allaire | c58a6c4 | 2016-03-30 23:45:21 -0400 | [diff] [blame] | 115 | args <- c(args, "--slide-level", as.character(slide_level)) |
JJ Allaire | 4c17805 | 2016-01-30 19:35:39 -0500 | [diff] [blame] | 116 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 117 | # theme |
| 118 | theme <- match.arg(theme, revealjs_themes()) |
| 119 | if (identical(theme, "default")) |
| 120 | theme <- "simple" |
| 121 | else if (identical(theme, "dark")) |
JJ Allaire | 6da1bb6 | 2016-01-30 14:28:39 -0500 | [diff] [blame] | 122 | theme <- "black" |
| 123 | if (theme %in% c("blood", "moon", "night", "black")) |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 124 | args <- c(args, "--variable", "theme-dark") |
| 125 | args <- c(args, "--variable", paste("theme=", theme, sep="")) |
| 126 | |
| 127 | |
| 128 | # transition |
| 129 | transition <- match.arg(transition, revealjs_transitions()) |
| 130 | args <- c(args, "--variable", paste("transition=", transition, sep="")) |
| 131 | |
junkka | d55cff0 | 2015-03-15 22:27:03 +0100 | [diff] [blame] | 132 | # background_transition |
| 133 | background_transition <- match.arg(background_transition, revealjs_transitions()) |
JJ Allaire | 40fec33 | 2016-01-30 16:54:51 -0500 | [diff] [blame] | 134 | args <- c(args, "--variable", paste("backgroundTransition=", background_transition, sep="")) |
| 135 | |
JJ Allaire | 4ae486f | 2016-03-23 06:08:42 -0400 | [diff] [blame] | 136 | # use history |
| 137 | args <- c(args, pandoc_variable_arg("history", "true")) |
JJ Allaire | 8bfd364 | 2016-03-21 13:43:13 -0400 | [diff] [blame] | 138 | |
JJ Allaire | 37f45b7 | 2016-01-30 18:17:45 -0500 | [diff] [blame] | 139 | # additional reveal options |
| 140 | if (is.list(reveal_options)) { |
| 141 | for (option in names(reveal_options)) { |
| 142 | value <- reveal_options[[option]] |
| 143 | if (is.logical(value)) |
| 144 | value <- jsbool(value) |
| 145 | args <- c(args, pandoc_variable_arg(option, value)) |
| 146 | } |
| 147 | } |
| 148 | |
JJ Allaire | 82a8dee | 2016-07-12 10:25:36 -0400 | [diff] [blame] | 149 | # reveal plugins |
| 150 | if (is.character(reveal_plugins)) { |
| 151 | |
| 152 | # validate that we need to use self_contained for plugins |
| 153 | if (self_contained) |
| 154 | stop("Using reveal_plugins requires self_contained: false") |
| 155 | |
| 156 | # validate specified plugins are supported |
| 157 | supported_plugins <- c("notes", "search", "zoom") |
| 158 | invalid_plugins <- setdiff(reveal_plugins, supported_plugins) |
| 159 | if (length(invalid_plugins) > 0) |
| 160 | stop("The following plugin(s) are not supported: ", |
| 161 | paste(invalid_plugins, collapse = ", "), call. = FALSE) |
| 162 | |
| 163 | # add plugins |
| 164 | sapply(reveal_plugins, function(plugin) { |
| 165 | args <<- c(args, pandoc_variable_arg(paste0("plugin-", plugin), "1")) |
| 166 | }) |
| 167 | } |
| 168 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 169 | # content includes |
| 170 | args <- c(args, includes_to_pandoc_args(includes)) |
| 171 | |
JJ Allaire | fad5523 | 2015-10-19 07:47:26 -0400 | [diff] [blame] | 172 | # additional css |
| 173 | for (css_file in css) |
| 174 | args <- c(args, "--css", pandoc_path_arg(css_file)) |
| 175 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 176 | # pre-processor for arguments that may depend on the name of the |
| 177 | # the input file (e.g. ones that need to copy supporting files) |
| 178 | pre_processor <- function(metadata, input_file, runtime, knit_meta, files_dir, |
| 179 | output_dir) { |
| 180 | |
JJ Allaire | e60feb2 | 2016-01-30 18:28:47 -0500 | [diff] [blame] | 181 | # we don't work with runtime shiny |
| 182 | if (identical(runtime, "shiny")) { |
| 183 | stop("revealjs_presentation is not compatible with runtime 'shiny'", |
| 184 | call. = FALSE) |
| 185 | } |
| 186 | |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 187 | # use files_dir as lib_dir if not explicitly specified |
| 188 | if (is.null(lib_dir)) |
| 189 | lib_dir <- files_dir |
| 190 | |
| 191 | # extra args |
| 192 | args <- c() |
| 193 | |
| 194 | # reveal.js |
JJ Allaire | a8c414b | 2016-01-30 14:36:53 -0500 | [diff] [blame] | 195 | revealjs_path <- system.file("reveal.js-3.2.0", package = "revealjs") |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 196 | if (!self_contained || identical(.Platform$OS.type, "windows")) |
| 197 | revealjs_path <- relative_to( |
| 198 | output_dir, render_supporting_files(revealjs_path, lib_dir)) |
Bruce's Thinkpad | 4609b6c | 2016-07-13 22:24:33 +0800 | [diff] [blame^] | 199 | args <- c(args, "--variable", paste0("revealjs-url=", revealjs_path))) |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 200 | |
| 201 | # highlight |
| 202 | args <- c(args, pandoc_highlight_args(highlight, default = "pygments")) |
| 203 | |
| 204 | # return additional args |
| 205 | args |
| 206 | } |
| 207 | |
| 208 | # return format |
| 209 | output_format( |
| 210 | knitr = knitr_options_html(fig_width, fig_height, fig_retina, keep_md), |
| 211 | pandoc = pandoc_options(to = "revealjs", |
| 212 | from = rmarkdown_format(ifelse(fig_caption, |
| 213 | "", |
| 214 | "-implicit_figures")), |
| 215 | args = args), |
| 216 | keep_md = keep_md, |
| 217 | clean_supporting = self_contained, |
| 218 | pre_processor = pre_processor, |
| 219 | base_format = html_document_base(smart = smart, lib_dir = lib_dir, |
| 220 | self_contained = self_contained, |
| 221 | mathjax = mathjax, |
| 222 | pandoc_args = pandoc_args, ...)) |
| 223 | } |
| 224 | |
| 225 | revealjs_themes <- function() { |
| 226 | c("default", |
JJ Allaire | 6da1bb6 | 2016-01-30 14:28:39 -0500 | [diff] [blame] | 227 | "dark", |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 228 | "simple", |
| 229 | "sky", |
| 230 | "beige", |
| 231 | "serif", |
| 232 | "solarized", |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 233 | "blood", |
| 234 | "moon", |
junkka | 77fbf08 | 2015-03-15 22:25:47 +0100 | [diff] [blame] | 235 | "night", |
| 236 | "black", |
| 237 | "league", |
| 238 | "white") |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | |
| 242 | revealjs_transitions <- function() { |
junkka | 77fbf08 | 2015-03-15 22:25:47 +0100 | [diff] [blame] | 243 | c( |
| 244 | "default", |
| 245 | "none", |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 246 | "fade", |
junkka | 77fbf08 | 2015-03-15 22:25:47 +0100 | [diff] [blame] | 247 | "slide", |
| 248 | "convex", |
| 249 | "concave", |
| 250 | "zoom" |
| 251 | ) |
JJ Allaire | 2ec4024 | 2014-09-15 09:18:39 -0400 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | |