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
With the answer type mc.matrix you can arrange your multiple choice problem in a matrix layout.
Rows and columns can be permuted. That's optional, as are the title name for rows and the title name for columns.
The column labels are defined by the \tasks
command. The labels are separated by a semicolon. As usual
you can write TeX, math, use variables and image references as a label.
\tasks{column 1 label; column 2 label; ...}
e.g.
1 \tasks{$e^x$; some text; function $\var{f}$;\image{image lid}}
Each row is defined in its own environment.
123 \begin{row}
...
\end{row}
The row labels are defined by the \text
command inside a row environment. As usual you can write TeX, math, use
variables and image references as a label.
\text{row label}
How the MC score is computed and how you can change that.
(for result see screenshot above)
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 \begin{question}
\begin{variables}
\randint{a}{2}{7}
\end{variables}
\type{mc.matrix}
\text{We are curious:}
\explanation{Please reconsider your answer}
\begin{answer}
\text{Are the following functions periodic or non periodic?}
\permuterows{1}{2} %optional
\permutecolumns{1}{3} %optional
\rowTitle{Properties} %optional
\columnTitle{Functions} %optional
% column 1-4 labels
\tasks{$\sin(\var{a}x)$;$e^x$; $\sqrt{x}$}
\begin{row}
% row 1 label
\text{non periodic}
\begin{choice}
\solution{false}
\end{choice}
\begin{choice}
\solution{true}
\end{choice}
\begin{choice}
\solution{true}
\end{choice}
\end{row}
\begin{row}
% row 2 label
\text{periodic}
\begin{choice}
\solution{true}
\end{choice}
\begin{choice}
\solution{false}
\end{choice}
\begin{choice}
\solution{false}
\end{choice}
\end{row}
\end{answer}
\end{question}
Updated by Andreas Maurischat, 8 weeks ago – 406cef0