|
From: <md...@us...> - 2008-06-02 13:23:45
|
Revision: 5355
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5355&view=rev
Author: mdboom
Date: 2008-06-02 06:23:35 -0700 (Mon, 02 Jun 2008)
Log Message:
-----------
Fix some mis-typed URLs
Modified Paths:
--------------
trunk/matplotlib/doc/faq/howto_faq.rst
Modified: trunk/matplotlib/doc/faq/howto_faq.rst
===================================================================
--- trunk/matplotlib/doc/faq/howto_faq.rst 2008-06-02 12:55:57 UTC (rev 5354)
+++ trunk/matplotlib/doc/faq/howto_faq.rst 2008-06-02 13:23:35 UTC (rev 5355)
@@ -13,24 +13,24 @@
in these environments. Most importantly, you need to decide what
kinds of images you want to generate (PNG, PDF, SVG) and configure the
appropriate default backend. For 99% of users, this will be the Agg
-backend, which uses the C++ `antigrain <http://antigrain.com`_
+backend, which uses the C++ `antigrain <http://antigrain.com>`_
rendering engine to make nice PNGs. The Agg backend is also
configured to recognize requests to generate other output formats
(PDF, PS, EPS, SVG). The easiest way to configure matplotlib to use
Agg is to call::
- # do this before importing pylab or pyplot
+ # do this before importing pylab or pyplot
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
-
+
Alternatively, you can avoid pylab/pyplot altogeher, which will give
you a little more control, by calling the API directly as shown in
-`agg_oo.py <http://matplotlib.sf.net/examples/api/agg_oo.py`_ .
+`agg_oo.py <http://matplotlib.sf.net/examples/api/agg_oo.py>`_ .
You can either generate hardcopy on the filesystem by calling savefig::
- # do this before importing pylab or pyplot
+ # do this before importing pylab or pyplot
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
@@ -58,4 +58,4 @@
How do I use matplotlib with zope?
----------------------------------
-TODO
\ No newline at end of file
+TODO
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|