Subversion Repositories wimsdev

Rev

Rev 6133 | Rev 16919 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6133 Rev 11284
Line 1... Line 1...
1
<h3>Using a document block for worksheet presentation</h3>
1
<h3>Using a document block for worksheet presentation</h3>
2
 
2
 
3
You may put the address of a document block
3
You may put the address of a document block
4
(such as <span class="tt wims_fname">c1/main</span>) to be the presentation page of the work sheet.
4
(such as <span class="tt wims_fname">c1/main</span>) to be the presentation page of the work sheet.
5
The document itself need not be readable by participants.
5
The document itself need not be readable by participants.
6
<p>
-
 
7
Leave this field blank if you want to use the standard presentation page.
6
<p>Leave this field blank if you want to use the standard presentation page.</p>
8
<p>
7
<p>
9
Links to individual exercises should be defined using the command
8
Links to individual exercises should be defined using the command
10
<span class="tt wims_code_variable">\exercise</span>.
9
    <span class="tt wims_code_variable">\exercise</span>.</p>
11
You can use the following pre-defined variables:<ul>
10
You can use the following pre-defined variables:
-
 
11
<ul>
12
 <li><span class="tt wims_code_variable">\scorerequire</span> Required points of each exercise
12
 <li><span class="tt wims_code_variable">\scorerequire</span> Required points of each exercise
13
 </li><li><span class="tt wims_code_variable">\scoregot</span> Participant's point achievements on each exercise
13
 </li><li><span class="tt wims_code_variable">\scoregot</span> Participant's point achievements on each exercise
14
 </li><li><span class="tt wims_code_variable">\scoremean</span> Participant's average score on each exercise
14
 </li><li><span class="tt wims_code_variable">\scoremean</span> Participant's average score on each exercise
15
 </li><li><span class="tt wims_code_variable">\expiration</span> Expiration date of the sheet, yyyymmdd
15
 </li><li><span class="tt wims_code_variable">\expiration</span> Expiration date of the sheet, yyyymmdd
16
 </li><li><span class="tt wims_code_variable">\today</span> Date of today, yyyymmdd
16
 </li><li><span class="tt wims_code_variable">\today</span> Date of today, yyyymmdd</li>
17
 </li>
-
 
18
</ul>
17
</ul>
19
All the score parameters are lists of numbers, each member of the list
18
<p>All the score parameters are lists of numbers, each member of the list
20
corresponding to the number for an exercise of the sheet.
19
corresponding to the number for an exercise of the sheet.</p>
21
 
-
 
22
 
20
 
23
<p>
-
 
24
<b>For example</b>, if you are creating worksheet number 5, write the following instructions
21
<b>For example</b>, if you are creating worksheet number 5, write the following instructions
25
in the </tt>c1/main</tt> block of the document:
22
in the </tt>c1/main</tt> block of the document:
26
<pre>
23
<pre>
27
\exercise{5/1} : Score required: \scorerequire[1]
24
\exercise{5/1} : Score required: \scorerequire[1]
28
                 Score obtained: \scoregot[1]
25
                 Score obtained: \scoregot[1]
29
 
26
 
30
\exercise{5/2} : Score required: \scorerequire[2]
27
\exercise{5/2} : Score required: \scorerequire[2]
31
                 Score obtained: \scoregot[2]
28
                 Score obtained: \scoregot[2]
32
 
29
 
33
\exercise{5/3}{Un autre titre}: Score required \scorerequire[3]
30
\exercise{5/3}{Un autre titre}: Score required \scorerequire[3]
34
                Score obtained: \scoregot[3]
31
                Score obtained: \scoregot[3]
35
</pre>
32
</pre>
36
 
-
 
37
 
-