gpt4 book ai didi

r-markdown - 在 Rmarkdown 中从 YAML 调整 Reveal.initialize

转载 作者:行者123 更新时间:2023-12-03 19:47:42 38 4
gpt4 key购买 nike

我有一个在 Rmarkdown 中用这个 YAML header 制作的 revealjs 演示文稿:

---
title: "My title"
author: "My name"
date: November 20, 2018
output:
revealjs::revealjs_presentation:
css: styles.css
---

它工作得很好,但现在我想在 Reveal.initialize 中调整 width。现在我直接在生成 Rmarkdown 的 html 中执行此操作,几乎在文件末尾:

// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
width: 1000,
// Push each slide change to the browser history
history: true,
// Vertical centering of slides
center: false,
// Transition style
transition: 'default', // none/fade/slide/convex/concave/zoom
// Transition style for full page slide backgrounds
backgroundTransition: 'default', // none/fade/slide/convex/concave/zoom

我想要的是能够从 Rmarkdown 的 YAML 中完成。我已经尝试过这种方式,但它不起作用:

---
title: "My title"
author: "My name"
date: November 20, 2018
output:
revealjs::revealjs_presentation:
css: styles.css
revealjs::revealjs_config:
width: 1200
---

有什么想法吗?

最佳答案

最后,我找到了正确的做法:

---
output:
revealjs::revealjs_presentation:
css: styles.css
reveal_options:
width: 1200
---

关于r-markdown - 在 Rmarkdown 中从 YAML 调整 Reveal.initialize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53390133/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com