8000 Fallback to Bitsream vera sans mono · matplotlib/matplotlib@898b5d2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 898b5d2

Browse files
committed
Fallback to Bitsream vera sans mono
In logo example
1 parent 7925a32 commit 898b5d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/pylab_examples/logo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
ax = subplot(111, axisbg='y')
1717
plot(t, x)
1818
text(0.5, 0.5, 'matplotlib', color='r',
19-
fontsize=40, fontname='Courier',
19+
fontsize=40, fontname=['Courier', 'Bitstream Vera Sans Mono'],
2020
horizontalalignment='center',
2121
verticalalignment='center',
2222
transform=ax.transAxes,

examples/pylab_examples/text_handles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ def f(t):
2727
setp(ttext, size='large', color='r', style='italic')
2828
setp(xtext, size='medium', name=['Courier', 'Bitstream Vera Sans Mono'],
2929
weight='bold', color='g')
30-
setp(ytext, size='medium', name=['Helvetica', 'Liberation Sans'],
30+
setp(ytext, size='medium', name=['Helvetica', 'Bitstream Vera Sans'],
3131
weight='light', color='b')
3232
show()

0 commit comments

Comments
 (0)
0