View source: R/ppt_ph_with_methods.R
phs_with | R Documentation |
A sibling of ph_with that fills mutiple placeholders at once. Placeholder locations are
specfied using the short form syntax. The location and corresponding object are passed as key value pairs
(phs_with("short form location" = object)
). Under the hood, ph_with is called for each pair. Note
that phs_with
does not cover all options from the ph_location_*
family and is also less customization. It is a
covenience wrapper for the most common use cases. The implemented short forms are listed in section
"Short forms"
.
phs_with(x, ..., .dots = NULL, .slide_idx = NULL)
x |
A |
... |
Key-value pairs of the form |
.dots |
List of key-value pairs |
.slide_idx |
Numeric indexes of slides to process. |
The following short forms are implemented and can be used as the parameter in the function
call. The corresponding function from the ph_location_*
family (called under the hood) is displayed on the
right.
Short form | Description | Location function |
"left" | Keyword string | ph_location_left() |
"right" | Keyword string | ph_location_right() |
"fullsize" | Keyword string | ph_location_fullsize() |
"body [1]" | String: type + index in brackets (1 if omitted) | ph_location_type("body", 1) |
"my_label" | Any string not matching a keyword or type | ph_location_label("my_label") |
1 | Length 1 integer | ph_location_id(1) |
ph_with()
, add_slide()
library(officer)
# use key-value format to fill phs
x <- read_pptx()
x <- add_slide(x, "Two Content")
x <- phs_with(x,
`Title 1` = "A title", # ph label
dt = "Jan. 26, 2025", # ph type
`body[2]` = "Body 2", # ph type + type index
left = "Left side", # ph keyword
`6` = "Footer" # ph index
)
# reuse ph content via the .dots arg
x <- read_pptx()
my_ph_list <- list(`6` = "Footer", dt = "Jan. 26, 2025")
x <- add_slide(x, "Two Content")
x <- phs_with(x, `Title 1` = "Title A", `body[2]` = "Body A", .dots = my_ph_list)
x <- add_slide(x, "Two Content")
x <- phs_with(x, `Title 1` = "Title B", `body[2]` = "Body B", .dots = my_ph_list)
# use the .slide_idx arg to select which slide(s) to process
x <- read_pptx()
x <- add_slide(x, "Two Content")
x <- add_slide(x, "Two Content")
x <- phs_with(x, `6` = "Footer", dt = "Jan. 26, 2025", .slide_idx = 1:2)
# run to see results
## Not run:
file <- tempfile(fileext = ".pptx")
print(x, file)
browseURL(file) # may not work on all systems
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.