我读到过visibile<#->
,使用选项(其中 # 是从 1 开始的整数)可以更改某些元素在幻灯片中出现的顺序。然而,这在下面的例子中似乎不起作用,你能帮我吗?
\documentclass{beamer}
\begin{document}
\begin{frame}
In this case it is appropriate to choose $f(x) = x$ and $G(x) = \ln x$.
\pause
\begin{tabular}{cc}
\visible<2->{$F(x) = \frac{x^2}{2}$} & \visible<1->{$f(x) = x$} \\
\visible<1->{$G(x) = \ln x$} & \visible<3->{$g(x) = \frac{1}{x}$}
\end{tabular}
\end{frame}
\end{document}
换句话说,它必须出现在顺序中
- f(x) 和 G(x)
- F(x),除了上一点中的
- g(x),除了上一点中的那个。
答案1
如果您\pause
在表格前使用,则需要从第二个覆盖层而不是第一个覆盖层开始揭开:
\documentclass{beamer}
\begin{document}
\begin{frame}
In this case it is appropriate to choose $f(x) = x$ and $G(x) = \ln x$.
\pause
\begin{tabular}{cc}
\visible<3->{$F(x) = \frac{x^2}{2}$} & \visible<2->{$f(x) = x$} \\
\visible<2->{$G(x) = \ln x$} & \visible<4->{$g(x) = \frac{1}{x}$}
\end{tabular}
\end{frame}
\end{document}