gpt4 book ai didi

image - 在投影仪中更改图像向右移动

转载 作者:行者123 更新时间:2023-12-04 16:39:28 26 4
gpt4 key购买 nike

当我尝试使用\only overlayarea 在投影仪中进行交替图像处理时,如下所示:

\begin{frame}
\frametitle{Tasks}

\begin{overlayarea}{\textwidth}{\textheight}
\begin{figure}
\centering
\only<1>
{
\includegraphics[width=0.3\textwidth]{img/noise_detail_2.png}
}
\only<2>
{
\includegraphics[width=0.3\textwidth]{img/noise_detail_2.png}
}
\only<3>
{
\includegraphics[width=0.3\textwidth]{img/noise_detail_2.png}
}
\only<4>
{
\includegraphics[width=0.3\textwidth]{img/noise_detail_2.png}
}
\end{figure}
\end{overlayarea}
\end{frame}

在每张幻灯片上,图像越来越向右移动。假设,在1.幻灯片中,位置x,在第二张幻灯片中,位置x + 5,在第三张幻灯片中,x + 10。

为什么?我该如何解决?

最佳答案

\only的用法之间有一个所谓的虚假空间。虽然出于可读性目的扩展代码可能会很好地工作,但有时这些空格会在生成的PDF中导致不必要的输出。 Use % to keep the readability but avoid the spacing issues:

\documentclass{beamer}
\begin{document}

\begin{frame}
\frametitle{Tasks}

\begin{overlayarea}{\textwidth}{\textheight}
\begin{figure}
\centering
\only<1>
{%
\includegraphics[width=.8\textwidth]{example-image-a}%
}%
\only<2>
{%
\includegraphics[width=.8\textwidth]{example-image-b}%
}%
\only<3>
{%
\includegraphics[width=.8\textwidth]{example-image-c}%
}%
\end{figure}
\end{overlayarea}
\end{frame}

\end{document}

关于image - 在投影仪中更改图像向右移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26186350/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com