ReporteRs (version 0.8.2)

pot: Piece of Text (formated text)

Description

Create an object with a text to display and its formatting properties.

Usage

pot(value = "", format = textProperties(), hyperlink, footnote)

Arguments

value

text value or a value that has a format method returning character value.

format

formatting properties (an object of class textProperties).

hyperlink

a valid url to use as hyperlink when clicking on value.

footnote

a Footnote object.

Details

a pot (piece of text) is a convenient way to define a paragraph of text where some text are not all formated the same.

A pot can be associated with an hyperlink.

A pot can be associated with a Footnote. Note that footnotes can not be inserted in a pptx object.

See Also

addParagraph.docx, addParagraph.pptx, addParagraph.bsdoc, Footnote , +.pot

Examples

Run this code
# NOT RUN {
#

# "My tailor is rich" with formatting on some words
pot1 = pot("My tailor", textProperties(color = "red" ) 
  ) + " is " + pot("rich", textProperties(shading.color = "red", 
  font.weight = "bold" ) )

# "Cats and dogs" with formatting on some words
pot2 = pot("Cats", textProperties(color = "red" ) ) + 
  " and " + 
  pot("dogs", textProperties( color = "blue" ), 
    hyperlink = "http://www.wikipedia.org/" )
# }

Run the code above in your browser using DataCamp Workspace