我想将xaringan演示文稿的长宽比更改为16:9。我想如果我可以创建一个自定义的CSS主题,那将是可能的。但是,这对我来说有点过头了。

那么,有没有真正简单的方法呢?

最佳答案

这已经很容易实现,因此非常容易。只需在YAML中添加以下内容(除了YAML中的所有其他内容):

output:
  xaringan::moon_reader:
    nature:
      ratio: '16:9'

这是我的默认启动YAML。也许您可以根据自己的意愿进行调整。
---
title: "My title"
author: "Claus<br>UCPH Biostatistics<br>.small[[email protected] ]"
date: 'Some day 2019'
output:
  xaringan::moon_reader:
    lib_dir: libs
    css: ['default', 'hygge']
    seal: true
    nature:
      ratio: '16:9'
      slideNumberFormat: '%current%'
      highlightStyle: ir-black
      highlightLines: true
      countIncrementalSlides: false
---

关于r - xaringan:更改长宽比的简便方法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54180156/

10-10 19:54