Hi matplotlib-users, I have an application which I am currently translating to other languages including Chinese. I was wondering what recommendations you have for internationalization with regards to matplotlib. Using the default font it seems like Chinese characters are not showing up on the plots. I tried running this file:
# -*- coding: utf-8 -*- from matplotlib import pyplot as p p.plot([1,2,4]) wind = u'\u98ce' p.title(wind) p.savefig('test.png') But there is just a box instead of the proper character on the plot. Any ideas what went wrong? Do I have to use a special font? I also tried using TeX following the example here: http://matplotlib.sourceforge.net/examples/pylab_examples/tex_unicode_demo.html but it did not work when I put in Chinese symbols. Any ideas? Best regards, Jesper ------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users