Skip to content

Commit 8f6578e

Browse files
authored
Merge pull request matplotlib#29326 from meeseeksmachine/auto-backport-of-pr-29323-on-v3.10.x
Backport PR matplotlib#29323 on branch v3.10.x (DOC: Don't put quotes around coordinate system names)
2 parents efefcf4 + 175b148 commit 8f6578e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: galleries/users_explain/artists/transforms_tutorial.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -28,37 +28,37 @@
2828
|Coordinate |Description |Transformation object |
2929
|system | |from system to display |
3030
+================+===================================+=============================+
31-
|"data" |The coordinate system of the data |``ax.transData`` |
31+
|*data* |The coordinate system of the data |``ax.transData`` |
3232
| |in the Axes. | |
3333
+----------------+-----------------------------------+-----------------------------+
34-
|"axes" |The coordinate system of the |``ax.transAxes`` |
34+
|*axes* |The coordinate system of the |``ax.transAxes`` |
3535
| |`~matplotlib.axes.Axes`; (0, 0) | |
3636
| |is bottom left of the Axes, and | |
3737
| |(1, 1) is top right of the Axes. | |
3838
+----------------+-----------------------------------+-----------------------------+
39-
|"subfigure" |The coordinate system of the |``subfigure.transSubfigure`` |
39+
|*subfigure* |The coordinate system of the |``subfigure.transSubfigure`` |
4040
| |`.SubFigure`; (0, 0) is bottom left| |
4141
| |of the subfigure, and (1, 1) is top| |
4242
| |right of the subfigure. If a | |
4343
| |figure has no subfigures, this is | |
4444
| |the same as ``transFigure``. | |
4545
+----------------+-----------------------------------+-----------------------------+
46-
|"figure" |The coordinate system of the |``fig.transFigure`` |
46+
|*figure* |The coordinate system of the |``fig.transFigure`` |
4747
| |`.Figure`; (0, 0) is bottom left | |
4848
| |of the figure, and (1, 1) is top | |
4949
| |right of the figure. | |
5050
+----------------+-----------------------------------+-----------------------------+
51-
|"figure-inches" |The coordinate system of the |``fig.dpi_scale_trans`` |
51+
|*figure-inches* |The coordinate system of the |``fig.dpi_scale_trans`` |
5252
| |`.Figure` in inches; (0, 0) is | |
5353
| |bottom left of the figure, and | |
5454
| |(width, height) is the top right | |
5555
| |of the figure in inches. | |
5656
+----------------+-----------------------------------+-----------------------------+
57-
|"xaxis", |Blended coordinate systems, using |``ax.get_xaxis_transform()``,|
58-
|"yaxis" |data coordinates on one direction |``ax.get_yaxis_transform()`` |
57+
|*xaxis*, |Blended coordinate systems, using |``ax.get_xaxis_transform()``,|
58+
|*yaxis* |data coordinates on one direction |``ax.get_yaxis_transform()`` |
5959
| |and axes coordinates on the other. | |
6060
+----------------+-----------------------------------+-----------------------------+
61-
|"display" |The native coordinate system of the|`None`, or |
61+
|*display* |The native coordinate system of the|`None`, or |
6262
| |output ; (0, 0) is the bottom left |`.IdentityTransform()` |
6363
| |of the window, and (width, height) | |
6464
| |is top right of the output in | |

0 commit comments

Comments
 (0)