我正在 R 中使用 Quarto 来渲染 Word 文档。我的文档设置如下:
---
title: "Project"
format: docx
project:
output-dir: "/directory_path/"
editor: visual
bibliography: references.bib
reference-section-title: References
---
代码运行完整的渲染,没有错误,但我嵌入的图像没有显示,只显示图像名称。该图像在编辑器中显示预览,所以我认为我的路径是正确的。
我尝试过更改大小并尝试使用
\begin{figure} ... \end{figure}
,但我无法让图像显示在Word 输出中。我一直在关注嵌入图像的四开文档:链接此处。
有什么建议吗?
谢谢!
\begin{figure}
是乳胶专用的。
以下是有关如何使用 Word 输出正确渲染图像的最小示例:
---
title: "Project"
format: docx
project:
output-dir: "./directory_path/"
---
Here is some text
Here is an image:
![image](Polar_Bear_-_Alaska.jpg)
我从这里得到了图片:https://es.wikipedia.org/wiki/Ursus_maritimus#/media/Archivo:Polar_Bear_-_Alaska.jpg