Skip to content

Allow interpolation of fp_text styled text with other text using glue #514

Closed Answered by davidgohel
AmyMikhail asked this question in Q&A
Discussion options

You must be logged in to vote

Hello

Sorry, I don't want to develop these features, it would take time and I don't have it. Also, I think this is a classic and frequent requirement, so these features will probably be implemented in Quarto or in a posit package (in the medium and long term), so it's wiser to not waste my free time on something that will be redone later.

Last but not least, this can easily be done with R programming. The solution lies in the use of R lists and do.call():

library(officer)
compare <- data.frame(name = c("n_total", "n_children", "n_adults"), 
                      value_new = c(50, 0, 50), 
                      value_old = c(45, 0, 45), 
                      change = c(TRUE, FALSE, TRUE))…

Replies: 4 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by davidgohel
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #513 on July 16, 2023 08:08.