如何在 xaringan 自包含幻灯片中嵌入 html 图像

How to embed html images in xaringan self-contained slides

下面这张幻灯片在knit后可以预览,但是移动到别处后,图片就不能显示了。

---
title: "Journal club"
author: "Timing Liu"
date: "`r Sys.Date()`"
output:
  xaringan::moon_reader:
    lib_dir: libs
    css: 
      - default
      - default-fonts
    self_contained: true
    nature:
      highlightStyle: github
      highlightLines: true
      countIncrementalSlides: false
---

<img src = 2021-01-19-23-07-58.png />

?moon_reader 的文档显示如下:

should not contain the string "/>" when it is written with the syntax  <img src="PATH" />

我相信我的路径应该已经符合标准,因此我不确定为什么 html 图像没有被渲染。使用 ![](2021-01-19-23-07-58.png) 等 markdown 语法加载的图像可以在独立幻灯片的其他位置加载。

尝试使用 Firefox 和 Chrome Windows 使用最新的 Xaringan。

谢谢!

由于我无法访问您的图片,这里是一个有效的示例:

---
title: "Journal club"
author: "Timing Liu"
date: "`r Sys.Date()`"
output:
  xaringan::moon_reader:
    lib_dir: libs
    css: 
      - default
      - default-fonts
    self_contained: true
    nature:
      highlightStyle: github
      highlightLines: true
      countIncrementalSlides: false
---

<img src = "https://blog.hostonnet.com/wp-content/uploads/2014/07/galaxy.jpg" />

输出(第 2/2 页):

Chrome也会显示一些Firefox中没有的本地图片