View source: R/ppt_ph_manipulate.R
ph_slidelink | R Documentation |
Add slide link to a placeholder in the current slide.
ph_slidelink(
x,
type = "body",
id = 1,
id_chr = NULL,
ph_label = NULL,
slide_index
)
x |
an rpptx object |
type |
placeholder type |
id |
placeholder index (integer) for a duplicated type. This is to be used when a placeholder
type is not unique in the layout of the current slide, e.g. two placeholders with type 'body'. To
add onto the first, use |
id_chr |
deprecated. |
ph_label |
label associated to the placeholder. Use column
|
slide_index |
slide index to reach |
ph_with
Other functions for placeholders manipulation:
ph_hyperlink()
,
ph_remove()
fileout <- tempfile(fileext = ".pptx")
loc_title <- ph_location_type(type = "title")
doc <- read_pptx()
doc <- add_slide(doc)
doc <- ph_with(x = doc, "Un titre 1", location = loc_title)
doc <- add_slide(doc)
doc <- ph_with(x = doc, "Un titre 2", location = loc_title)
doc <- on_slide(doc, 1)
slide_summary(doc) # read column ph_label here
doc <- ph_slidelink(x = doc, ph_label = "Title 1", slide_index = 2)
print(doc, target = fileout)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.