- Was this an intentional decision instead of having it produce actual display math? If so, can anyone speak to what led to that?
- Could there be something like [```...```] that actually makes display mode?
First, the centered displayed equation is frequently not appropriate for WeBWorK problems (especially in the original days of PGML before the layout was changed to include the grey background and border, which limits the width of the problem, the output could be very wide, and centered equations made reading the problem difficult).
Second, the layout was intended to be controlled by PGML, not TeX, so if you wanted an equation on a separate line with centering, you would indicate that through PGML, via
>> [`` ... ``] < <on a separate line proceeded by a blank line.
Third, people often wanted display-style rendering (for fractions or summations) in their in-line formulas, so [`` ... ``]
made that easy.
Fourth, people often wanted their displayed equations left-justified (or just indented), rather than centered. That is also easy by just indenting the [`` ... ``]
by four spaces.
Can you explain why the distinction matters in PreTeXt, and why centering is insufficient? The only thing I can think of is that equations with equation numbers or \tag{}
macros would be easier that way. Since PG problems don't usually have numbered or tagged equations, that was not considered to be an issue for PGML when it was designed.