body_add_break {officer} | R Documentation |
add a page break into an rdocx object
body_add_break(x, pos = "after")
x |
an rdocx object |
pos |
where to add the new element relative to the cursor, one of "after", "before", "on". |
library(magrittr) doc <- read_docx() %>% body_add_break() print(doc, target = tempfile(fileext = ".docx"))