Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 863c721

Browse files
committed
fixed ismath sig across backends
svn path=/trunk/matplotlib/; revision=287
1 parent c253d4d commit 863c721

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

MANIFEST

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ GOALS
55
INSTALL
66
INTERACTIVE
77
KNOWN_BUGS
8-
MANIFEST
98
MANIFEST.in
109
Makefile
1110
README
@@ -260,6 +259,11 @@ examples/data/intc.csv
260259
examples/data/membrane.dat
261260
examples/data/msft.csv
262261
examples/data/s1045.ima
262+
fonts/afm/cmex10.afm
263+
fonts/afm/cmmi10.afm
264+
fonts/afm/cmr10.afm
265+
fonts/afm/cmsy10.afm
266+
fonts/afm/cmtt10.afm
263267
fonts/afm/pagd8a.afm
264268
fonts/afm/pagdo8a.afm
265269
fonts/afm/pagk8a.afm

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include examples/data/*
77
include images/*
88
include test/*.py
99
include test/README
10-
recursive-include fonts *.ttf *.afm *.TXT
10+
recursive-include fonts *
1111
recursive-include license LICENSE*
1212
recursive-include examples README *.py *.glade
1313
prune examples/_tmp_*

examples/mathtext_demo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
x = arange(0.0, 3.0, 0.1)
1616
#plot(x, sin(2*pi*x))
1717
grid(True)
18-
xlabel(r'$\Delta_i$', fontsize=50)
19-
ylabel(r'$\Delta_{i+1}$')
18+
xlabel(r'$\Delta_i^j$', fontsize=20)
19+
ylabel(r'$\Delta_{i+1}^j$', fontsize=20)
2020
tex = r'$\cal{R}\prod_{i=\alpha_{i+1}}^\infty a_i\rm{sin}(2 \pi f x_i)$'
2121
#tex = r'$\cal{R}\prod^\infty a_i\rm{sin}(2 \pi f x_i)$'
2222

2323
#tex = r'$\alpha\beta\gamma$'
2424
text(1, 2.6, tex, fontsize='xx-large')
25-
title(r'$\Delta^i_{i=\alpha_{i+1}}\rm{ versus }\Delta_{i+1}$', fontsize='large')
25+
title(r'$\Delta_i^j \hspace{0.4} \rm{versus} \hspace{0.4} \Delta_{i+1}^j$', fontsize=25)
2626
#savefig('mathtext_demo_small', dpi=100)
2727
#savefig('mathtext_demo_large', dpi=300)
2828

0 commit comments

Comments
 (0)