我遇到了一个小问题。beamer
使用 16:9 宽高比时,我的图像似乎失真了,但如果使用标准 4:3,图像就没问题了。
有人能提供任何援助或帮助吗?
谢谢。
编辑:
为了包含图像,我使用以下代码
\includegraphics[scale=x.xx]{NAME.png}
其中 x.xx 被改变以使图像正确地适合幻灯片。通常将其设置为 0.60 和 0.80 之间。
答案1
scale 选项会根据图像的原始大小缩放图像。如果您更改aspectratio
投影仪幻灯片的宽度,纸张宽度会发生变化,图像看起来会比框架的宽度小。如果这不是您想要的行为,您可以指定图像相对于框架宽度的宽度:
\documentclass[
aspectratio=169
]{beamer}
\begin{document}
\begin{frame}
\includegraphics[scale=0.5]{example-image-duck}
\end{frame}
\begin{frame}
\includegraphics[width=.5\textwidth]{example-image-duck}
\end{frame}
\end{document}