我有一個小問題。beamer
當使用 16:9 寬高比時,我的影像似乎失真,但如果使用標準 4:3 則沒問題。
任何人都可以提供任何幫助或幫助嗎?
謝謝。
編輯:
要包含圖像,我使用以下程式碼
\includegraphics[scale=x.xx]{NAME.png}
其中 x.xx 被更改以使圖像正確適合幻燈片。通常設定在 0.60 到 0.80 之間。
答案1
縮放選項相對於影像的原始大小縮放影像。如果變更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}