来自考试来源的 Beamer

来自考试来源的 Beamer

我正在使用考试类来排版考试和练习。这对于纸质考试来说很好,但是,我正在寻找一种解决方案来通过投影仪呈现这些问题和答案。

(在我看来)“快速而肮脏”的解决方案只是提供解决方案 pdf。

是否有人有更好的方法知道如何在(可能很多)投影仪幻灯片中使用 /question ... \begin{solution}...\end{solution} 部分?

以下是 MWE:问题是:

\question
A vehicle has a mass of ...
\begin{parts}
\part[4]
 Find the maximum velocity!
 \begin{solutionorbox}[2.5cm]
   This is how you find out v_max.
 \end{solutionorbox}
\part[5] 
   Compute the accelleration time.
   \begin{solutionorbox}[1cm]
     \[ t = 20s \]
   \end{solutionorbox}
\end{parts}

下面是包装器:

\documentclass[a4paper, addpoints, 11pt]{exam}

\printanswers

\newif\ifExamenisStyle
\ExamenisStylefalse

\usepackage{HGexam}

\begin{document}
\sloppy
\doctitle{Homework}{Physics}{\today}{Hermann}{}{}{}
\begin{questions}
  \input{beschlEnergieerhaltung}
\end{questions}
\end{document}

现在我想为这个问题准备一张幻灯片,为每一部分准备另一张幻灯片。希望大家能提出好的建议。

答案1

我找不到 HGexam 包,所以不得不做一些更改。如果您使用多种字体大小,您可能需要创建一个翻译表(例如\let\normalsize=\Large

\documentclass[addpoints]{exam}
%\usepackage{HGexam}% cannot find
\usepackage[paperwidth=6in,paperheight=4.5in,margin=.5in]{geometry}
\usepackage{xcolor}
\usepackage[display]{texpower}
\printanswers

\newif\ifExamenisStyle
\ExamenisStylefalse

\pagecolor{blue}
\color{white}

\begin{document}
\sloppy\Large
%\doctitle{Homework}{Physics}{\today}{Hermann}{}{}{}
\begin{questions}
\question
A vehicle has a mass of ...
\begin{parts}
\pause
\part[4]
 Find the maximum velocity!
\pause
 \begin{solutionorbox}[2.5cm]
   This is how you find out $v$\textsubscript{max}.
 \end{solutionorbox}
\pause
\part[5] 
   Compute the accelleration time.
  \pause
   \begin{solutionorbox}[1cm]
     \[ t = 20s \]
   \end{solutionorbox}
\end{parts}
\end{questions}
\end{document}

相关内容