【发布时间】:2016-12-25 15:28:54
【问题描述】:
我正在编写一个降价文档,但我想整理我的文件夹,以便更轻松地为我的文档存储我所有的东西。
我有一些图像想要放入文档中,但它们存储在相对于 .RMD 文档的名为 Images 的子文件夹中。
我该如何设置,以免出现此错误:
pandoc: Could not fetch New%20file.png
New file.png: openBinaryFile: does not exist (No such file or directory)
Error: pandoc document conversion failed with error 67
Execution halted
这是我的代码:
---
title: "Markdown Tutorial"
author: "Me"
date: "August 18, 2016"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, fig.path='Images/')
```
# Creating and Setting Your Document
To create your first markdown document, open up RStudio and clic on File > New File > R Markdown...

【问题讨论】:
标签: r markdown rstudio r-markdown