Skip to contents

Clean white slide with a thin grid and generous margins.

Usage

theme_transparency(
  base_size = 11,
  base_family = NULL,
  page = "white",
  grid_col = "#bdbdbd66"
)

Arguments

base_size

base text size

base_family

font family (optional)

page

page background

grid_col

grid color

Examples

if (FALSE) { # \dontrun{
if (requireNamespace("ggplot2", quietly = TRUE)) {
  ggplot2::ggplot(mtcars, ggplot2::aes(wt, mpg)) +
    ggplot2::geom_point() +
    theme_transparency()
}
} # }