8000 mathtext: Finetuning sup/super block to match TeX reference by zblz · Pull Request #4873 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

mathtext: Finetuning sup/super block to match TeX reference #4873

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Aug 25, 2015
Merged
Prev Previous commit
Next Next commit
add tests for brackets
  • Loading branch information
zblz committed Aug 7, 2015
commit 2ade0faddfdd2911aa85162f46d26dc79c94b4fb
4 changes: 3 additions & 1 deletion lib/matplotlib/tests/test_mathtext.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@
r'$\mathring{A} \stackrel{\circ}{A} \AA$',
r'$M \, M \thinspace M \/ M \> M \: M \; M \ M \enspace M \quad M \qquad M \! M$',
r'$\Cup$ $\Cap$ $\leftharpoonup$ $\barwedge$ $\rightharpoonup$',
r'$\dotplus$ $\doteq$ $\doteqdot$ $\ddots$'
r'$\dotplus$ $\doteq$ $\doteqdot$ $\ddots$',
r'$x_kx^py^{p-2} d_i^jb_jc_kd x^j_i E^0 E^0_u$', # github issue #4873
r'${x}_{k}{x}^{p}{y}^{p-2} {d}_{i}^{j}{b}_{j}{c}_{k}{d} {x}^{j}_{i}{E}^{0}{E}^0_u$',
]

digits = "0123456789"
Expand Down
0