@@ -48,7 +48,7 @@ If you only want to use the `pandas` converter for `datetime64` values ::
4848Find all objects in a figure of a certain type
4949----------------------------------------------
5050
51- Every Matplotlib artist (see :ref: `artist-tutorial `) has a method
51+ Every Matplotlib artist (see :ref: `sphx_glr_tutorials_02_intermediate_artists.py `) has a method
5252called :meth: `~matplotlib.artist.Artist.findobj ` that can be used to
5353recursively search the artist for any artists it may contain that meet
5454some criteria (e.g., match all :class: `~matplotlib.lines.Line2D `
@@ -160,7 +160,7 @@ labels::
160160 ax = fig.add_subplot(111)
161161
162162You can control the defaults for these parameters in your
163- :file: `matplotlibrc ` file; see :ref: `customizing-matplotlib `. For
163+ :file: `matplotlibrc ` file; see :ref: `sphx_glr_tutorials_01_introductory_customizing.py `. For
164164example, to make the above setting permanent, you would set::
165165
166166 figure.subplot.bottom : 0.2 # the bottom of the subplots of the figure
@@ -191,7 +191,7 @@ specify the location explicitly::
191191 ax = fig.add_axes([left, bottom, width, height])
192192
193193where all values are in fractional (0 to 1) coordinates. See
194- :ref: `pylab_examples-axes_demo ` for an example of placing axes manually.
194+ :ref: `sphx_glr_gallery_pylab_examples_axes_demo.py ` for an example of placing axes manually.
195195
196196.. _howto-auto-adjust :
197197
@@ -201,7 +201,7 @@ Automatically make room for tick labels
201201.. note ::
202202 This is now easier to handle than ever before.
203203 Calling :func: `~matplotlib.pyplot.tight_layout ` can fix many common
204- layout issues. See the :ref: `plotting-guide-tight-layout `.
204+ layout issues. See the :ref: `sphx_glr_tutorials_02_intermediate_tight_layout_guide.py `.
205205
206206 The information below is kept here in case it is useful for other
207207 purposes.
@@ -340,7 +340,7 @@ and patches, respectively::
340340
341341.. htmlonly ::
342342
343- See :ref: `pylab_examples-zorder_demo ` for a complete example.
343+ See :ref: `sphx_glr_gallery_pylab_examples_zorder_demo.py ` for a complete example.
344344
345345You can also use the Axes property
346346:meth: `~matplotlib.axes.Axes.set_axisbelow ` to control whether the grid
@@ -361,7 +361,7 @@ some ratio which controls the ratio::
361361
362362.. htmlonly ::
363363
364- See :ref: `subplots_axes_and_figures-equal_aspect_ratio ` for a complete
364+ See :ref: `sphx_glr_gallery_subplots_axes_and_figures_equal_aspect_ratio.py ` for a complete
365365 example.
366366
367367
@@ -406,7 +406,7 @@ locators as desired because the two axes are independent.
406406
407407.. htmlonly ::
408408
409- See :ref: `api-two_scales ` for a complete example
409+ See :ref: `sphx_glr_gallery_api_two_scales.py ` for a complete example
410410
411411.. _howto-batch :
412412
@@ -652,7 +652,7 @@ For more on configuring your backend, see
652652
653653Alternatively, you can avoid pylab/pyplot altogether, which will give
654654you a little more control, by calling the API directly as shown in
655- :ref: `api-agg_oo `.
655+ :ref: `sphx_glr_gallery_api_agg_oo_sgskip.py `.
656656
657657You can either generate hardcopy on the filesystem by calling savefig::
658658
0 commit comments