各位R爱好者大家好,
我想知道我们是否可以在 R 中从 docx 创建 pdf 版本(不使用其他转换工具)。我使用ReporteRs
包创建了一个 docx 报告。我想在pdf副本中复制它。是否可以在 R 中不使用任何外部软件?提前谢谢你。
这里有一种方法可以做到这一点。免责声明:这个答案出现在谷歌ReporteRs
组中。
writeDoc( doc, file = docfile)
system(paste("libreoffice --headless --convert-to pdf ", docfile), intern = TRUE)
它需要将 libreoffice 应用程序安装在您的系统中。