@@ -290,15 +290,15 @@ def my_plotter(ax, data1, data2, param_dict):
290290#
291291# There are three ways to configure your backend:
292292#
293- # 1. The :rc:`backend` parameter in your `` matplotlibrc` ` file
293+ # 1. The :rc:`backend` parameter in your :file:` matplotlibrc` file
294294# 2. The :envvar:`MPLBACKEND` environment variable
295295# 3. The function :func:`matplotlib.use`
296296#
297297# A more detailed description is given below.
298298#
299299# If multiple of these are configurations are present, the last one from the
300300# list takes precedence; e.g. calling :func:`matplotlib.use()` will override
301- # the setting in your `` matplotlibrc` `.
301+ # the setting in your :file:` matplotlibrc`.
302302#
303303# If no backend is explicitly set, Matplotlib automatically detects a usable
304304# backend based on what is available on your system and on whether a GUI event
@@ -308,7 +308,7 @@ def my_plotter(ax, data1, data2, param_dict):
308308#
309309# Here is a detailed description of the configuration methods:
310310#
311- # #. Setting :rc:`backend` in your `` matplotlibrc` ` file::
311+ # #. Setting :rc:`backend` in your :file:` matplotlibrc` file::
312312#
313313# backend : qt5agg # use pyqt5 with antigrain (agg) rendering
314314#
@@ -332,10 +332,10 @@ def my_plotter(ax, data1, data2, param_dict):
332332# > python simple_plot.py
333333#
334334# Setting this environment variable will override the ``backend`` parameter
335- # in *any* `` matplotlibrc`` , even if there is a `` matplotlibrc`` in your
336- # current working directory. Therefore, setting :envvar:`MPLBACKEND`
337- # globally, e.g. in your `` .bashrc`` or `` .profile`` , is discouraged as it
338- # might lead to counter-intuitive behavior.
335+ # in *any* :file:` matplotlibrc`, even if there is a :file:` matplotlibrc` in
336+ # your current working directory. Therefore, setting :envvar:`MPLBACKEND`
337+ # globally, e.g. in your :file:` .bashrc` or :file:` .profile`, is discouraged
338+ # as it might lead to counter-intuitive behavior.
339339#
340340# #. If your script depends on a specific backend you can use the function
341341# :func:`matplotlib.use`::
@@ -646,18 +646,15 @@ def my_plotter(ax, data1, data2, param_dict):
646646# Line segment simplification
647647# ---------------------------
648648#
649- # For plots that have line segments (e.g. typical line plots,
650- # outlines of polygons, etc.), rendering performance can be
651- # controlled by the ``path.simplify`` and
652- # ``path.simplify_threshold`` parameters in your
653- # ``matplotlibrc`` file (see
654- # :doc:`/tutorials/introductory/customizing` for
655- # more information about the ``matplotlibrc`` file).
656- # The ``path.simplify`` parameter is a boolean indicating whether
657- # or not line segments are simplified at all. The
658- # ``path.simplify_threshold`` parameter controls how much line
659- # segments are simplified; higher thresholds result in quicker
660- # rendering.
649+ # For plots that have line segments (e.g. typical line plots, outlines
650+ # of polygons, etc.), rendering performance can be controlled by
651+ # :rc:`path.simplify` and :rc:`path.simplify_threshold`, which
652+ # can be defined e.g. in the :file:`matplotlibrc` file (see
653+ # :doc:`/tutorials/introductory/customizing` for more information about
654+ # the :file:`matplotlibrc` file). :rc:`path.simplify` is a boolean
655+ # indicating whether or not line segments are simplified at all.
656+ # :rc:`path.simplify_threshold` controls how much line segments are simplified;
657+ # higher thresholds result in quicker rendering.
661658#
662659# The following script will first display the data without any
663660# simplification, and then display the same data with simplification.
@@ -683,7 +680,7 @@ def my_plotter(ax, data1, data2, param_dict):
683680#
684681# Matplotlib currently defaults to a conservative simplification
685682# threshold of ``1/9``. If you want to change your default settings
686- # to use a different value, you can change your `` matplotlibrc` `
683+ # to use a different value, you can change your :file:` matplotlibrc`
687684# file. Alternatively, you could create a new style for
688685# interactive plotting (with maximal simplification) and another
689686# style for publication quality plotting (with minimal
0 commit comments