officer (version 0.1.4)

ph_add_par: append paragraph

Description

append a new empty paragraph in a placeholder

Usage

ph_add_par(x, type = NULL, id_chr = NULL, level = 1)

Arguments

x

a pptx device

type

placeholder type

id_chr

placeholder id (a string). This is to be used when a placeholder type is not unique in the current slide, e.g. two placeholders with type 'body'. Values can be read from slide_summary.

level

paragraph level

Examples

Run this code
# NOT RUN {
library(magrittr)

fileout <- tempfile(fileext = ".pptx")
default_text <- fp_text(font.size = 0, bold = TRUE, color = "red")

doc <- read_pptx() %>%
  add_slide(layout = "Title and Content", master = "Office Theme") %>%
  ph_with_text(type = "body", str = "A text") %>%
  ph_add_par(level = 2) %>%
  ph_add_text(str = "and another, ", style = default_text ) %>%
  ph_add_par(level = 3) %>%
  ph_add_text(str = "and another!",
    style = update(default_text, color = "blue"))

print(doc, target = fileout)
# }

Run the code above in your browser using DataCamp Workspace