unordered_list
From officer v0.3.4
by David Gohel
unordered list
unordered list of text for PowerPoint presentations. Each text is associated with a hierarchy level.
Usage
unordered_list(str_list = character(0), level_list = integer(0),
style = NULL)
Arguments
- str_list
list of strings to be included in the object
- level_list
list of levels for hierarchy structure
- style
text style, a
fp_text
object list or a singlefp_text
objects. Usefp_text(font.size = 0, ...)
to inherit from default sizes of the presentation.
See Also
Examples
# NOT RUN {
unordered_list(
level_list = c(1, 2, 2, 3, 3, 1),
str_list = c("Level1", "Level2", "Level2", "Level3", "Level3", "Level1"),
style = fp_text(color = "red", font.size = 0) )
# }
Community examples
Looks like there are no examples yet.