beamer
我不想使用默认命令,而是columns
想使用paracol
环境 - 来对列进行顶部对齐。
但,
! LaTeX Error: Not in outer par mode.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.2 \begin{paracol}{2}
可以修复吗?
\begin{frame}[fragile]{}
\begin{paracol}{2}
xxx
\switchcolumn
yyy
\end{paracol}
\end{frame}
答案1
如果您只想将框架中两列的内容顶部对齐beamer
,则不需要paracols
:
\documentclass{beamer}
\begin{document}
\begin{frame}[t]
\begin{columns}[t]
\begin{column}{0.5\textwidth}
xxx
\end{column}
\begin{column}{0.5\textwidth}
yyy
more text
\end{column}
\end{columns}
\end{frame}
\end{document}