Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
各位R爱好者大家好,
我想知道我们是否可以在 R 中从 docx 创建一个 pdf 版本(不使用其他转换工具)。ReporteRs我使用包创建一个 docx 报告。我想把它复制成 pdf 副本。是否可以在 R 中,而不使用任何外部软件?先感谢您。
ReporteRs
这是一种方法。免责声明:这个答案出现在 google 组中ReporteRs。
writeDoc( doc, file = docfile) system(paste("libreoffice --headless --convert-to pdf ", docfile), intern = TRUE)
它需要在您的系统中安装 libreoffice 应用程序。