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.
假设我有一份很长的报告,它产生了很多knitr以 pdf 格式制作的数字,并且它与 LaTeX 配合得非常好。在项目结束时,我的合著者也希望获得基于光栅的数字。一种选择是使用 ImageMagick 转换所有内容。另一种选择是为每个 chunk 指定dev = c("jpg", "pdf"),但考虑到数字的数量,这可能很麻烦。
knitr
dev = c("jpg", "pdf")
是否有一个全球性的开关可以同时knitr制作 pdf 和其他格式的数字?
我认为在序言中
opts_chunk$set(dev = c("pdf", "jpg"))
应该做。当然是在一个 R 块内。