theme_carly_presents: Presentation Theme

Description Usage Arguments Details Examples

Description

I designed this theme for presentation. It features sharp constrast and larger fonts. It excludes details, like gridlines, that might not display clearly in a low-res format.

Usage

1
2
theme_carly_presents(base_size = 16, base_family = "",
  base_line_size = base_size/22, base_rect_size = base_size/22)

Arguments

base_size

base font size

base_family

base font family

base_line_size

base size for line elements

base_rect_size

base size for rect elements

Details

'theme_carly_presents'

The signature ggplot2 theme with a grey background and white gridlines, designed to put the data forward yet make comparisons easy.

Examples

1
2
3
4
5
6
library(ggplot2)
n <- 100
x <- rnorm(n)
y <- rnorm(n, x)
p <- qplot(x, y)
p + theme_carly_presents()

carlislerainey/ggcarly documentation built on May 7, 2019, 5 a.m.