Difference between revisions of "FormattingCorrectAnswers: Equations"
Jump to navigation
Jump to search
Line 28: | Line 28: | ||
<td style="background-color:#ccffcc;padding:7px;"> |
<td style="background-color:#ccffcc;padding:7px;"> |
||
<p> |
<p> |
||
− | To do ..(what you are doing)........., we don't have to change the |
||
+ | We don't have to change the tagging and documentation section of the problem file. |
||
− | tagging and documentation section of the problem file. |
||
+ | In the initialization section, we need to include the macros file <code>parserImplicitPlane.pl</code>. |
||
− | In the initialization section, we need to include the macros file <code>-------.pl</code>. |
||
</p> |
</p> |
||
</td> |
</td> |
Revision as of 09:41, 17 June 2008
Your title here: PG Code Snippet
This code snippet shows the essential PG code to check student answers that are equations. Note that these are insertions, not a complete PG file. This code will have to be incorporated into the problem file on which you are working.
PG problem file | Explanation |
---|---|
loadMacros("parserImplicitPlane.pl"); |
We don't have to change the tagging and documentation section of the problem file.
In the initialization section, we need to include the macros file |
Context("....."); Define context and variables for the questions $expr = Formula("...."); |
In the problem set-up section of the file, we specify that the Context should be Notes: on using this and related Contexts. |
BEGIN_TEXT ...... question text ...... END_TEXT |
The problem text section of the file is as we'd expect. |
ANS( $expr->cmp() ); |
As is the answer. |