LaTex Beamer 中的图像和文本位置问题

LaTex Beamer 中的图像和文本位置问题

我正在 Latex Beamer 中做一个演示。我制作了很多幻灯片,但无法将图像和文本并排固定在正确的位置。但是,我制作的幻灯片附在下面,我只是试图将图像和文本都移动到左侧。因为左侧有很多空间我无法使用。

请分享一下你们的经验,如何将其放在左侧。这样,我可以正确使用一张幻灯片中的整个空间。我已附上我正在使用的幻灯片和代码。

我面临另一个麻烦,当我将图像插入幻灯片时,如何将图像保持在我想要的位置,例如页面底部、页面顶部。

\section{Drought}
\begin{frame}{Drought--Standarized Precipitation Index}
\begin{tabular}{cl}  
    \begin{tabular}{l}
        \includegraphics[height=6cm, width=5.1cm]{SPI}
    \end{tabular}
    & \begin{tabular}{6}
        \parbox{0.5\linewidth}{%  change the parbox width as appropiate
            \begin{itemize}
                \item{SPI :  The Standardized Precipitation Index (SPI) is used index to characterize meteorological drought.
                }
                \item{On short timescales, the SPI is closely related to soil moisture}
                \item{Uses precipitation only; can characterize drought or abnormal wetness
                }

            \end{itemize}
        }
    \end{tabular}  \\
\end{tabular}
\end{frame}

在此处输入图片描述

答案1

对于这样的幻灯片布局我会使用columns

\documentclass{beamer}
\begin{document}

\begin{frame}{Drought--Standarized Precipitation Index}
    \begin{columns}[onlytextwidth,T]
        \begin{column}{.47\textwidth}
            \includegraphics[width=\textwidth]{example-image}
        \end{column}
        \begin{column}{.47\textwidth}
          \begin{itemize}
              \item SPI :  The Standardized Precipitation Index (SPI) is used index to characterize meteorological drought.
              \item On short timescales, the SPI is closely related to soil moisture
              \item Uses precipitation only; can characterize drought or abnormal wetness
        \end{itemize}
        \end{column}
    \end{columns}
\end{frame}

\end{document}

在可选参数中,\begin{columns}[T]您可以指定对齐方式,在这种情况下,它们是顶部对齐的。


几点补充说明:

  • 不要同时指定图像的宽度和高度,否则唯一可能的结果就是图像扭曲。一个长度就足够了,或者如果你想同时指定两个长度,请使用keepaspectratio

  • 你不需要{}包含每一个项目,写下来\item ...就足够了

相关内容