create_fullslide.Rd
Takes a ggplot2 object and formats it to look like a Grattan Powerpoint slide. You will rarely need to call this function directly - use `grattan_save()` to save a ggplot2 object as a 'slide'-like image.
create_fullslide(plot = last_plot(), type)
An object of class "patchwork".
library(ggplot2)
p <- ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point() +
labs(title = "My title",
subtitle = "My subtitle",
caption = "My caption") +
theme_grattan()
# Create an image that includes the Grattan logo
p_logo <- create_fullslide(p)