You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
@@ -163,7 +162,7 @@ will now align the titles vertically.
163
162
164
163
.. plot::
165
164
:include-source:
166
-
:alt: A figure with two Axes side-by-side, the second of which with ticks on top. The Axes titles and x-labels ppear unaligned with each other due to these ticks.
165
+
:alt: A figure with two Axes side-by-side, the second of which with ticks on top. The Axes titles and x-labels appear unaligned with each other due to these ticks.
0 commit comments