在 blogdown 中包含图像预览 (.Rmd yaml header)
Include image preview in blogdown (.Rmd yaml header)
我尝试了几种方法,但 none 到目前为止都有效。我想在我的主要博客页面上包含一个用 R markdown (.Rmd) 编写的博客 post 的图像预览,其中通常显示许多 post 和项目。我可以使用从 Hugo academic-theme
here
中获取的以下代码使其在普通降价 (.md) 中工作
+++
# Optional image to display on homepage (relative to `static/img/` folder).
image_preview = "bubbles.jpg"
+++
结果如图所示 here(参见 Projects
部分)。
但是,我不知道如何将其翻译成我的博客 post 中的 .Rmd
yaml
。我可以在顶部使用下面的图片,但由于我使用的是 toc
table 内容选项,该图片仅在 toc
之后显示,因此不会出现在post 在主页预览。
---
title: some title
author: some author
date: 'some date'
slug: some-slug
categories:
- some category
tags:
- some-tag
output:
blogdown::html_page:
toc: true
number_sections: true
toc_depth: 2
---
![](/post/img/some_img.png)
理想情况下,图片只显示在主页的预览中,而不显示在实际博客中 post(目的是 "lure" reader 具有视觉吸引力的图片实际内容),但如果不可能的话,如果图像显示在实际 post 之上,只要它显示在主页预览中,我也很好。
如果 image_preview
参数适用于 md
文档,它也应该适用于 Rmd 参数,前提是你使用 :
的语法我猜:
---
title: some title
author: some author
date: 'some date'
slug: some-slug
categories:
- some category
tags:
- some-tag
output:
blogdown::html_page:
toc: true
number_sections: true
toc_depth: 2
image_preview: 'bubbles.jpg'
---
我尝试了几种方法,但 none 到目前为止都有效。我想在我的主要博客页面上包含一个用 R markdown (.Rmd) 编写的博客 post 的图像预览,其中通常显示许多 post 和项目。我可以使用从 Hugo academic-theme
here
+++
# Optional image to display on homepage (relative to `static/img/` folder).
image_preview = "bubbles.jpg"
+++
结果如图所示 here(参见 Projects
部分)。
但是,我不知道如何将其翻译成我的博客 post 中的 .Rmd
yaml
。我可以在顶部使用下面的图片,但由于我使用的是 toc
table 内容选项,该图片仅在 toc
之后显示,因此不会出现在post 在主页预览。
---
title: some title
author: some author
date: 'some date'
slug: some-slug
categories:
- some category
tags:
- some-tag
output:
blogdown::html_page:
toc: true
number_sections: true
toc_depth: 2
---
![](/post/img/some_img.png)
理想情况下,图片只显示在主页的预览中,而不显示在实际博客中 post(目的是 "lure" reader 具有视觉吸引力的图片实际内容),但如果不可能的话,如果图像显示在实际 post 之上,只要它显示在主页预览中,我也很好。
如果 image_preview
参数适用于 md
文档,它也应该适用于 Rmd 参数,前提是你使用 :
的语法我猜:
---
title: some title
author: some author
date: 'some date'
slug: some-slug
categories:
- some category
tags:
- some-tag
output:
blogdown::html_page:
toc: true
number_sections: true
toc_depth: 2
image_preview: 'bubbles.jpg'
---