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

# 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

doc = pptx( ) doc = addSlide( doc, slide.layout = "Title and Content" ) doc = addFooter( doc, "Hi!" ) writeDoc( doc, file = "ex_footer.pptx" )