Rmarkdown和rstudio - 显示js print pdf.css错误

时间:2016-11-04 07:39:47

标签: css r r-markdown reveal.js

在我的Rstudio项目中创建了revealjs-presentation之后,我继续打开它。除了我的浏览器(Chrome)中出现pdf.css不存在的错误之外,这种方法很好。它没有,因为演示文稿正在我的项目目录中的子文件夹中查找它。现在,我可以根据失败的路径添加pdf.css并且演示工作...直到我重新运行它并删除添加的目录(我猜编织过程删除了前面提到的子文件夹?)

这是一个小问题,但这里似乎有一些错误,任何人都知道我能做什么(除了重新安装一切)?

底部的示例

---
title: "Untitled"
output: revealjs::revealjs_presentation
---

## R Markdown

This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.

## Slide with Bullets

- Bullet 1
- Bullet 2
- Bullet 3

## Slide with R Code and Output

```{r}
summary(cars)
```

## Slide with Plot

```{r, echo=FALSE}
plot(cars)
```

这是缺少的文件夹树(来自给定Rstudio项目的relpath):

Failed to load resource: net::ERR_FILE_NOT_FOUND

/TestRevealJs_files/reveal.js-3.3.0/css/print/paper.css

TestRevealJs是项目的名称。

0 个答案:

没有答案