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
A question sequence is a problem, that only shows one question to the student at a time. It always starts with the first question. For each question you can define follow-up questions. The corresponding follow-up question is then selected by its condition.
\followupQuestion[optional condition]{question number}
A problem becomes a question sequence, by the usage of the \followupQuestion
command in the first question. The condition for a follow-up question is optional. You can use the same conditions as in our conditional explanations. If you define more than one follow-up question for a question, the order is taken into account for the evaluation. If the user answers a question, that doesn't have a follow-up question, the question sequence is over. A simple example in WebMiau
123456 \begin{question}
...
\followupQuestion[edited]{2}
\followupQuestion[NOT edited]{3}
...
\end{question}
Updated by greiser, 1 year, 4 months ago – bd76368