使用.Rtex扩展名处理文件,例如RStudio中的knitr / Sweave文件

时间:2014-01-13 22:38:44

标签: r latex knitr rstudio

有没有办法教RStudio将.Rtex扩展名的文件视为knitr / Sweave文件(例如.Rnw个文件)?

1 个答案:

答案 0 :(得分:4)

快速浏览源代码会让我觉得文件类型关联在这里定义:

https://github.com/rstudio/rstudio/blob/aaee8fbd88c213a301b9f24d1cecd64ccab0df9a/src/gwt/src/org/rstudio/studio/client/common/filetypes/FileTypeRegistry.java

我怀疑添加:

 register("*.rtex", SWEAVE, icons.iconRsweave());

第170行将会这样做。我目前没有用于构建RStudio的机器,因此无法尝试...