通过在 R 上使用 officer 包在 pptx 上使用多种格式的文本

Mutliple formatted text on pptx by using officer package on R

再见,

我正在编写代码以使用 officer 包生成自动报告。我想知道如何以及是否可以用不同的字体写一些文本。就我而言,我想写一些普通的文字和一些粗体字。

让我告诉你我得到了什么。我使用这些函数生成 fp_text 个对象:

fp_normal <- function(){
return( fp_text(color = "black", font.size = 16,
        bold = FALSE, italic = FALSE,
        underlined = FALSE, font.family = "Arial", 
        shading.color = "transparent") )
}


fp_bold <- function(){
return( fp_text(color = "black", font.size = 16,
        bold = TRUE, italic = FALSE,
        underlined = FALSE, font.family = "Arial", 
        shading.color = "transparent") )
}

我曾经使用求和运算符和函数 textProperties 组合使用 pot 函数:

pot("not bold ") + pot("and bold", textProperties(font.weight = "bold") )

My question is: how should I combine fp_normal and fp_bold functions with ph_with_text function?

好的,最后我想我明白了。

应用不同的样式足以将ph_with_text函数与ph_add_text函数结合起来。

ph_add_textpot 函数执行相同的求和运算符。请记住,为了引用特定行,您必须提供 id_chr 参数。您可以在 运行 ph_with_text 之后使用 slide_summary(ppt) 命令推断出正确的值.

ppt <- read_pptx()
ppt <- add_slide(ppt, "Title and Content", master = "Office Theme")
ppt <- ph_with_text(ppt, "Some NOT bold text ", type = "body", index = 1)

slide_summary(ppt) # I see that the id is 2. Now I can delete this line.

ppt <- ph_add_text(ppt, "and some bold text", type = "body", style = fp_bold(), id_chr = 2)
print(ppt, target = "boldTest.pptx")

对于 fp_bold() 函数,请参见上面的问题。 在这一点上,我们可以通过继续使用 ph_add_text 添加不同格式的其他文本片段(如果我们想换行,也可以使用 "\n"。

再见

我已经更新了包,使这种操作更容易。 id_chr 的使用并不容易,下面的代码提供了不使用它的优势:)

library(magrittr)
library(officer)

fp_normal <- fp_text(font.size = 24)
fp_bold <- update(fp_normal, bold = TRUE)
fp_red <- update(fp_normal, color = "red")

pars <- block_list(
  fpar(ftext("not bold ", fp_normal), ftext("and bold", fp_bold)),
  fpar(ftext("red text", fp_red))
)
my_pres <- read_pptx() %>%
  add_slide(layout = "Title and Content", master = "Office Theme") %>%
  ph_with(pars, location = ph_location_type(type = "body") ) 

print(my_pres, target = "test.pptx")