11

我有一个全局~/.Rprofile文件和另一个.Rprofile文件位于我项目的当前工作目录中,并且两者都具有以下内容:

.First() <- function() {
options(rstudio.markdownToHTML = 
  function(inputFile, outputFile) {      
    system(paste("pandoc", shQuote(inputFile), "-s --webtex -o", shQuote(outputFile)))
  }
)  
}

不幸的是,当我打开 RStudio 应用程序时,它们似乎都没有工作。我正在尝试做的目的是让“Knit HTML”按钮呈现具有内联 LaTeX 的 Markdown 文件,使用 webtex 作为 LaTeX 渲染器通过 Pandoc 处理。

有谁知道我如何检查我的.Rprofile文件是否在启动时加载?

谢谢你的帮助!

发布答案编辑(在乔希的回答之后): 为清楚起见,我的工作项目的.Rprofile文件(有效)现在如下所示:

options(rstudio.markdownHTML =
  function(inputFile, outputFile) {
    system(paste("pandoc", shQuote(inputFie), "-s --webtex -o", shQuote(outputFile)))
  }
)
 \\ you will need to end with a blank carriage return underneath
4

1 回答 1

10

R 文档应该有助于了解如何处理 .Rprofiles。在控制台执行以下命令:

> ?Startup

相关部分表明您需要将项目 .Rprofile 放在启动项目时将加载的初始工作目录中。因此,如果您的项目是~/foo/foobar.Rproj,那么您应该拥有您的配置文件~/foo/.Rprofile,并确保在启动时,初始工作目录是~/foo/. 您可以在 RStudio 控制台窗格顶部的标题栏中看到这一点。

另外,为了确认正确的 .Rprofile 实际正在加载,我会亲自进行测试以查看正在拾取哪个(如果有)配置文件。例如,包括:

print("This is the Rprofile inside the foo project!")

这是另一个有关使其工作的示例:

http://support.rstudio.org/help/discussions/suggestions/1095-different-rprofile-for-a-project#comment_15690293

最后,如果在项目中加载了正确的 .Rprofile,那么您的代码一定有问题。不过,看起来您是从我们的文档中获得的,所以如果您加载了配置文件,并且仍然遇到问题,请告诉我们。您可以在我们的支持线程上发布新的讨论。

乔什

产品经理 - RStudio

于 2012-11-29T21:16:15.900 回答