作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何调整呈现为输出格式 beamer
的 R markdown 演示文稿的幻灯片宽度以生成 LaTex/PDF 文件?为了能够快速适应给定的演示设备(宽屏、4:3 屏幕等),理想情况下可以轻松更改纵横比以采用不同的值。
---
title: "Adjust the width/aspect ratio of slides"
output:
# beamer_presentation: default
bookdown::pdf_book:
base_format: rmarkdown::beamer_presentation
---
## Some Slides
some content
最佳答案
您可以将 aspectratio
作为类选项传递。查看 beamer 用户指南以检查可用比率。
---
title: "Adjust the width/aspect ratio of slides"
output:
beamer_presentation:
theme: "default"
keep_tex: true
classoption: aspectratio=169
---
## Some Slides
some content
关于R markdown beamer 演示文稿 : adjust the width/aspect ratio of slides,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66214288/
我是一名优秀的程序员,十分优秀!