ph_with_text {officer} | R Documentation |
add text into a new shape in a slide.
This function will be deprecated in favor of ph_with
in the next release.
ph_with_text(x, str, type = "title", index = 1, location = NULL)
x |
a pptx device |
str |
text to add |
type |
placeholder type (i.e. 'body', 'title') |
index |
placeholder index (integer). This is to be used when a placeholder type
is not unique in the current slide, e.g. two placeholders with type 'body', the first
one will be added with index 1 and the second one with index 2.
It is recommanded to use argument |
location |
a placeholder location object. This is a convenient
argument that can replace usage of arguments |
fileout <- tempfile(fileext = ".pptx") doc <- read_pptx() doc <- add_slide(doc, layout = "Title and Content", master = "Office Theme") doc <- ph_with_text(x = doc, type = "title", str = "Un titre") doc <- ph_with_text(x = doc, type = "ftr", str = "pied de page") doc <- ph_with_text(x = doc, type = "dt", str = format(Sys.Date())) doc <- ph_with_text(x = doc, type = "sldNum", str = "slide 1") doc <- add_slide(doc, layout = "Title Slide", master = "Office Theme") doc <- ph_with_text(x = doc, type = "subTitle", str = "Un sous titre") doc <- ph_with_text(x = doc, type = "ctrTitle", str = "Un titre") print(doc, target = fileout )