################################################################################ # WeBWorK Online Homework Delivery System # Copyright � 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ # $CVSHeader: webwork-modperl/conf/snippets/setHeader.pg,v 1.9 2004/06/07 19:34:36 jj Exp $ # # This program is free software; you can redistribute it and/or modify it under # the terms of either: (a) the GNU General Public License as published by the # Free Software Foundation; either version 2, or (at your option) any later # version, or (b) the "Artistic License" which comes with this package. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See either the GNU General Public License or the # Artistic License for more details. ################################################################################ DOCUMENT(); loadMacros( "PG.pl", "PGbasicmacros.pl", ); #################################################### # # The item below printed out only when a hardcopy is made. # #################################################### TEXT($BEGIN_ONE_COLUMN); TEXT(MODES(TeX =>EV3(<<'END_TEXT'),HTML=>"")); \noindent {\large \bf $studentName} \hfill \noindent {\large \bf \{protect_underbar($courseName)\} $sectionNumber Fall 2003} \par END_TEXT ########################################################## # # Items printed both to the screen when a hardcopy is made. # # You can insert a url pointing to your course's home page # a few lines below. Remove the comment (#) symbol from the line # to make it active. # ########################################################## BEGIN_TEXT $BBOLD WeBWorK Review Assignment: \{ protect_underbar($setNumber) \} is due : $formattedDueDate. $EBOLD $PAR $PAR The $BR \{ htmlLink(qq!http://webwork.math.rochester.edu!, "(* replace with url for the course home page *)") \} $BR for the course contains the syllabus, grading policy and other information. $PAR END_TEXT ########################################################### # # This is a good place to issue instructions or give comments # for this problem set. # # EDIT BELOW 'BEGIN_TEXT' ########################################################### BEGIN_TEXT $HR $PAR This set of problems reviews concepts from your previous calculus course needed for second semester calculus. $PAR $HR END_TEXT ########################################################### # EDIT ABOVE 'END_TEXT' ########################################################### ########################################################### # # The item below will be printed for both the screen version and the # hardcopy version. # ########################################################### BEGIN_TEXT Before attempting this WeBWorK assignment, work through the WeBWork tutorial provided by your instructor. END_TEXT TEXT($END_ONE_COLUMN); ENDDOCUMENT(); # This should be the last executable line in the problem.