在块环境 n LYX 中暂停(投影机)

在块环境 n LYX 中暂停(投影机)

嘿,我想在我的块环境中添加暂停。例如,我有以下代码:

\begin{frame}
We have 
\begin{eqnarray*}
d\left(e^{bt}r\left(t\right)\right)&=&e^{bt}dr\left(t\right)+r\left(t\right)de^{bt}+de^{bt}dr\left(t\right)\\&=&e^{bt}\left[\left(a-br\left(t\right)\right)dt-\sigma dW^{*}\left(t\right)\right]+r\left(t\right)be^{bt}dt\\&=&ae^{bt}dt-\sigma e^{bt}dW^{*}\left(t\right)
\end{eqnarray*},
\end{frame}

我需要在代码中添加什么才能使块在开始时为空,然后出现“我们”,然后 eqnarray 中的每一行都单独出现?这可能吗?

答案1

替换eqnarray*align*。 (另请参阅eqnarray 与 align)。为了揭示align*环境的各个线条,您可以使用\onslide

在此处输入图片描述

 \documentclass{beamer}

\begin{document}

\begin{frame}
\pause
We have 
\pause
\begin{align*}
\onslide<3->{d\left(e^{bt}r\left(t\right)\right)&=e^{bt}dr\left(t\right)+r\left(t\right)de^{bt}+de^{bt}dr\left(t\right)\\}
\onslide<4->{&=e^{bt}\left[\left(a-br\left(t\right)\right)dt-\sigma dW^{*}\left(t\right)\right]+r\left(t\right)be^{bt}dt\\}
\onslide<5->{&=ae^{bt}dt-\sigma e^{bt}dW^{*}\left(t\right)}
\end{align*}
\end{frame}

\end{document}

相关内容