Article:Moodle xml question edit sop2:修订间差异
无编辑摘要
无编辑摘要 |
无编辑摘要 |
||
| 第86行: | 第86行: | ||
== 设置分数 == | == 设置分数 == | ||
<syntaxhighlight lang="xml"> | |||
<defaultgrade>1.0000000</defaultgrade> | |||
</syntaxhighlight> | |||
完形填空(内嵌答案)不需要设置 | 完形填空(内嵌答案)不需要设置 | ||
== 设置答案 == | == 设置答案 == | ||
=== 简答题 === | === 简答题 === | ||
| 第137行: | 第140行: | ||
=== 匹配题 === | === 匹配题 === | ||
随机排列选项 | 随机排列选项 | ||
<syntaxhighlight lang="xml"> | |||
<shuffleanswers>true</shuffleanswers> | <shuffleanswers>true</shuffleanswers> | ||
</syntaxhighlight> | |||
匹配选项(至少3项) | 匹配选项(至少3项) | ||
<syntaxhighlight lang="xml"> | <syntaxhighlight lang="xml"> | ||
| 第159行: | 第165行: | ||
</subquestion> | </subquestion> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== 选择题(单选) === | === 选择题(单选) === | ||
只有1个正确选项 | 只有1个正确选项 | ||
<syntaxhighlight lang="xml"> | |||
<single>true</single> | <single>true</single> | ||
</syntaxhighlight> | |||
随机排列选项 | 随机排列选项 | ||
<shuffleanswers>true</shuffleanswers> | <syntaxhighlight lang="xml"> | ||
<shuffleanswers>true</shuffleanswers> | |||
</syntaxhighlight> | |||
选项(只能有一个得分项) | 选项(只能有一个得分项) | ||
<syntaxhighlight lang="xml"> | <syntaxhighlight lang="xml"> | ||
| 第181行: | 第187行: | ||
=== 判断题(多选) === | === 判断题(多选) === | ||
有多个得分选项 | 有多个得分选项 | ||
<single>false</single> | <syntaxhighlight lang="xml"> | ||
<single>false</single> | |||
</syntaxhighlight> | |||
随机排列选项 | 随机排列选项 | ||
<shuffleanswers>true</shuffleanswers> | <syntaxhighlight lang="xml"> | ||
<shuffleanswers>true</shuffleanswers> | |||
</syntaxhighlight> | |||
选项(得分项合计为100,错误选项每个都是-100,必须使用规定的比例,如0、10、20……100,33.33333、66.66667、0.8333333……) | 选项(得分项合计为100,错误选项每个都是-100,必须使用规定的比例,如0、10、20……100,33.33333、66.66667、0.8333333……) | ||
<syntaxhighlight lang="xml"> | <syntaxhighlight lang="xml"> | ||
| 第199行: | 第211行: | ||
</answer> | </answer> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== 内嵌答案(完形填空) === | === 内嵌答案(完形填空) === | ||
直接写在<questiontext></questiontext>的<text></text>里面 | |||
== (可选)设置反馈 == | == (可选)设置反馈 == | ||