officer (version 0.3.5)

annotate_base: annotate PowerPoint base document

Description

generates a slide from each layout in the base document to identify the placeholder indexes, master names and indexes.

Usage

annotate_base(path = NULL, output_file = "annotated_layout.pptx")

Arguments

path

path to the pptx file to use as base document or NULL to use the officer default

output_file

filename to store the annotated powerpoint file or NULL to suppress generation

Value

x rpptx object of the annotated PowerPoint file

Examples

Run this code
# NOT RUN {
# To generate an anotation of the default base document with officer:
annotate_base(output_file = tempfile(fileext = ".pptx"))

# To generate an annotation of the base document 'mydoc.pptx' and place the
# annotated output in 'mydoc_annotate.pptx'
# annotate_base(path = 'mydoc.pptx', output_file='mydoc_annotate.pptx')

# }

Run the code above in your browser using DataCamp Workspace