我们可以在 Beamer 中添加一个按钮来查看学生是否检查了正确答案吗?

我们可以在 Beamer 中添加一个按钮来查看学生是否检查了正确答案吗?

我们可以在 Beamer 中添加一个按钮来查看学生是否检查了正确答案吗?

给出一些多项选择,然后点击按钮,如果答案正确,你会看到“好!”,否则,你会看到“哦,小心”

我们能够实现这个目标吗?

答案1

您可以尝试放置两个不同的按钮,其中一个(正确答案)放入“好!”幻灯片,另一个(错误答案)放入“哦,小心”幻灯片。

首先将这两个命令分别放在第二张和第三张幻灯片中:

\hypertarget<1>{good}{\beamerbutton{I'm on the second slide - Good}}
\hypertarget<1>{wrong}{\beamerbutton{I'm on the third slide - Oh be careful !}}

然后,在第一张幻灯片中输入:

\hyperlink{good}{\beamerbutton{I jump to second slide of next frame}}
\hyperlink{wrong}{\beamerbutton{I jump to third slide of next frame}}

完整示例:

\documentclass{beamer}

\begin{document}

\begin{frame}
What is the color of the white horse of Henri IV?
\hyperlink{good}{\beamerbutton{White}}
\hyperlink{wrong}{\beamerbutton{Blue}}
\end{frame}

\begin{frame}
\hypertarget<1>{good}{\beamerbutton{I'm on the second slide - Good}}
\end{frame}
\begin{frame}
\hypertarget<1>{wrong}{\beamerbutton{I'm on the third slide - Oh be careful!}}
\end{frame}
\end{document}

相关内容