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

Skip to content

Commit f0fe2ef

Browse files
committed
added installing section to users guide
svn path=/trunk/matplotlib/; revision=5591
1 parent 925c45b commit f0fe2ef

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

doc/users/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
:maxdepth: 2
1414

1515
intro.rst
16+
installing.rst
1617
pyplot_tutorial.rst
1718
navigation_toolbar.rst
1819
customizing.rst

doc/users/mathtext.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Writing mathematical expressions
44
================================
55

66
You can use TeX markup in any matplotlib text string. Note that you
7-
do not need to have TeX installed, since matplotlib ships its own TeX
7+
do not need to have TeX installed, since matplotlib ships its own` TeX
88
expression parser, layout engine and fonts. The layout engine is a
99
fairly direct adaptation of the layout algorithms in Donald Knuth's
1010
TeX, so the quality is quite good (matplotlib also provides a

lib/matplotlib/lines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ def _draw_diamond(self, renderer, gc, path, path_trans):
837837
def _draw_thin_diamond(self, renderer, gc, path, path_trans):
838838
offset = renderer.points_to_pixels(self._markersize)
839839
transform = Affine2D().translate(-0.5, -0.5) \
840-
.rotate_deg(45).scale(offset * 0.6, offset)
840+
.rot<ate_deg(45).scale(offset * 0.6, offset)
841841
rgbFace = self._get_rgb_face()
842842
renderer.draw_markers(gc, Path.unit_rectangle(), transform,
843843
path, path_trans, rgbFace)

0 commit comments

Comments
 (0)