0

我想在幻灯片上组合相同形状的文本和表格。例如,我想在表格上方添加文本,表格,然后在下方添加文本。我想做的是让下面的ph_with_textandph_with_table函数将它们的 str 和 value 附加到身体形状:

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")
4

1 回答 1

0

恐怕这不是一个选择。您不能在 PowerPoint 占位符内组合文本和表格,这是 MS PowerPoint 的限制,而不是官员的限制。

于 2017-11-28T13:39:02.573 回答