pptx字幕中的第二行文字

时间:2019-11-07 15:45:16

标签: r officer

我已将标题幻灯片添加到pptx对象,并想在字幕位置添加第二行。

我尝试使用ph_add_fpar函数没有成功。我对这个软件包还是陌生的,所以可能没有使用正确的功能!

    mypowerpoint <- read_pptx() %>%
      add_slide("Title Slide","Office Theme") %>%
    ph_with("Flashy Title",ph_location_type("ctrTitle",position_right = TRUE)) %>%
    ph_with("Catchy Subtitle 1",ph_location_type("subTitle")) %>%
    ph_with("Catchy Subtitle 2",ph_location_type("subTitle")) 

运行上述命令后,我得到了两个彼此重叠的字幕,而不是在与第一个相同的对象中将第二个字幕文本换行。谁能告诉我我缺少什么,或者可以使用更好的功能吗?

1 个答案:

答案 0 :(得分:0)

ph_with支持向量,长度> 1

library(magrittr)
library(officer)
mypowerpoint <- read_pptx() %>%
  add_slide("Title Slide","Office Theme") %>%
  ph_with("Flashy Title",ph_location_type("ctrTitle",position_right = TRUE)) %>%
  ph_with(c("Catchy Subtitle 1", "Catchy Subtitle 2"),ph_location_type("subTitle"))