## 编译环境 操作系统 * [x] Windows 7/8/10 * [ ] macOS * [ ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [x] TexLive `2020` * [ ] MikTeX `版本号` * [ ] CTeX `若需勾选,请把[ ]改成[x]` ## 我的问题 比如说如下的一个beamer ``` \documentclass[10pt]{beamer} \usepackage{ctex} \begin{frame} \only<1->{这是第一行} \only<3->{ 这是第二行} \only<2-> { 这是第三行} \end{frame} ``` 这个动画效果是到了第二步显示出来 这是第一行和这是第三行 并且是连着的,也就是最终应该出现在第三行的 这是第三行 这时候出现在了第二行。我想要的效果是每一步出现的内容都和它最终的位置是一致的,这个怎么实现?

1 回答1

1
用 `\onslide` ------------ ```tex \documentclass{beamer} \begin{document} \begin{frame} \onslide<1->{1} \onslide<3->{2} \onslide<2->{3} \end{frame} \end{document} ```

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。