Skip to contents

Format for converting from R to Powerpoint using Birmingham and Solihull ICS branded slide template

Usage

bsol_slide_template(...)

Arguments

...

additional arguments to pass

Value

an R script shell that generates a Powerpoint document when run

Examples

if (FALSE) { # \dontrun{
library(officer)
# this adds slide_template into the environment
bsol_presentation_officer()

my_pres <- read_pptx(slide_template)

# Example slide
my_pres <- add_slide(my_pres, layout = "Title Slide", master="default")

# Write to PowerPoint
print(my_pres, target = "example.pptx")

} # }