Skip to content

Commit 1230846

Browse files
authored
Merge pull request matplotlib#26010 from oscargus/napprox
Correct Unicode for [lg]napprox
2 parents 4b5fc94 + ed490f7 commit 1230846

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
``mathtext`` operators
2+
----------------------
3+
4+
There has been a number of operators added and corrected when a Unicode font is used.
5+
In addition, correct spacing has been added to a number of the previous operators.
6+
Especially, the characters used for ``\gnapprox``, ``\lnapprox``, ``\leftangle``, and
7+
``\rightangle`` have been corrected.
8+
9+
All supported operators can be seen at :ref:`mathtext`.

lib/matplotlib/_mathtext_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,8 @@
489489
'succnapprox' : 0x2aba,
490490
'subsetneqq' : 0x2acb,
491491
'supsetneqq' : 0x2acc,
492-
'lnapprox' : 0x2ab9,
493-
'gnapprox' : 0x2aba,
492+
'lnapprox' : 0x2a89,
493+
'gnapprox' : 0x2a8a,
494494
'longleftarrow' : 0x27f5,
495495
'longrightarrow' : 0x27f6,
496496
'longleftrightarrow' : 0x27f7,

0 commit comments

Comments
 (0)