更改通过插入图像选项插入的 Blogdown about.md 文件中的图像大小

Change size of image in Blogdown about.md file inserted via Insert image option

我正在尝试更改我的 Blogdown about.md 文件中头像的大小。主题是Hugo-lithium

我已使用 'Addins' 中的 'Insert Image' 选项将我的图像插入到 about.md 文件中。出现在查看器中的图片尺寸巨大。生成的代码如下所示:

---
date: "2020-07-22T21:48:51-07:00"
title: About
---

![](/./about_files/Monika_headshot.png)

I am passionate about empowering all individuals who care about the empirical underpinnings of policy, with direct access to data.

当我尝试预览时出现以下错误,即使图像在指示的文件中。

pandoc: /./about_files/Monika_headshot.png: openBinaryFile: does not exist (No such file or directory)
Error: pandoc document conversion failed with error 1
Execution halted

我尝试以降价方式更改尺寸,但当我这样做时图像完全消失了:

![](/./about_files/Monika_headshot.png =250x250)

![](/./about_files/Monika_headshot.png | width=100))

这些都没有用。我还能做什么?

它应该与花括号一起工作:

![](/./about_files/Monika_headshot.png){width=250px}

我删除了从 Blogdown about.md 文件复制并粘贴到新文件 about.Rmd 中的内容,该文件与 about.md 文件位于同一文件夹中。 .Rmd 文件中的图像使用上述解决方案按预期渲染

![](/./about_files/Monika_headshot.png){width=250px}