slip_in_text {officer} | R Documentation |
append text into a paragraph of an rdocx object
slip_in_text(x, str, style = NULL, pos = "after")
x |
an rdocx object |
str |
text |
style |
text style |
pos |
where to add the new element relative to the cursor, "after" or "before". |
library(magrittr) x <- read_docx() %>% body_add_par("Hello ", style = "Normal") %>% slip_in_text("world", style = "strong") %>% slip_in_text("Message is", style = "strong", pos = "before") print(x, target = tempfile(fileext = ".docx"))