如果我在 beamer 列中使用 itemize,则项目的顶部对齐方式与没有列的项目不同。我希望图像中两个项目的符号位于同一位置。
\documentclass[t]{beamer}
\usepackage{blindtext}
\begin{document}
\begin{frame}{Heading 1}
\begin{itemize}
\item top aligned item nr. 1
\end{itemize}
\end{frame}
\begin{frame}{Heading 2}
\begin{columns}[t]
\column[t]{.5\textwidth}
\begin{itemize}
\item item nr. 2, which is lower than item nr. 1
\end{itemize}
\column[t]{.5\textwidth}
the other column
\end{columns}
\end{frame}
\end{document}
答案1
我不明白为什么连续的幻灯片(不是同时显示的)不能有所不同,但是......
由于环境似乎columns
在其内容之前引入了一些垂直空间,因此第一张幻灯片可以写在columns
一列的环境中。这样两个空间将是等效的。
\documentclass[t]{beamer}
\usepackage{blindtext}
\begin{document}
\begin{frame}{Heading 1}
\begin{columns}[t]
\column[t]{\textwidth}
\begin{itemize}
\item top aligned item nr. 1
\end{itemize}
\end{columns}
\end{frame}
\begin{frame}{Heading 2}
\begin{columns}[t]
\column[t]{.5\textwidth}
\begin{itemize}
\item item nr. 2, which is lower than item nr. 1
\end{itemize}
\column[t]{.5\textwidth}
the other column
\end{columns}
\end{frame}
\end{document}