@@ -416,18 +416,21 @@ Variable names
416
416
When feasible, please use our internal variable naming convention for objects
417
417
of a given class and objects of any child class:
418
418
419
- +---------------+------------------------------------+
420
- | variable name | base class |
421
- +===============+====================================+
422
- | ``fig `` | `~matplotlib.figure.FigureBase ` |
423
- +---------------+------------------------------------+
424
- | ``ax `` | `~matplotlib.axes.Axes ` |
425
- +---------------+------------------------------------+
426
- | ``trans `` | `~matplotlib.transforms.Transform ` |
427
- +---------------+------------------------------------+
428
-
429
- Generally, denote more than instance of the same class by adding numbers to
430
- the variable names, i.e. ``trans1 ``, ``trans2 ``.
419
+ +------------------------------------+---------------+------------------------------------------+
420
+ | base class | variable name | multiples |
421
+ +====================================+===============+==========================================+
422
+ | `~matplotlib.figure.FigureBase ` | ``fig `` | |
423
+ +------------------------------------+---------------+------------------------------------------+
424
+ | `~matplotlib.axes.Axes ` | ``ax `` | |
425
+ +------------------------------------+---------------+------------------------------------------+
426
+ | `~matplotlib.transforms.Transform ` | ``trans `` | ``trans_<source>_<target> `` or |
427
+ | | | ``trans_<source> `` when target is screen |
428
+ +------------------------------------+---------------+------------------------------------------+
429
+
430
+ Generally, denote more than one instance of the same class by adding suffixes to
431
+ the variable names. If a format isn't specified in the table, use numbers or
432
+ letters as appropriate.
433
+
431
434
432
435
.. _type-hints :
433
436
@@ -495,13 +498,13 @@ ensure that a reference is included in the descriptive text.
495
498
496
499
API Change Notes
497
500
""""""""""""""""
498
- .. include :: doc /api/next_api_changes/readme .rst
501
+ .. include :: .. /api/next_api_changes/README .rst
499
502
:start-line: 5
500
503
:end-line: 31
501
504
502
505
What's new
503
506
""""""""""
504
- .. include :: doc /users/next_whats_new/readme .rst
507
+ .. include :: .. /users/next_whats_new/README .rst
505
508
:start-line: 5
506
509
:end-line: 24
507
510
0 commit comments