包括在rmarkdown中使用相对路径的外部数字

时间:2016-03-14 01:00:33

标签: r-markdown

如何使用相对路径包含外部数字?

我用:

启动我的rmd文件
```{r setup,include=F}
knitr::opts_chunk$set(cache=F,echo=F)
knitr::opts_knit$set(root.dir = '/Users/dosc3612/odrive/CUDrive/real-time_interpolation',
child.path='/Users/dosc3612/odrive/CUDrive/real-time_interpolation')
```

然后包括:

# Heading 1
some text referring to figure 1. ![Figure 1. a map from qgis](data/gis/fig1alt-location_map2.png)

我的rmd文件位于/ Users / dosc3612 / odrive / CUDrive / real-time_interpolation / reports / real-time,所以我的理解是它会查找该目录中的数字。但基于chunk options help我认为我可以使用child.path来设置文档中的相对路径,但似乎并非如此。

"数据/ GIS"是" / Users / dosc3612 / odrive / CUDrive / real-time_interpolation"

中的子文件夹

感谢

1 个答案:

答案 0 :(得分:2)

不确定问题是否仍然适用于任何人,但我遇到了类似的问题,并且无法获得设置路径(root.dir,child.path等)的任何选项,但是用于设置相对路径,这对我有用:

![Figure 1. a map from qgis](../../data/gis/fig1alt-location_map2.png)