gpt4 book ai didi

r - 居中ppt幻灯片标题

转载 作者:行者123 更新时间:2023-12-01 12:34:18 26 4
gpt4 key购买 nike

使用 ReporteRs 包,我们可以从 R 代码创建 power point 演示。我尝试创建一个标题为居中的幻灯片。

这是我用来创建幻灯片的基本代码:

library( ReporteRs )
mydoc = pptx( ) # try adding argument: template = 'template.pptx' here
mydoc = addSlide( mydoc, "Title and Content" )
mydoc = addTitle( mydoc, "This is a title" )
writeDoc( mydoc, "pp_simple_example.pptx" )

这将创建一个标题位于左侧的幻灯片。不幸的是,addTitle 没有公开任何参数来格式化文本或更改其位置。我还查看了包选项:

 options()[grep('ReporteRs',names(options()))] 

但没有成功。

最佳答案

一种解决方案是使用预定义模板(如我的问题下方所评论)创建模板:

  1. 制作演示文稿
  2. 选择文本居中的模板。您可以添加带有文本的虚拟幻灯片,并从预定义的主题中选择一个(“设计”选项卡)
  3. 别忘了取下幻灯片。并将演示文稿保存为 basic_template.ppx

现在在 R 代码中使用这个模板:

mydoc = pptx( template='basic_template.pptx') ## give the whole path here

关于r - 居中ppt幻灯片标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31039115/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com