如何在 blogdown post 的 header 中包含图像
How to include an image in the header of a blogdown post
我正在使用 Academic Hugo 主题在 R 中建立一个网站。
我使用 RMarkdown 文件创建了一个博客 post。如果我有兴趣在 post 的 header 中插入图片,我应该将它保存到文件夹结构中的哪个路径以及如何将它包含在我的 YAML/markdown 代码中?
我的YAML如下:
---
title: "Do oil prices explain the South African Rand's Performance?"
author: "Tangeni Shatiwa"
date: 2020-06-11T21:13:14-05:00
tags: ["South African Rand", "Brent Crude Oil", "Global Uncertainty","Non-Linear Spline Regression"]
output: html_document
---
理想情况下,我希望在 post 的内容开始之前标题下方显示一张图片
TIA!
有可能!您可以在包含 post 降价文件的文件夹中包含一个名为 featured.jpg
(或 featured.png
)的文件。
那么你只需要修改 YAML header:
---
title: "Do oil prices explain the South African Rand's Performance?"
author: "Tangeni Shatiwa"
date: 2020-06-11T21:13:14-05:00
tags: ["South African Rand", "Brent Crude Oil", "Global Uncertainty","Non-Linear Spline Regression"]
output: html_document
image:
caption: "Oil can"
focal_point: "Center"
alt_text: This is a picture of oil can.
---
它被称为特色图片,您可以在 documentation. It looks e.g. like this post (see source code).
中阅读更多选项
我正在使用 Academic Hugo 主题在 R 中建立一个网站。
我使用 RMarkdown 文件创建了一个博客 post。如果我有兴趣在 post 的 header 中插入图片,我应该将它保存到文件夹结构中的哪个路径以及如何将它包含在我的 YAML/markdown 代码中?
我的YAML如下:
---
title: "Do oil prices explain the South African Rand's Performance?"
author: "Tangeni Shatiwa"
date: 2020-06-11T21:13:14-05:00
tags: ["South African Rand", "Brent Crude Oil", "Global Uncertainty","Non-Linear Spline Regression"]
output: html_document
---
理想情况下,我希望在 post 的内容开始之前标题下方显示一张图片
TIA!
有可能!您可以在包含 post 降价文件的文件夹中包含一个名为 featured.jpg
(或 featured.png
)的文件。
那么你只需要修改 YAML header:
---
title: "Do oil prices explain the South African Rand's Performance?"
author: "Tangeni Shatiwa"
date: 2020-06-11T21:13:14-05:00
tags: ["South African Rand", "Brent Crude Oil", "Global Uncertainty","Non-Linear Spline Regression"]
output: html_document
image:
caption: "Oil can"
focal_point: "Center"
alt_text: This is a picture of oil can.
---
它被称为特色图片,您可以在 documentation. It looks e.g. like this post (see source code).
中阅读更多选项