我正在嘗試調整beamer
幻燈片上的方程式的大小以使其更大。然而,通常的使用方法\scalebox
似乎不起作用:
\begin{frame}
\scalebox{2}{
\begin{align}
x &= y\\
y &= z
\end{align}
}
\end{frame}
產生以下錯誤:
! Missing \endgroup inserted.
<inserted text>
\endgroup
如何在投影機幻燈片上重新縮放對齊環境?
答案1
align
根據可用寬度調整其內容(以便將其水平放置在中心,並放置適當的標籤/編號)。將其插入 a 中\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}