Description Usage Arguments Details See Also Examples
View source: R/slide.layouts.pptx.R
Get layout names that exist into the template used when pptx has been created.
1 2 | ## S3 method for class 'pptx'
slide.layouts(doc, layout, ...)
|
doc |
Object of class |
layout |
optional single string value, one of the layout names |
... |
further arguments, not used. |
Available names are layout names of the template document (e.g. Title and Content , Two Content, etc.). If layout is specified, the layout representation will be produced in a plot. This can be useful to check available shapes.
pptx
, addSlide.pptx
, slide.layouts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | if( check_valid_java_version() ){
doc.filename = "addFlexTable_example.pptx"
doc = pptx( title = "title" )
layouts = slide.layouts(doc)
layouts
# loop over layout names to plot each slide style
for(i in layouts ){
slide.layouts(doc, i )
title(sub = i )
}
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.