We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70d9999 commit bc88e8cCopy full SHA for bc88e8c
CHANGELOG
@@ -1,3 +1,5 @@
1
+2008-01-31 Don't use unicode strings with usetex by default - DSD
2
+
3
2008-01-31 Fix text spacing problems in PDF backend with *some* fonts,
4
such as STIXGeneral.
5
lib/matplotlib/ticker.py
@@ -338,7 +338,7 @@ def get_offset(self):
338
return ''.join(('$',sciNotStr,r'\mathdefault{',offsetStr,'}$'))
339
elif self._usetex:
340
if sciNotStr != '':
341
- sciNotStr = u'\xd7%s' % sciNotStr
+ sciNotStr = u'\times%s' % sciNotStr
342
return ''.join(('$',sciNotStr,offsetStr,'$'))
343
else:
344
return ''.join((sciNotStr,offsetStr))
0 commit comments