Difference between revisions of "FullProblemTemplate"

From WeBWorK_wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
<h2>Insert Title Here</h2>
 
<h2>Insert Title Here</h2>
   
  +
[[File:Filename.png|300px|thumb|right|Click to enlarge]]
 
<p style="background-color:#eeeeee;border:black solid 1px;padding:3px;">
 
<p style="background-color:#eeeeee;border:black solid 1px;padding:3px;">
 
This PG code shows how to ...
 
This PG code shows how to ...
<ul>
 
<li>Download file: [[File:filename.txt]] (change the file extension from txt to pg when you save it)</li>
 
<li>File location in NPL: <code>NationalProblemLibrary/FortLewis/Authoring/Templates/...</code></li>
 
</ul>
 
 
</p>
 
</p>
  +
* Download file: [[File:Filename.txt]] (change the file extension from txt to pg when you save it)
  +
* File location in NPL: <code>FortLewis/Authoring/Templates/...</code>
   
 
<p style="text-align:center;">
 
<p style="text-align:center;">

Revision as of 14:47, 2 December 2010

Insert Title Here

Click to enlarge

This PG code shows how to ...

  • Download file: File:Filename.txt (change the file extension from txt to pg when you save it)
  • File location in NPL: FortLewis/Authoring/Templates/...

Templates by Subject Area

PG problem file Explanation

Problem tagging data

Problem tagging:

DOCUMENT();

loadMacros(
"PGstandard.pl",
"MathObjects.pl",
"AnswerFormatHelp.pl",
);

TEXT(beginproblem());

Initialization:

Context("Numeric");

$answer = Compute("1");

Setup:

Context()->texStrings;
BEGIN_TEXT
Question text
$BR
$BR
Answer =
\{ ans_rule(20) \}
\{ AnswerFormatHelp("formulas") \}
END_TEXT
Context()->normalStrings;

Main Text:

$showPartialCorrectAnswers = 1;

ANS( $answer->cmp() );

Answer Evaluation:

Context()->texStrings;
BEGIN_SOLUTION
${PAR}SOLUTION:${PAR}
Solution explanation goes here.
END_SOLUTION
Context()->normalStrings;

COMMENT('MathObject version.');

ENDDOCUMENT();

Solution:

Templates by Subject Area