很高兴官员具有创建演示文稿内部幻灯片链接的功能。但是我不知道如何从可用的示例中使用它。我从未在下面的示例中看到指向页面的实际超链接,例如:
fileout <- tempfile(fileext = ".pptx")
doc <- read_pptx()
doc <- add_slide(doc, layout = "Title and Content", master = "Office Theme")
doc <- ph_with_text(x = doc, type = "title", str = "Un titre 1")
doc <- add_slide(doc, layout = "Title and Content", master = "Office Theme")
doc <- ph_with_text(x = doc, type = "title", str = "Un titre 2")
doc <- on_slide(doc, 1)
slide_summary(doc) # read column id here
doc <- ph_slidelink(x = doc, id_chr = "2", slide_index = 2)
print(doc, target = fileout )
在这里,我看不到第 2 页的任何链接出现在任何地方...您能帮帮我吗?谢谢!!