如何使 framezoom 缩放图像适合幻灯片

如何使 framezoom 缩放图像适合幻灯片

我目前正在尝试放大(或多或少)LaTeX 投影仪课程中幻灯片上图像的上半部分。我如何告诉 LaTeX 使缩放后的图像适合幻灯片(见附图)?这是一个 MWE。在我的实际演示中,我看到选择了右侧区域,但缩放图像的左边框位于幻灯片的中心。缩放图像的大小和位置都使其超出屏幕。我如何防止这种行为,例如在新幻灯片上指定缩放图像的大小和位置?

平均能量损失

\documentclass{beamer}
\usepackage{mwe}

\begin{document}

\begin{frame}

\frametitle{\huge Title}
\framezoom<1><2>[border=0](0.3cm,0.7cm)(5.6cm,3.1cm)
\begin{figure}[ht]
\includegraphics[width=0.77\textwidth,height=0.77\textheight,keepaspectratio]{example-image}
\end{figure}

\end{frame}

\end{document}

抱歉,图片太大了,我不知道如何将其缩小。

答案1

使用border=1来查看您实际要缩放的内容。现在,您也正在缩放一些白色区域。以下 MWE 应该可以满足您的要求。

% arara: pdflatex

\documentclass{beamer}

\begin{document}    
\begin{frame}       
    \frametitle{\huge Spectrum}
    \framezoom<1><2>(1.3cm,0.5cm)(8.2cm,3cm)
    \begin{figure}
        \includegraphics[width=0.77\textwidth,height=0.77\textheight,keepaspectratio]{example-image}
    \end{figure}        
\end{frame} 
\end{document}

在此处输入图片描述

相关内容