在 R 项目中使用 LaTeX 填充 16:9 页面

在 R 项目中使用 LaTeX 填充 16:9 页面

我正在编写一个基于 R-project 中不同图表的演示文稿,使用 LaTeX 创建 pdf 文档。我正在使用带有 beamer 类的 LaTex,我想用当前位于页面中心的元素填充页面,但不填充 A4 纸(16:9)。

\documentclass[8pt, aspectratio=169]{beamer}
\paperwidth = 355pt
\paperheight = 255pt

include-before:
- \hoffset = 15pt 
- \voffset = 5pt 
- \oddsidemargin = -70pt 
- \headheight = 6pt 
- \headsep = -16pt 
- \textheight = 230pt 
- \textwidth = 320pt 
- \footskip = 8pt 
- \pagestyle{fancy} 
- \fancyhf{} 

我尝试设置\documentclass[4paper, aspectratio=169]{beamer}、设置\setbeamersize\geometry但没有任何效果,我该如何修复?

答案1

具有预定纵横比的最小工作示例:

---
output: beamer_presentation
classoption: aspectratio=169  
---

Test

另一个具有自定义纵横比的:

---
output: beamer_presentation
header-includes: \geometry{paperheight=1.5in,paperwidth=12in}
---

Test

答案2

在我的例子中,将 classoption:“aspectratio=169”放在标题末尾可以正常工作。标题如下:

标题:'标题' 作者:“姓名” 日期:“ r Sys.Date()” 输出:beamer_presentation:突出显示:pygments 主题:马德里 颜色主题:起重机 字体主题:专业字体 类选项:“aspectratio = 169”

相关内容