我想在幻灯片上组合相同形状的文本和表格。例如,我想在表格上方添加文本,然后在下面添加文本。我想要做的是让下面的ph_with_text
和ph_with_table
函数将它们的str和值附加到体形:
library("officer")
d = read_pptx()
d = add_slide(d, layout="Title and Content", master="Office Theme")
d = ph_with_text(x=d, type = "body", str = 'Text Above')
d = ph_with_table(x=d, type = "body", value = mt)
d = ph_with_text(x=d, type = "body", str = 'Text Below')
print(d, target="test_officer.pptx")
答案 0 :(得分:0)
我担心这不是一种选择。您不能在PowerPoint占位符中组合文本和表格,这是MS PowerPoint的限制,而不是官员的限制。