I love contextScientificNotation.pl, but it forces students to use 'x' instead of '*' to represent the multiplication symbol. How can I redefine it?
Thanks!
Carl Yao
contextScientificNotation.pl, and so would be less portable.
An alternative would be to do:
loadMacros("contextScientificNotation.pl");
Context("ScientificNotation");
Context()->operators->add("*" => Context()->operators->get("x"));
which will add the definition of * to be the same as that of x.