Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b8705bc

Browse files
committed
Fix typo in mathtext_data.
As can be checked with ``` rcParams["ps.useafm"] = True figtext(.5, .5, "$\\Lambda\varphi$") savefig("/tmp/test.ps") ``` and inspecting the resulting file.
1 parent 269a274 commit b8705bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/_mathtext_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
r'\gamma' : ('psyr', 103),
274274
r'\eta' : ('psyr', 104),
275275
r'\iota' : ('psyr', 105),
276-
r'\varpsi' : ('psyr', 106),
276+
r'\varphi' : ('psyr', 106),
277277
r'\kappa' : ('psyr', 108),
278278
r'\nu' : ('psyr', 110),
279279
r'\pi' : ('psyr', 112),
@@ -360,7 +360,7 @@
360360
r'\prime' : ('psyr', 0o242),
361361
r'\sharp' : ('psyr', 0o43),
362362
r'\slash' : ('psyr', 0o57),
363-
r'\Lamda' : ('psyr', 0o114),
363+
r'\Lambda' : ('psyr', 0o114),
364364
r'\neg' : ('psyr', 0o330),
365365
r'\Upsilon' : ('psyr', 0o241),
366366
r'\rightbrace' : ('psyr', 0o175),

0 commit comments

Comments
 (0)