本文档中:
\documentclass{beamer}
\begin{document}
\begin{frame}{MWE}
\begin{columns}[t]
\begin{column}{.5\textwidth}
\begin{block}{block}
abc
\end{block}
\end{column}
\begin{column}{.5\textwidth}
\includegraphics[width=.9 \textwidth]{image.png}
\end{column}
\end{columns}
\end{frame}
\end{document}
文本“abc”显示得比图像低。它应该与图像在同一高度 - 这就是列的作用!这是一个错误吗?
答案1
摘自 Beamer 用户指南第 12.7 节:
- t 将导致列的第一行对齐。如果使用全局选项 t,则为默认值。
- T 与 t 选项类似,但 T 对齐第一行的顶部,而 t 对齐第一行的所谓基线。如果在使用 t 选项时似乎发生了奇怪的事情(例如,如果图形在使用 t 选项时突然“下降”而不是“上升”,请尝试使用此选项。
\documentclass{beamer}
\begin{document}
\begin{frame}{MWE}
\begin{columns}[T]
\begin{column}{.5\textwidth}
\begin{block}{block}
abc
\end{block}
\end{column}
\begin{column}{.5\textwidth}
\includegraphics[width=.9 \textwidth]{example-image.png}
\end{column}
\end{columns}
\end{frame}
\end{document}