我正在制作演示幻灯片来展示我的研究成果。
基本上,这个想法是:我需要比较两种理论。因此,我希望将大部分幻灯片分成两半,中间用一些垂直实线隔开。然后我希望能够在左侧和右侧写上方程式。这样,观众就可以非常清楚地发现这两种理论之间的区别。
有什么方法可以实现吗?现在我有以下代码:
\begin{frame}
\begin{columns}[T]%beamer
\column{0.5\textwidth}
\vrule{}
\column{0.5\textwidth}
\begin{description}
\item[item1] description1 text
\item[item2] description2 text
\item[item1] description1 text
\item[item2] description2 text descriptiotn text
description2 text descriptiotn text
description2 text descriptiotn text
\end{description}
\end{columns}
\end{frame}
然而,“vrule”并没有真正实现我想要的效果。
我希望在某个环境中,‘左半部分’被视为单独的幻灯片,右半部分也类似。但当然,所有内容都放在一张幻灯片上。
预先感谢您的任何帮助。
答案1
不要使用命令\column
,而是使用column
环境:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{columns}
\begin{column}[t]{0.5\textwidth}
\dotfill % to show column margins
\begin{description}
\item[item1] description1 text
\end{description}
\dotfill
\end{column}\vrule \hfill
\begin{column}[t]{0.5\textwidth}
\dotfill
\begin{description}
\item[item5] description1 text
\item[item6] description2 text
\item[item7] description1 text
\item[item8] description2 text descriptiotn text
description2 text descriptiotn text
description2 text descriptiotn text
\end{description}
\dotfill
\end{column}
\end{columns}
\end{frame}
\end{document}