我正在尝试调整beamer
幻灯片上的公式大小以使其更大。但是,通常使用的方法\scalebox
似乎不起作用:
\begin{frame}
\scalebox{2}{
\begin{align}
x &= y\\
y &= z
\end{align}
}
\end{frame}
产生以下错误:
! Missing \endgroup inserted.
<inserted text>
\endgroup
如何重新调整投影仪幻灯片上的对齐环境?
答案1
align
根据可用宽度调整其内容(以便将其水平放置在中心,并放置适当的标签/编号)。将其插入到内部会\scalebox
导致没有定义的框来包含它的问题。但是,如果您提供这样的限制,它可以毫无问题地缩放:
\documentclass{beamer}% http://ctan.org/pkg/beamer
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\begin{document}
\begin{frame}
\begin{align}
x &= y\\
y &= z
\end{align}
\end{frame}
\begin{frame}
\scalebox{2}{\parbox{.5\linewidth}{%
\begin{align}
x &= y\\
y &= z
\end{align}
}}
\end{frame}
\end{document}