2

假设我有一个考试题,例如“一辆汽车从静止开始在 3.2 秒内加速到 26.82 m/s。计算这段时间内的加速度。这段时间内汽车行驶了多远?”

我是 R-exams 包的新手。过去我使用过麻省理工学院的“考试”LaTex 包。在那里,我会做类似的事情:

\begin{question}
A car starting from rest accelerates to 26.82 m/s in 3.2 s.
\begin{parts}
\part Compute the acceleration during this time.
\part How far did the car travel in this time?
\end{parts}

我浏览了 r-exams.org,但没有看到任何创建此类多部分问题的示例。

4

1 回答 1

1

要在一个练习中组合多个问题,您可以使用“完形填空”类型:http ://www.R-exams.org/intro/dynamic/ 。从那里链接了一些具体的例子。

在您的情况下,如果您想在练习中使用 R/LaTeX 标记 (.Rnw),问题将变为:

\begin{question}
A car starting from rest accelerates to 26.82 m/s in 3.2 s.
\begin{answerlist}
\item Compute the acceleration during this time.
\item How far did the car travel in this time?
\end{answerlist}
\end{question}

相应的元信息需要包括以下内容:

\extype{cloze}
\exclozetype{num|num}
\exsolution{8.38125|42.912}

当然,R/Markdown (.Rmd) 也是可能的。希望两者都可以直接变成动态练习,其中数字是随机抽样的。如果您需要进一步的帮助,请告诉我们。

于 2020-02-14T11:45:59.393 回答