按照一种顺序制作 Beamer 幻灯片,然后按照另一种顺序显示它们

按照一种顺序制作 Beamer 幻灯片,然后按照另一种顺序显示它们

我想制作第一组幻灯片(问题),然后是答案的幻灯片(因为它们是一起计算的),然后是第二组问题及其答案

但首先显示所有问题,并且仅在显示所有答案之后显示。

编译时:

  1. 问题 A 组
  2. 答案集 A
  3. 插入 1/ 和 2/ 之间的 B 组问题
  4. 2/ 之后正常出现的答案集 B

展会现场:

  1. 问题 A 组
  2. B 组问题
  3. 答案集 A
  4. 答案 B 组

是否可以 ?

答案1

您可以使用\only{}非连续编号,如下所示:

\documentclass{beamer}
\begin{document}
\begin{frame}\frametitle{Q\&A}
\only<1>{%
Question from set A

Another question from set A
}
\only<3>{%
Answer from set A

Another answer from set A
}
\only<2>{%
Question from set B

Another question from set B
}
\only<4>{%
Answer from set B

Another answer from set B
}
\end{frame}
\end{document}

相关内容