@@ -43,7 +43,7 @@ If you only want to use the `pandas` converter for `datetime64` values ::
4343Find all objects in a figure of a certain type
4444----------------------------------------------
4545
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
4747called :meth: `~matplotlib.artist.Artist.findobj ` that can be used to
4848recursively search the artist for any artists it may contain that meet
4949some criteria (e.g., match all :class: `~matplotlib.lines.Line2D `
@@ -159,7 +159,7 @@ labels::
159159 ax = fig.add_subplot(111)
160160
161161You 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
163163example, to make the above setting permanent, you would set::
164164
165165 figure.subplot.bottom : 0.2 # the bottom of the subplots of the figure
@@ -190,7 +190,7 @@ specify the location explicitly::
190190 ax = fig.add_axes([left, bottom, width, height])
191191
192192where 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.
194194
195195.. _howto-auto-adjust :
196196
@@ -200,7 +200,7 @@ Automatically make room for tick labels
200200.. note ::
201201 This is now easier to handle than ever before.
202202 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 `.
204204
205205 The information below is kept here in case it is useful for other
206206 purposes.
@@ -352,7 +352,7 @@ and patches, respectively::
352352
353353.. only :: html
354354
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.
356356
357357You can also use the Axes property
358358:meth: `~matplotlib.axes.Axes.set_axisbelow ` to control whether the grid
@@ -371,7 +371,7 @@ some ratio which controls the ratio::
371371
372372.. only :: html
373373
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
375375 complete example.
376376
377377.. _howto-twoscale :
@@ -415,7 +415,7 @@ locators as desired because the two axes are independent.
415415
416416.. only :: html
417417
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
419419
420420.. _howto-batch :
421421
@@ -661,7 +661,7 @@ For more on configuring your backend, see
661661
662662Alternatively, you can avoid pylab/pyplot altogether, which will give
663663you 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 `.
665665
666666You can either generate hardcopy on the filesystem by calling savefig::
667667
0 commit comments