我正在使用 beamer,我想将图像(向右)对齐,并可以选择自定义其宽度和高度,并在图像左侧放置一些文本。例如,右侧是某人的图像,左侧是其工作摘要。
感谢任何帮助。
答案1
听起来你正在寻找columns
环境。
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{columns}[onlytextwidth]
\begin{column}{.48\textwidth}
content...
\end{column}
\begin{column}{.48\textwidth}
\includegraphics[width=\textwidth]{example-image}
\end{column}
\end{columns}
\end{frame}
\end{document}