有没有办法从命令行创建R演示文稿?
https://support.rstudio.com/hc/en-us/articles/200486468-Authoring-R-Presentations
我有以下R演示文稿文件存储在my_file.RPres
文件中。
Title
========================================================
author: Me
date: Jan 9, 2015
transition: none
css: template.css
This is my presentation.
有没有办法在rmarkdown::render()
、knit()
、pandoc()
或其他 R 命令上指定这是一个"R 演示文稿".RPres
文件,而不是ioslides_presentation
、beamer_presentation
或slidy_presentation
?
我的.RPres
文件在标头上没有任何 YAML 元数据,.css
文件是基于 RStudio 生成的带有"预览"和"另存为网页..."的 html 文件创建的。
我在RStudio支持社区页面上问了这个问题,"官方"答案是否定的。 一位同事查看了 github 上的代码,并验证了该方法仅从下拉 UI 调用。 看起来要做到这一点,您必须实际编译自己的包装器。