Difference between revisions of "AlignedChoice"

From WeBWorK_wiki
Jump to navigation Jump to search
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
  +
{{historical}}
  +
  +
<p style="font-size: 120%;font-weight:bold">This style is outdated and recommended to use PGML now.</p>
 
<h2>Aligned Answer Blanks</h2>
 
<h2>Aligned Answer Blanks</h2>
   
Line 69: Line 72:
 
</p>
 
</p>
 
<p>
 
<p>
The options for aligned list are vertical alignment, horizontal alignment, cellspacing, tex spacing (which must include units of measure, such as "3pt"), whether or not the list is numbered, whether there is a column of equals signs, and the length of each answer rule. The defaults and other options are given below.
+
The options for aligned list are vertical alignment, horizontal alignment, cellspacing, tex spacing (which must include units of measure, such as "3pt"), whether or not the list is numbered, whether there is a column of equals signs, and the length of each answer rule. The defaults and other options are given below, and quotes are required around most of the options.
 
<ul type="square">
 
<ul type="square">
 
<li><code>valign=>"MIDDLE"</code> or <code>TOP</code> or <code>BOTTOM</code></li>
 
<li><code>valign=>"MIDDLE"</code> or <code>TOP</code> or <code>BOTTOM</code></li>

Latest revision as of 09:06, 28 June 2023

This article has been retained as a historical document. It is not up-to-date and the formatting may be lacking. Use the information herein with caution.

This style is outdated and recommended to use PGML now.

Aligned Answer Blanks


This PG code shows how to align answer blanks and restrict the type of student answer allowed.

Problem Techniques Index

PG problem file Explanation
DOCUMENT();
loadMacros(
"PGstandard.pl",
"PGunion.pl",
"MathObjects.pl",
"alignedChoice.pl",
);
TEXT(beginproblem());

Initialization: We need to include the macro file alignedChoice.pl for aligning the answer blanks.

Context("Numeric");

$f1 = Formula("sin(pi/4)");
$f2 = Formula("sin(pi)");

Context()->functions->disable("All");
Context()->functions->enable("sqrt");

Context()->texStrings;
$al = new_aligned_list(ans_rule_len=>10, numbered=>1, tex_spacing=>"3pt");
$al->qa(
"\($f1\)", Real($f1->eval)->cmp(),
"\($f2\)", Real($f2->eval)->cmp(),
);
Context()->normalStrings;

Setup: We disable all functions, and then enable square root. The aligned list is an array of pairs of questions and answers (with answer evaluators). We can add as many question and answer pairs to the list as we like.

The options for aligned list are vertical alignment, horizontal alignment, cellspacing, tex spacing (which must include units of measure, such as "3pt"), whether or not the list is numbered, whether there is a column of equals signs, and the length of each answer rule. The defaults and other options are given below, and quotes are required around most of the options.

  • valign=>"MIDDLE" or TOP or BOTTOM
  • align=>"RIGHT" or LEFT or CENTER
  • spacing=>"5"
  • tex_spacing=>"0pt", where 1pt = 1/72in. 3pt is usually good.
  • numbered=>"0" for no numbering, or 1 for numbering
  • equals=>"1" for a column of equals signs, 0 to omit them
  • ans_rule_len=>"10"

BEGIN_TEXT
Find the sine of each of the following angles.
$PAR
\{ $al->print_q() \}
$PAR
Remark: Your answer cannot contain trigonometric functions.
It must be an arithmetic expression or number.
END_TEXT

Main Text: It's a good idea to explain to students that certain types of answers are not allowed.

$showPartialCorrectAnswers = 1;
ANS( $al->correct_ans );

ENDDOCUMENT();

Answer Evaluation: As expected.

Problem Techniques Index