body_add_par {officer} | R Documentation |
add a paragraph of text into an rdocx object
body_add_par(x, value, style = NULL, pos = "after")
x |
a docx device |
value |
a character |
style |
paragraph style name |
pos |
where to add the new element relative to the cursor, one of "after", "before", "on". |
library(magrittr) doc <- read_docx() %>% body_add_par("A title", style = "heading 1") %>% body_add_par("Hello world!", style = "Normal") %>% body_add_par("centered text", style = "centered") print(doc, target = tempfile(fileext = ".docx") )