|
14 | 14 | or PDF, what you see on the screen is what you get in the hardcopy. |
15 | 15 | `FreeType <https://www.freetype.org/>`_ support |
16 | 16 | produces very nice, antialiased fonts, that look good even at small |
17 | | -raster sizes. matplotlib includes its own |
| 17 | +raster sizes. Matplotlib includes its own |
18 | 18 | :mod:`matplotlib.font_manager` (thanks to Paul Barrett), which |
19 | 19 | implements a cross platform, `W3C <http://www.w3.org/>` |
20 | 20 | compliant font finding algorithm. |
|
23 | 23 | weight, text location and color, etc.) with sensible defaults set in |
24 | 24 | the :doc:`rc file </tutorials/introductory/customizing>`. |
25 | 25 | And significantly, for those interested in mathematical |
26 | | -or scientific figures, matplotlib implements a large number of TeX |
| 26 | +or scientific figures, Matplotlib implements a large number of TeX |
27 | 27 | math symbols and commands, supporting :doc:`mathematical expressions |
28 | 28 | </tutorials/text/mathtext>` anywhere in your figure. |
29 | 29 |
|
|
211 | 211 | plt.show() |
212 | 212 |
|
213 | 213 | ############################################################################## |
214 | | -# Vertical spacing for titles is controlled via ``rcParams[axes.titlepad]``, |
215 | | -# which defaults to 5 points. Setting to a different value moves the title. |
| 214 | +# Vertical spacing for titles is controlled via :rc:`axes.titlepad`, which |
| 215 | +# defaults to 5 points. Setting to a different value moves the title. |
216 | 216 |
|
217 | 217 | fig, ax = plt.subplots(figsize=(5, 3)) |
218 | 218 | fig.subplots_adjust(top=0.8) |
|
0 commit comments