View source: R/pptx_slide_manip.R
move_slide | R Documentation |
Move a slide in a pptx presentation.
move_slide(x, index = NULL, to)
x |
an rpptx object |
index |
slide index, default to current slide position. |
to |
new slide index. |
cursor is set on the last slide.
read_pptx()
Other functions slide manipulation:
add_slide()
,
on_slide()
,
remove_slide()
,
set_notes()
x <- read_pptx()
x <- add_slide(x)
x <- ph_with(x, "Hello world 1", location = ph_location_type())
x <- add_slide(x)
x <- ph_with(x, "Hello world 2", location = ph_location_type())
x <- move_slide(x, index = 1, to = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.