In case there is some interest, I changed _mathtext_data.py to support nonslanted uppercase greek characters rather (\Omega & stuff, see .diff).

BTW, in _mathtext_data.py there is a line

font = FT2Font('/usr/local/share/matplotlib/cmr10.ttf')

I think this is a obsolete location, right? (at least I don't have it)

cheers,
steve

--
Random number generation is the art of producing pure gibberish as quickly as possible.
--- _mathtext_data.py.orig	2006-07-14 07:28:59.000000000 +0200
+++ _mathtext_data.py	2006-03-17 03:17:12.000000000 +0100
@@ -4,7 +4,7 @@
 
 # this dict maps symbol names to fontnames, glyphindex.  To get the
 # glyph index from the character code, you have to use a reverse
-# dictionary grom font.get_charmaps, eg,
+# dictionary from font.get_charmaps, eg,
 """
 from matplotlib.ft2font import FT2Font
 font = FT2Font('/usr/local/share/matplotlib/cmr10.ttf')
@@ -82,17 +82,16 @@
     r'\imath'               : ('cmmi10',   8),
     r'\jmath'               : ('cmmi10',  65),
     r'\wp'                  : ('cmmi10',  14),
-    r'\Gamma'               : ('cmmi10',  37),
-    r'\Delta'               : ('cmmi10',  11),
-    r'\Theta'               : ('cmmi10',  12),
-    r'\Lambda'              : ('cmmi10',  26),
-    r'\Xi'                  : ('cmmi10',   4),
-    r'\Pi'                  : ('cmmi10',  33),
-    r'\Sigma'               : ('cmmi10',  16),
-    r'\Upsilon'             : ('cmmi10',  19),
-    r'\Phi'                 : ('cmmi10',  15),
-    r'\Psi'                 : ('cmmi10',  27),
-    r'\Omega'               : ('cmmi10',  23),
+    r'\Gamma'               : ('cmr10',   19),
+    r'\Delta'               : ('cmr10',    6),
+    r'\Theta'               : ('cmr10',    7),
+    r'\Lambda'              : ('cmr10',   14),
+    r'\Xi'                  : ('cmr10',    3),
+    r'\Pi'                  : ('cmr10',   17),
+    r'\Sigma'               : ('cmr10',   10),
+    r'\Phi'                 : ('cmr10',    9),
+    r'\Psi'                 : ('cmr10',   15),
+    r'\Omega'               : ('cmr10',   12),
     r'\alpha'               : ('cmmi10',  13),
     r'\beta'                : ('cmmi10',  35),
     r'\gamma'               : ('cmmi10',  24),
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to