@@ -43,7 +43,7 @@ If you only want to use the `pandas` converter for `datetime64` values ::
43
43
Find all objects in a figure of a certain type
44
44
----------------------------------------------
45
45
46
- Every Matplotlib artist (see :ref: ` sphx_glr_tutorials_intermediate_artists.py `) has a method
46
+ Every Matplotlib artist (see :doc: ` /tutorials/intermediate/artists `) has a method
47
47
called :meth: `~matplotlib.artist.Artist.findobj ` that can be used to
48
48
recursively search the artist for any artists it may contain that meet
49
49
some criteria (e.g., match all :class: `~matplotlib.lines.Line2D `
@@ -159,7 +159,7 @@ labels::
159
159
ax = fig.add_subplot(111)
160
160
161
161
You can control the defaults for these parameters in your
162
- :file: `matplotlibrc ` file; see :ref: ` sphx_glr_tutorials_introductory_customizing.py `. For
162
+ :file: `matplotlibrc ` file; see :doc: ` /tutorials/introductory/customizing `. For
163
163
example, to make the above setting permanent, you would set::
164
164
165
165
figure.subplot.bottom : 0.2 # the bottom of the subplots of the figure
@@ -190,7 +190,7 @@ specify the location explicitly::
190
190
ax = fig.add_axes([left, bottom, width, height])
191
191
192
192
where all values are in fractional (0 to 1) coordinates. See
193
- :ref: ` sphx_glr_gallery_subplots_axes_and_figures_axes_demo.py ` for an example of placing axes manually.
193
+ :doc: ` /gallery/subplots_axes_and_figures/axes_demo ` for an example of placing axes manually.
194
194
195
195
.. _howto-auto-adjust :
196
196
@@ -200,7 +200,7 @@ Automatically make room for tick labels
200
200
.. note ::
201
201
This is now easier to handle than ever before.
202
202
Calling :func: `~matplotlib.pyplot.tight_layout ` can fix many common
203
- layout issues. See the :ref: ` sphx_glr_tutorials_intermediate_tight_layout_guide.py `.
203
+ layout issues. See the :doc: ` /tutorials/intermediate/tight_layout_guide `.
204
204
205
205
The information below is kept here in case it is useful for other
206
206
purposes.
@@ -352,7 +352,7 @@ and patches, respectively::
352
352
353
353
.. only :: html
354
354
355
- See :ref: ` sphx_glr_gallery_misc_zorder_demo.py ` for a complete example.
355
+ See :doc: ` /gallery/misc/zorder_demo ` for a complete example.
356
356
357
357
You can also use the Axes property
358
358
:meth: `~matplotlib.axes.Axes.set_axisbelow ` to control whether the grid
@@ -371,7 +371,7 @@ some ratio which controls the ratio::
371
371
372
372
.. only :: html
373
373
374
- See :ref: ` sphx_glr_gallery_subplots_axes_and_figures_axis_equal_demo.py ` for a
374
+ See :doc: ` /gallery/subplots_axes_and_figures/axis_equal_demo ` for a
375
375
complete example.
376
376
377
377
.. _howto-twoscale :
@@ -415,7 +415,7 @@ locators as desired because the two axes are independent.
415
415
416
416
.. only :: html
417
417
418
- See :ref: ` sphx_glr_gallery_api_two_scales.py ` for a complete example
418
+ See :doc: ` /gallery/api/two_scales ` for a complete example
419
419
420
420
.. _howto-batch :
421
421
@@ -661,7 +661,7 @@ For more on configuring your backend, see
661
661
662
662
Alternatively, you can avoid pylab/pyplot altogether, which will give
663
663
you a little more control, by calling the API directly as shown in
664
- :ref: ` sphx_glr_gallery_api_agg_oo_sgskip.py `.
664
+ :doc: ` /gallery/api/agg_oo_sgskip `.
665
665
666
666
You can either generate hardcopy on the filesystem by calling savefig::
667
667
0 commit comments