
Last chance! 50% off unlimited learning
Sale ends in
The function lets add text within flextable
objects with function compose()
.
It should be used inside a call to as_paragraph()
.
as_chunk(x, props = NULL, formatter = format_fun, ...)
text or any element that can be formatted as text
with function provided in argument formatter
.
an officer::fp_text()
object to be used to format the text.
If not specified, it will be the default value corresponding to the cell.
a function that will format x as a character vector.
additional arguments for formatter
function.
Other chunk elements for paragraph:
as_bracket()
,
as_b()
,
as_image()
,
as_i()
,
as_sub()
,
as_sup()
,
gg_chunk()
,
hyperlink_text()
,
linerange()
,
lollipop()
,
minibar()
,
plot_chunk()
# NOT RUN {
library(officer)
ft <- flextable( head(iris))
ft <- compose( ft, j = "Sepal.Length",
value = as_paragraph(
"Sepal.Length value is ",
as_chunk(Sepal.Length, props = fp_text(color = "red"))
),
part = "body")
ft <- color(ft, color = "gray40", part = "all")
ft <- autofit(ft)
ft
# }
Run the code above in your browser using DataLab