News
Index
Working with MUMIE as author
- Initial steps:
- Articles:
- Problems:
- Programming with Python
- Visualizations with JSXGraph
- Media Documents:
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
FAQ
You're not logged in
Working with MUMIE as author
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
FAQ
In MUMIE currently there are four types of MC questions available:
The structure for mc.matrix is different from the others and is explained here.
How the MC score is computed and how you can change that. (for mc.multiple and mc.matrix)
For each MC problem type one has to define choices. Every choice must be declared by an own choice environment,
containing a text and a solution. The solution can be either:
Example:
1234 \begin{choice}
\text{$3\cdot 4 = 12$.}
\solution{true}
\end{choice}
Example:
123456789 \begin{variables}
\randint{a}{2}{5}
\end{variables}
\begin{choice}
\text{$3\cdot \var{a} = 12$.}
\solution{compute}
\iscorrect{a}{=}{4}
\end{choice}
Choices may be permutated automatically by using the command \permutechoices{
If a question contains 5 choices and the choices one to four should be permutated, then the following code is required:
\permutechoices{1}{4}
When using the compute
option in multiple choice answers inside the \solution
command an additional \iscorrect
command is required.
It constructs a relation and takes three arguments:
<
, >
, =
, >=
, <=
, !=
)When the relation solves to true
then the correct answer for this choice will be yes
:
123456789 \begin{question}
...
\begin{choice}
\text{Is $\var{g}<\var{f}$ correct?}
\solution{compute}
\iscorrect{g}{<}{f}
\end{choice}
...
\end{question}
1234567891011121314151617181920212223242526272829 \begin{problem}
\begin{question} % start of question 1
\text{Exercise - choose the correct answer}
\type{mc.multiple}
\begin{variables}
\randint{a}{2}{5}
\function[calculate]{b}{2+a}
\end{variables}
\begin{choice}
\text{$1+2=3$}
\solution{true}
\end{choice}
\begin{choice}
\text{2+3=7}
\solution{false}
\end{choice}
\begin{choice}
\text{2+\var{a}>6}
\solution{compute}
\iscorrect{b}{>}{6}
\end{choice}
\end{question}
\end{problem}
In one question, one can also have several MC tasks of different type, and also mix MC
questions and input question.
See Different Answer Type or the
example in WebMiau
Updated by Michael Heimann, 4 years, 1 month ago – 76baf9f