You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`simp` | Y | Y | Y | Y | Y | . | . | . | . | Y | . | . | . | .
32
+
`align` | Y | Y | Y | . | . | . | . | . | . | . | . | . | . | .
33
+
`nounits` | Y | Y | Y | Y | Y | Y | Y | Y | . | . | Y | . | . | .
34
+
`checkvars` | Y | . | . | Y | Y | . | . | . | . | . | Y | . | . | .
35
+
`validator` | Y | Y | Y | Y | Y | . | . | . | . | . | . | Y | . | Y
36
+
`feedback` | Y | . | Y | Y | Y | . | . | . | . | . | . | . | . | .
37
+
`monospace` | Y | Y | Y | . | Y | . | . | . | . | . | . | . | . | .
38
+
`manualgraded` | Y | Y | Y | Y | Y | . | . | . | . | Y | Y | Y | Y | Y
37
39
38
40
For documentation about the various options not documented on this page look at the pages for the specific inputs in which each option is used.
39
41
@@ -151,6 +153,11 @@ This option is available for algebraic, numerical, units and varmatrix inputs. I
151
153
152
154
If `monospace` is not specified, then the CURRENT system default for the given input type will be used when the question is displayed.
153
155
156
+
### Extra option: manualgraded ###
157
+
158
+
Most input types support the extra option extra option `manualgraded`, and the default is `manualgraded:false`. Only freetext inputs have default `manualgraded:true`. When `manualgraded:true` then the _whole STACK question_ will require manual grading! See [Semi-automatic Marking](../../Moodle/Semi-automatic_Marking.md) for more details.
159
+
160
+
154
161
## Future extra options ##
155
162
156
163
In the future we are likely to add additional functionality via the _extra options_ fields. This is because the form-based support becomes ever more complex, intimidating and difficult to navigate.
Copy file name to clipboardExpand all lines: doc/en/Authoring/Inputs/Text_input.md
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ This input is a text area into which students may type whatever they choose. Th
21
21
Notes
22
22
23
23
1. All the notes for "string" inputs above still apply.
24
-
2. The freetext input has a special extra option `manualgraded`, and the default option value is `manualgraded:true`. If you specify `manualgraded:false` then the _whole STACK question_ will require manual grading!
24
+
2. The freetext input takes the default option value is `manualgraded:true`. If you specify `manualgraded:true` then the _whole STACK question_ will require manual grading!
25
25
3. Part of this input can be linked to an automatically graded STACK input, e.g. an algebraic input (final answer), textarea (last lines) or units input.
26
26
27
27
#### JSON input ####
@@ -30,19 +30,22 @@ The JSXGraph, GeoGebra and Parsons blocks return a JSON object. When linking to
30
30
31
31
This input gives the _teacher_ a JSON pretty print view of the JSON object for debugging.
32
32
33
+
### Parsons input ###
34
+
35
+
A special [Parsons input](../../Specialist_tools/Drag_and_drop/index.md), is available to store the JSON object generated by the Parsons block.
36
+
37
+
### GeoGebra input ###
38
+
39
+
A special [GeoGebra input](../../Specialist_tools/GeoGebra/index.md), is available to store the JSON object generated by the GeoGebra block.
40
+
33
41
#### Notes input ####
34
42
35
43
This input is a text area into which students may type whatever they choose. It can be used to gather their notes or "working". However, this input is always considered as "invalid", so that any potential response tree which relies on this input will never get evaluated!
36
44
37
45
This input type can be used for
38
46
39
47
1. surveys;
40
-
2. answers which are not automatically marked, contributing to [semi-automatic marking](../../Moodle/Semi-automatic_Marking.md).
41
-
42
-
The notes input has a special extra option `manualgraded`, and the default option value is `manualgraded:false`. If you specify `manualgraded:true` then the _whole STACK question_ will require manual grading!
48
+
2. answers which are not automatically marked, contributing to [semi-automatic marking](../../Moodle/Semi-automatic_Marking.md). Set the extra option `manualgraded:true`, but note that the _whole STACK question_ will require manual grading!
43
49
44
50
Note, for consistency with other inputs the teacher must still supply an answer, e.g. the empty string `""`. This answer is not used.
45
51
46
-
### Parsons input ###
47
-
48
-
A special [Parsons input](../../Specialist_tools/Drag_and_drop/index.md), is available to store the JSON object generated by the Parsons block.
Copy file name to clipboardExpand all lines: doc/en/Developer/Development_track.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,7 @@ Issues with [github milestone 4.13.0](https://github.com/maths/moodle-qtype_stac
13
13
2. Support for Maxima 5.47.0, 5.48.0, and 5.49.0. This includes a fix for issue #1281 from 5.48.0.
14
14
3. Question tests can now test the whole route through a PRT, rather than just the final node. This is a significant improvement on the ability to test questions. This is back-compatible with older questions.
15
15
4. Add in a new "free-text" input to allow student to input typed free-text proof.
16
-
17
-
--------------------------------------
16
+
5. Allow most input types to use the extra option 'manualgraded'.
Copy file name to clipboardExpand all lines: doc/en/Moodle/Semi-automatic_Marking.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,13 @@ STACK provides the "free-text" and "notes" [input type](../Authoring/Inputs/Text
13
13
14
14
## Manual grading.
15
15
16
-
The free-text and notes inputs have a special extra option `manualgraded`. When `manualgraded:true` then the _whole STACK question_ will require manual grading!
16
+
Most input types support the extra option extra option `manualgraded`, and the default is `manualgraded:false`. When `manualgraded:true` then the _whole STACK question_ will require manual grading!
17
+
18
+
The free-text default extra option `manualgraded:true`.
17
19
18
20
There really is no way to mix automatic and manually grading within a question. Therefore, if you want automatic and manual marking you have two options.
19
21
20
-
1. Use separate questions. If you need to serparate out parts to automatic and manually graded parts then you can consider [variant matching](../Deploying_matched_varients) to ensure random parts have the same seed.
22
+
1. Use separate questions. If you need to serparate out parts to automatic and manually graded parts then you can consider [variant matching](../STACK_question_admin/Deploying_matched_variants.md) to ensure random parts have the same seed.
21
23
2. Manual grade, taking into account some automatic marks when you manually grade.
22
24
23
25
Once a student has completed the quiz, navigate to
0 commit comments