There
is a TeX error in the "setHeader file" you are using for your set.
There are a number of copies of set header files that work when shown
on the screen (using HTML) but which do not work when they are run
through the TeX compiler. I've included below a version which I use
that will work for both HTML and TeX output:
DOCUMENT();
loadMacros( PG.pl, PGbasicmacros.pl, PGchoicemacros.pl, PGanswermacros.pl );
TEXT($BEGIN_ONE_COLUMN);
TEXT(MODES(TeX =>EV3(<<'EOT'),HTML=>"",Latex2HTML=>"")); noindent {large bf $studentName} hfill noindent {large bf MTH 162 $sectionNumber Spring 2004} par
EOT
BEGIN_TEXT
$BBOLD WeBWorK assignment number $setNumber is due : $formattedDueDate. $EBOLD
$PAR (This is early Tuesday morning, so it needs to be done MONDAY night!) Remember to get this done early! $PAR The { htmlLink(qq!http://www.math.rochester.edu/courses/162/home/!,"home page") } for the course contains the syllabus, grading policy, and other information. $PAR END_TEXT
################## # EDIT BELOW HERE ################## BEGIN_TEXT $HR
Your message here.
$HR END_TEXT ################## # EDIT ABOVE HERE ################## BEGIN_TEXT $PAR Here's the { htmlLink(qq!http://webwork.math.rochester.edu/docs/docs/pglanguage/availableFunctions.html!,"list of the functions") } which WeBWorK understands. $PAR You can use the "Email instructor" button on each problem page to send e-mail to the professors.
$END_ONE_COLUMN END_TEXT
ENDDOCUMENT(); # This should be the last executable line in the problem.
<| Post or View Comments |>
|