body_add_blocks
From officer v0.3.14
by David Gohel
add a list of blocks into a document
add a list of blocks produced by block_list
into
into an rdocx object
Usage
body_add_blocks(x, blocks, pos = "after")
Arguments
- x
an rdocx object
- blocks
set of blocks to be used as footnote content returned by function
block_list
.- pos
where to add the new element relative to the cursor, one of "after", "before", "on".
See Also
Other functions for adding content:
body_add_break()
,
body_add_docx()
,
body_add_fpar()
,
body_add_gg()
,
body_add_img()
,
body_add_par()
,
body_add_table()
,
body_add_toc()
Examples
# NOT RUN {
library(magrittr)
img.file <- file.path( R.home("doc"), "html", "logo.jpg" )
bl <- block_list(
fpar(ftext("hello", shortcuts$fp_bold())),
fpar(
ftext("hello world", shortcuts$fp_bold()),
external_img(src = img.file, height = 1.06, width = 1.39)
)
)
x <- read_docx() %>%
body_add_blocks( blocks = bl ) %>%
print(target = tempfile(fileext = ".docx"))
# }
Community examples
Looks like there are no examples yet.