|
From: <md...@us...> - 2007-07-18 15:57:41
|
Revision: 3560
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3560&view=rev
Author: mdboom
Date: 2007-07-18 08:57:40 -0700 (Wed, 18 Jul 2007)
Log Message:
-----------
Support dotless i and j
Modified Paths:
--------------
branches/mathtext_mgd/lib/matplotlib/_mathtext_data.py
Modified: branches/mathtext_mgd/lib/matplotlib/_mathtext_data.py
===================================================================
--- branches/mathtext_mgd/lib/matplotlib/_mathtext_data.py 2007-07-18 15:41:59 UTC (rev 3559)
+++ branches/mathtext_mgd/lib/matplotlib/_mathtext_data.py 2007-07-18 15:57:40 UTC (rev 3560)
@@ -112,6 +112,8 @@
r'\phi' : ('cmmi10', 42),
r'\chi' : ('cmmi10', 17),
r'\psi' : ('cmmi10', 31),
+ r'\i' : ('cmmi10', 8),
+ r'\j' : ('cmmi10', 65),
r'(' : ('cmr10', 119),
r'\leftparen' : ('cmr10', 119),
@@ -748,8 +750,7 @@
r'\Diamond' : ('psyr', 224),
r'\langle' : ('psyr', 225),
r'\Sigma' : ('psyr', 229),
- r'\sum' : ('psyr', 229),
-
+ r'\sum' : ('psyr', 229)
}
# Automatically generated.
@@ -2571,7 +2572,8 @@
'divideontimes': 8903,
'lbrack': 91,
'textquotedblright': 8221,
-'Colon': 8759}
+'Colon': 8759,
+'i': 305}
uni2tex = dict([(v,k) for k,v in tex2uni.items()])
@@ -3049,7 +3051,8 @@
'divideontimes': 'uni22C7',
'lbrack': 'bracketleft',
'textquotedblright': 'quotedblright',
-'Colon': 'uni2237'}
+'Colon': 'uni2237',
+'i': 'uni0131'}
type12tex = dict([(v,k) for k,v in tex2type1.items()])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|