5

再见,

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

让我告诉你我得到了什么。我使用这些函数来生成 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") )
}

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

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

我的问题是:我应该如何将fp_normalfp_bold函数与ph_with_text函数结合起来?

4

2 回答 2

8

我已经更新了软件包以使这种操作更容易。的使用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")

结果

于 2019-02-10T21:48:19.533 回答
2

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

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

ph_add_text对pot函数执行相同的求和运算符。请记住,为了引用某一行,您必须提供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”。

再见

于 2019-02-01T12:26:55.697 回答