我正在尝试删除一个 beamerposter 示例,以便我可以以此为基础构建我的海报。但是,它无法编译。知道为什么吗?
\documentclass{beamer}
\usepackage[size=custom,height=150,width=90,scale=1]{beamerposter}
\title{FOOBAR}
\begin{document}
\begin{frame}{}
\begin{columns}[t]
\begin{column}[.45\linewidth]
\begin{block}{FOOBAR}
foobar
\end{block}
\end{column}
\begin{column}{.45\linewidth}
\begin{block}{FOOBAR}
foobar
\end{block}
\end{column}
\end{columns}
\end{frame}
\end{document}
答案1
首先
\begin{column}[.45\linewidth]
应该
\begin{column}{.45\linewidth}
就像第二个