# NOT RUN {
library(magrittr)
fileout <- tempfile(fileext = ".pptx")
my_pres <- read_pptx() %>%
add_slide(layout = "Title and Content", master = "Office Theme") %>%
ph_empty(location = ph_location_type(type = "body"))
small_red <- fp_text(color = "red", font.size = 14)
my_pres <- my_pres %>%
ph_add_par(level = 3) %>%
ph_add_text(str = "A small red text.", style = small_red) %>%
ph_add_par(level = 2) %>%
ph_add_text(str = "Level 2")
print(my_pres, target = fileout)
# another example ----
fileout <- tempfile(fileext = ".pptx")
doc <- read_pptx() %>%
add_slide(layout = "Title and Content", master = "Office Theme") %>%
ph_with("Un titre 2",
location = ph_location_type(type = "title")) %>%
ph_empty(location = ph_location(rotation = 90, bg = "red",
label = "myph")) %>%
ph_add_par(ph_label = "myph", level = 2) %>%
ph_add_text(str = "Jump here to slide 2!", ph_label = "myph")
print(doc, target = fileout)
# }
Run the code above in your browser using DataLab