slip_in_footnote {officer} | R Documentation |
append a new footnote into a paragraph of an rdocx object
slip_in_footnote(x, style = NULL, blocks, pos = "after")
x |
an rdocx object |
style |
text style to be used for the reference note |
blocks |
set of blocks to be used as footnote content returned by
function |
pos |
where to add the new element relative to the cursor, "after" or "before". |
library(magrittr) img.file <- file.path( R.home("doc"), "html", "logo.jpg" ) bl <- block_list( fpar(ftext("hello", shortcuts$fp_bold())), fpar( ftext("hello", shortcuts$fp_bold()), stext(" world", "strong"), external_img(src = img.file, height = 1.06, width = 1.39) ) ) x <- read_docx() %>% body_add_par("Hello ", style = "Normal") %>% slip_in_text("world", style = "strong") %>% slip_in_footnote(style = "reference_id", blocks = bl) print(x, target = tempfile(fileext = ".docx"))