使用默认几何设置创建演示文稿时beamer
,生成的幻灯片在高分辨率屏幕上相对较小。如何正确重新缩放整个演示文稿,以使 100% 缩放级别比平时大四倍。演示文稿的外观必须保持不变:字体大小、图像、设计元素等应与页面大小保持相同大小。
简单地更改页面布局并geometry
不能获得所需的结果。我可以以此为起点,手动更改每个布局参数(字体大小乘以四等),但这种解决方案并不理想。我猜,最迟在尝试调整主题元素的大小时(例如 CambridgeUS,参见 MWE),这种方法变得太复杂了。必须是一个更简单的解决方案。
梅威瑟:
\documentclass{beamer}
%\geometry{paperwidth=128mm,paperheight=96mm} % this is equivalent to the default settings of beamer with default aspectratio=43
\geometry{paperwidth=512mm,paperheight=384mm} % page is 4x wider/higher but font size etc. will be smaller in relation to the page size
\usetheme{CambridgeUS} % add some design; the design elements also do not stretch when increasing the page size
\begin{document}
\begin{frame}{The title}
Some content
\end{frame}
\end{document}
我知道可以使用 选项更改打开 PDF 时选择的缩放比例hyperref
。pdfstartview
但这不是我想要的。基本上,默认 100% 的缩放比例应该是 25%,或者:PDF 应该以 400% 的默认缩放比例打开,即 100%。
有人可能会批评阅读器只能手动放大演示文稿,但根据 PDF 查看器的不同,最大缩放比例可能会受到限制。虽然 Acrobat Reader 可以放大到 6400%,但 Google Chrome 最多只能放大到 500%。
答案1
您可以使用该pgfpages
包将结果调整为更大的页面尺寸
\documentclass{beamer}
\usepackage{pgfpages}
\pgfpagesuselayout{resize to}[physical paper height=384mm,physical paper width=512mm]
\usetheme{CambridgeUS} % add some design; the design elements also do not stretch when increasing the page size
\begin{document}
\begin{frame}{The title}
Some content
\end{frame}
\end{document}
(如果您的幻灯片上有视频或类似的多媒体内容,请小心,它们可能会显示在错误的位置)