theme_article {egg} | R Documentation |
Theme with minimalistic (and opinionated) defaults suitable for publication
Description
Theme with minimalistic (and opinionated) defaults suitable for publication
Usage
theme_article(base_size = 11, base_family = "")
Arguments
base_size |
base font size |
base_family |
base font family |
Examples
library(ggplot2)
d = data.frame(
x = 1:90,
y = rnorm(90),
red = rep(letters[1:3], 30),
blue = c(rep(1, 30), rep(2, 30), rep(3, 30)))
p <- ggplot(d) +
geom_point(aes(x = x, y = y)) +
facet_grid(red ~ blue)
tag_facet(p + theme_article())
p + theme_presentation()
# example of use with cairo device
# ggsave("fig_talk.pdf", p + theme_presentation("Source Sans Pro"),
# width=14, height=7, device = cairo_pdf, bg='transparent')
[Package egg version 0.4.5 Index]