\pause 就像 powerpoint 中的方程式更新一样

\pause 就像 powerpoint 中的方程式更新一样

我正在 PowerPoint 中做演示,并使用 LaTeXiT 将 latex 公式编译成 pdf 并粘贴到演示文稿中。我希望一些公式在幻灯片上逐块显示。现在我分别编译不同的块:

% Tex code for the first pdf
A &= \text{some expression}

% Tex code for the second pdf
A &= \text{some expression} \\&= \text{another expression}

问题是,这样编译出来的公式在大小/间距上有时会略有不同,然后我更换幻灯片时公式会在视觉上跳转。

解决此问题的一个可能方法是使尚未出现的部分透明,因此它将不可见,但会被考虑计算尺寸和间距:

% Tex code for the first pdf
A &= \text{some expression} \transparent{0} \\&= \text{another expression}

% Tex code for the second pdf
A &= \text{some expression} \\&= \text{another expression}

但这只是一个部分解决方案,因为例如,我无法通过这种方式在下括号中添加注释:

% Tex code for the first pdf
A &= \underbrace{\text{some expression}}_{\text{comment}}

% Tex code for the second pdf
% Can't make underbrace transparent, have to remove it, the equation changes its size.
A &= \text{some expression}

那么有没有办法将大型方程式分成几部分,同时考虑方程式中稍后出现的所有部分?你在幻灯片中做了什么?

相关内容