ReporteRs (version 0.8.10)

addFooter.pptx: Insert a footer shape into a document pptx object

Description

Insert a footer shape into the current slide of a pptx object.

Usage

# S3 method for pptx
addFooter(doc, value, ...)

Arguments

doc

pptx object

value

character value to add into the footer shape of the current slide.

...

further arguments, not used.

Value

a document object

See Also

pptx, addDate.pptx , addPageNumber.pptx

Examples

Run this code
# NOT RUN {
doc = pptx( )
doc = addSlide( doc, slide.layout = "Title and Content" )
doc = addFooter( doc, "Hi!" )
writeDoc( doc, file = "ex_footer.pptx" )
# }

Run the code above in your browser using DataCamp Workspace