@@ -75,14 +75,13 @@ Or as a single string to each individual `.Axes.boxplot`:
75
75
Percent sign in pie labels auto-escaped with ``usetex=True ``
76
76
------------------------------------------------------------
77
77
78
- It is common, with `.Axes.pie `, to specify labels that include a percent sign
79
- (``% ``), which denotes a comment for LaTeX. When enabling LaTeX with
80
- :rc: `text.usetex ` or passing ``textprops={"usetex": True} ``, this would cause
81
- the percent sign to disappear.
78
+ It is common, with `.Axes.pie `, to specify labels that include a percent sign (``% ``),
79
+ which denotes a comment for LaTeX. When enabling LaTeX with :rc: `text.usetex ` or passing
80
+ ``textprops={"usetex": True} ``, this used to cause the percent sign to disappear.
82
81
83
- Now, the percent sign is automatically escaped (by adding a preceding
84
- backslash) so that it appears regardless of the ``usetex `` setting. If you have
85
- pre-escaped the percent sign, this will be detected, and remain as is.
82
+ Now, the percent sign is automatically escaped (by adding a preceding backslash) so that
83
+ it appears regardless of the ``usetex `` setting. If you have pre-escaped the percent
84
+ sign, this will be detected, and remain as is.
86
85
87
86
``hatch `` parameter for stackplot
88
87
---------------------------------
@@ -154,7 +153,7 @@ Setting the parameter *side* to 'low' or 'high' allows to only plot one half of
154
153
ax.axhspan(.8, .9, fc="C1", alpha=.5)
155
154
ax.axhspan(.6, .7, .8, .9, fc="C2", alpha=.5)
156
155
157
- subplot titles can now be automatically aligned
156
+ Subplot titles can now be automatically aligned
158
157
-----------------------------------------------
159
158
160
159
Subplot axes titles can be misaligned vertically if tick labels or xlabels are placed at
@@ -205,7 +204,7 @@ Toggle minorticks on Axis
205
204
-------------------------
206
205
207
206
Minor ticks on an `~matplotlib.axis.Axis ` can be displayed or removed using
208
- `~matplotlib.axis.Axis.minorticks_on ` and `~matplotlib.axis.Axis.minorticks_off `; e.g.:
207
+ `~matplotlib.axis.Axis.minorticks_on ` and `~matplotlib.axis.Axis.minorticks_off `; e.g.,
209
208
``ax.xaxis.minorticks_on() ``. See also `~matplotlib.axes.Axes.minorticks_on `.
210
209
211
210
``StrMethodFormatter `` now respects ``axes.unicode_minus ``
@@ -228,7 +227,7 @@ if :rc:`axes.unicode_minus` is set.
228
227
Figure, Axes, and Legend Layout
229
228
===============================
230
229
231
- Subfigures have now controllable zorders
230
+ Subfigures now have controllable zorders
232
231
----------------------------------------
233
232
234
233
Previously, setting the zorder of a subfigure had no effect, and those were plotted on
@@ -297,7 +296,7 @@ automatically added.
297
296
298
297
.. plot ::
299
298
:include-source:
300
- :alt: Example of the new behavior of 3D axis limits, and how setting the rcparam reverts to the old behavior.
299
+ :alt: Example of the new behavior of 3D axis limits, and how setting the rcParam reverts to the old behavior.
301
300
302
301
fig, axs = plt.subplots(1, 2, subplot_kw={'projection': '3d'})
303
302
@@ -406,5 +405,5 @@ object without requiring a full re-draw.
406
405
NonUniformImage now has mouseover support
407
406
-----------------------------------------
408
407
409
- When mousing over a `~matplotlib.image.NonUniformImage ` the data values are now
408
+ When mousing over a `~matplotlib.image.NonUniformImage `, the data values are now
410
409
displayed.
0 commit comments