|
From: John H. <jdh...@ac...> - 2006-02-09 13:58:12
|
>>>>> "Samuel" == Samuel M Smith <sm...@sa...> writes:
Samuel> I am having a similar problem with online display Latex in
Samuel> matplotlib WXAgg where the display is low resolution . It
Samuel> sounds like you fixed it. I tried to follow the email
Samuel> exchange but I am not sure everything I need to know is
Samuel> there. Could you summarize exactly what the fix is?
Samuel> I have matplotlib 0.86.2 and OSX 10.4.4
Try editing matplotlib/texmanager.py and replacing the < with <= in
the following code; it should read
if vers<='1.6':
# hack the alpha channel as described in comment above
alpha = sqrt(1-X[:,:,0])
else:
alpha = X[:,:,-1]
also, print the version number and let us know what you have.
Make sure you rm -rf the ~/.matplotlib/tex.cache after reinstalling.
JDH
|