作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将本地目录中的图像/ Material 包含到 Xaringan remark.js 演示文稿中并调整它们的大小。
我正在通过 Mac 上的 Rmd/Rstudio 执行此操作。我希望能够按照 Yihui's docs 中的建议使用宏自定义大小
建议的宏来调整大小对我不起作用。
添加行:
.center[![trachoma](picsfigs/trachoma.jpg)]
---
title: "A Cool Presentation"
output:
xaringan::moon_reader:
css: [default, metropolis, metropolis-fonts]
seal: true
self_contained: true
yolo: false
beforeInit: "macros.js"
nature:
autoplay: 30000
---
- Hello world
---
---
# new slide??
This works:
.center[![trachoma](picsfigs/trachoma.jpg)]
---
But this does not work:
.center[![:scale 50%](picsfigs/trachoma.jpg)]
Nor this
.center[![trachoma][:scale 50%](picsfigs/trachoma.jpg)]
one more slide
---
remark.macros.scale = function (percentage) {
var url = this;
return '<img src="' + url + '" style="width: ' + percentage + '" />';
};
最佳答案
您需要输入 beforeInit: "macros.js"
下 nature
如下。
---
title: "A Cool Presentation"
output:
xaringan::moon_reader:
css: [default, metropolis, metropolis-fonts]
seal: true
self_contained: true
yolo: false
nature:
autoplay: 30000
beforeInit: "macros.js"
---
关于xaringan - 将本地镜像从本地目录包含并调整到 Xaringan (remark.js) 演示文稿中...(通过 Mac 上的 Rstudio 使用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56021346/
我是一名优秀的程序员,十分优秀!