The default style of Decker quizzes includes drag and drop interactions and decorative coloring. To switch to a plain style, specify the following in the YAML code block, or use the `.plain` tag.
```{.yaml}
quiz:
style: plain
````
or on a per-question basis:
```{.markdown}
## {.qmc .plain}
```
# Matching Questions
These questions generate quizzes where a user can drag and drop items to sort them into "buckets".
...
...
@@ -136,6 +151,25 @@ BucketB
Empty Bucket
: !
# Matching Questions Example - Plain
## Matching Question {.qmi .plain}
Question text
BucketA
: A1
: A2
BucketB
: B1
!
: Distractor
Empty Bucket
: !
# Multiple Choice Questions
Classic multiple choice questions
...
...
@@ -157,6 +191,28 @@ Which of these letters is the second in the alphabet?
Question text
- [ ] A
- nope
- [X] B
- yes
# Multiple Choice Questions Example - Plain {.sub}
## Multiple Choice Question {.qmc .plain}
Question text
- [ ] A
- nope
- [X] B
- yes
# Multiple Choice Questions Example - Plain Inline {.sub}
## Multiple Choice Question {.qmc .plain .inline}
Question text
- [ ] A
- nope
- [X] B
...
...
@@ -199,6 +255,20 @@ is the first letter in the ABC. The second one is
- yep
- [ ] C
# InsertChoices Questions Example Plain {.sub}
## Insert Choices Question {.qic .plain}
- [X] A
- of course
- [ ] B
- uhm ...
is the first letter in the ABC. The second one is
- [X] B
- yep
- [ ] C
# FreeText questions
...
...
@@ -207,7 +277,7 @@ This will create a simple input field/text box where the user can write their an
If there are wrong answers that are to be expected you can add those by not checking the task box. They will then show as wrong when clicking "Show Solution".
```
## FreeText Question TL {.qft}
## FreeText Question {.qft}
What's the first letter in the alphabet?
...
...
@@ -226,9 +296,9 @@ What's the fourth letter?
```
# FreeText Question Example without h2 title {.sub}
To switch all questions to plain style, add to metadata:
```.yaml
quiz:
style: plain
```
Or to style individual questions, add `{.plain}`
# Multiple Choice
# Mutliple Choice 1 - Fancy
## {.quiz-mc}
All choices get an optional comment to be potentially shown with the result.
- [X] a
- So ist das.
- test
- [ ] b
- So nicht.
- Tooltip2
- [ ] c
- So auch nicht
```yaml
Points:5
LectureId:cg1
TopicId:yeah
Difficulty:Easy
```
# Mutliple Choice 2 - Plain
## {.quiz-mc .plain}
Choices appear in a column. Click the circle to the left of the choice to select. Choices are corrected immediately. A green check will appear in the circle for correct responses, and a red x for incorrect responses. Hover over the circle to see a tooltip. All choices get an optional comment to be potentially shown with the result.