Are there any flags we can set for MathQuill?
It would be very helpful if there were a flag to keep it from constantly adding unneeded parentheses. Perhaps it's just an improvement that should be made to the MathQuill code itself. It would not be difficult to produce output without extra parentheses.
These have caused errors in problems in Context("LimitedFraction"), particularly when the answer was supposed to be a mixed number with flags:
Context("LimitedFraction")->flags->set(
requireProperFractions=>1,
showProperFractions =>1,
);
For an example in the OPL, see problem: Library/NewHampshire/unh_schoolib/Fractions/fradrs201.pg
It thinks 3(1/3) is using implied multiplication in the LimitedFraction context.
It was expecting 3 1/3 as the correct answer.
I've had other algebra (or pre-algebra) problems where the added parentheses also caused an error.
Thanks!
Paul