Commit da76485
Fix mathtext spacing of operators at expression boundaries
Relation, binary and arrow operators are "spaced symbols": mathtext puts
a space on each side of them. TeX, however, discards the glue at the
boundaries of a math list, so an operator at the very start or end of an
expression (or of a {...} group) is not spaced on that side -- e.g. in
"a$=b$" there is no space before the "=", only after it. mathtext
instead spaced both sides, and only binary operators were special-cased
at the start of the string.
Decide the left and right spacing of a spaced symbol independently, and
drop the space on any side that abuts the start/end of the expression or
an opening/closing delimiter. The lookahead for the next character now
skips over the source token (which may be a multi-character command such
as "\doteq") instead of just loc + 1.
This restores the simpler \ddots test that had to be worked around with
negative \hspace, and adds a check_figures_equal regression test.
Closes #23315
Co-Authored-By: Claude Opus 4.8 <[email protected]>1 parent ff01737 commit da76485
2 files changed
Lines changed: 42 additions & 12 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2452 | 2452 | | |
2453 | 2453 | | |
2454 | 2454 | | |
2455 | | - | |
2456 | | - | |
| 2455 | + | |
| 2456 | + | |
| 2457 | + | |
| 2458 | + | |
| 2459 | + | |
2457 | 2460 | | |
2458 | | - | |
2459 | | - | |
| 2461 | + | |
| 2462 | + | |
| 2463 | + | |
| 2464 | + | |
| 2465 | + | |
| 2466 | + | |
2460 | 2467 | | |
2461 | 2468 | | |
2462 | | - | |
2463 | | - | |
| 2469 | + | |
| 2470 | + | |
2464 | 2471 | | |
2465 | | - | |
2466 | | - | |
2467 | | - | |
2468 | | - | |
2469 | | - | |
| 2472 | + | |
| 2473 | + | |
| 2474 | + | |
| 2475 | + | |
| 2476 | + | |
| 2477 | + | |
| 2478 | + | |
| 2479 | + | |
| 2480 | + | |
| 2481 | + | |
2470 | 2482 | | |
2471 | 2483 | | |
2472 | 2484 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
117 | | - | |
| 117 | + | |
118 | 118 | | |
119 | 119 | | |
120 | 120 | | |
| |||
596 | 596 | | |
597 | 597 | | |
598 | 598 | | |
| 599 | + | |
| 600 | + | |
| 601 | + | |
| 602 | + | |
| 603 | + | |
| 604 | + | |
| 605 | + | |
| 606 | + | |
| 607 | + | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
| 611 | + | |
| 612 | + | |
| 613 | + | |
| 614 | + | |
| 615 | + | |
| 616 | + | |
599 | 617 | | |
600 | 618 | | |
601 | 619 | | |
| |||
0 commit comments