Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bc88e8c

Browse filesBrowse files
committed
fixed a bug in ticker, unicode string passed to tex
svn path=/branches/v0_91_maint/; revision=4916
1 parent 70d9999 commit bc88e8c
Copy full SHA for bc88e8c

File tree

2 files changed

+3
-1
lines changed
Filter options

2 files changed

+3
-1
lines changed

‎CHANGELOG

Copy file name to clipboardExpand all lines: CHANGELOG
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2008-01-31 Don't use unicode strings with usetex by default - DSD
2+
13
2008-01-31 Fix text spacing problems in PDF backend with *some* fonts,
24
such as STIXGeneral.
35

‎lib/matplotlib/ticker.py

Copy file name to clipboardExpand all lines: lib/matplotlib/ticker.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def get_offset(self):
338338
return ''.join(('$',sciNotStr,r'\mathdefault{',offsetStr,'}$'))
339339
elif self._usetex:
340340
if sciNotStr != '':
341-
sciNotStr = u'\xd7%s' % sciNotStr
341+
sciNotStr = u'\times%s' % sciNotStr
342342
return ''.join(('$',sciNotStr,offsetStr,'$'))
343343
else:
344344
return ''.join((sciNotStr,offsetStr))

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.