我正在尝试使用此代码在 itemize 的左侧设置图像。如何自定义它们的位置?我只是尝试将它们放在标题后的框架顶部。
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{columns}
\column{.5\textwidth}
\includegraphics[width=\linewidth]{example-image-b}
\column{.5\textwidth}
\begin{itemize}
\item A.
\item B.
\end{itemize}
\end{columns}
\end{frame}
\end{document}
请问有什么出色的建议吗?
答案1
使用t
可选参数来frame
获得顶部对齐:
\documentclass{beamer}
\usetheme{Madrid}
\begin{document}
\begin{frame}[t]
\frametitle{Test frame}
\begin{columns}
\column{.5\textwidth}
\includegraphics[width=\linewidth]{example-image-b}
\column{.5\textwidth}
\begin{itemize}
\item A.
\item B.
\end{itemize}
\end{columns}
\end{frame}
\end{document}