0

各位R爱好者大家好,

我想知道我们是否可以在 R 中从 docx 创建一个 pdf 版本(不使用其他转换工具)。ReporteRs我使用包创建一个 docx 报告。我想把它复制成 pdf 副本。是否可以在 R 中,而不使用任何外部软件?先感谢您。

4

1 回答 1

2

这是一种方法。免责声明:这个答案出现在 google 组中ReporteRs

writeDoc( doc, file = docfile)
system(paste("libreoffice --headless --convert-to pdf  ", docfile), intern = TRUE)

它需要在您的系统中安装 libreoffice 应用程序。

于 2015-07-05T22:39:31.677 回答