假设您具有以下Rmd(请参见../Christoph999/Test/blob/master/test.md
---
title: "Untitled"
author: "Myname"
date: "5 April 2019"
output:
html_document:
keep_md: yes
number_sections: yes
toc: yes
toc_depth: 2
pdf_document:
number_sections: yes
toc: yes
toc_depth: '2'
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
text
![Some text here.](../project/pics/myimage.png?raw=true){width=400px}
text
我使用/project/pics/
中的图片将所有内容推送到github(.md文件位于/project
中。但是,当我查看.md文件时,图像不显示。当我将鼠标移到标题上时它说
https://github.com/user/project/blob/project/pics/myimage.png?raw=true
blob/
会显示什么?从RStudio运行时,一切看起来都很好。如果可以的话,我将不胜感激。 (我使用Firefox)
编辑文件夹结构如下
/project
/.git
/pics
*myimage.png
* Rmd
和../project/pics/myimage.png
应该指向正确的位置吗?
答案 0 :(得分:1)
感谢@richard Telfor,解决方案是
text
![Some text here.](pics/myimage.png?raw=true){width=400px}
text
请注意:该代码不适用于pdf,请参见here