@@ -274,7 +274,7 @@ provides the following advantages:
274
274
:ref: `axes panels <ug_insets_panels >` without "stealing space"
275
275
from the parent subplot -- these objects usually need to be
276
276
spaced closer to their parents than other subplots.
277
- * You can :ref: `override particular spacing parameters < ug_tight >`
277
+ * You can :ref: `override < ug_tight >` particular spacing parameters
278
278
and leave the tight layout algorithm to adjust the
279
279
unspecified spacing parameters. For example, passing ``right=1 `` to
280
280
`~proplot.figure.Figure.add_subplots ` fixes the right margin
@@ -329,10 +329,10 @@ concise figures.
329
329
* The `~proplot.axes.Axes.panel_axes ` (shorthand `~proplot.axes.Axes.panel `) commands
330
330
can draw :ref: `thin panels <ug_panels >` along the edges of subplots. This
331
331
can be useful for plotting 1D summary statistics alongside 2D plots.
332
- * :ref: ` A-b-c labels < ug_abc >` can be added to subplots simply using the :rcraw: `abc `
332
+ * A-b-c labels can be added to subplots simply using the :rcraw: `abc `
333
333
setting -- for example, ``pplt.rc['abc'] = 'A.' `` or ``axs.format(abc='A.') ``.
334
334
This is possible because `~proplot.figure.Figure.add_subplot ` assigns a unique
335
- `~proplot.axes.Axes.number ` to every added subplot.
335
+ `~proplot.axes.Axes.number ` to every new subplot.
336
336
* The `proplot.gridspec.SubplotGrid.format ` command can easily format multiple subplots
337
337
at once or add colorbars, legends, panels, twin axes, or inset axes to multiple
338
338
subplots at once. A `~proplot.gridspec.SubplotGrid ` is returned by
@@ -393,9 +393,6 @@ Also, `~proplot.figure.Figure` and `~proplot.axes.Axes` colorbar widths are
393
393
now specified in *physical * units rather than relative units, which makes
394
394
colorbar thickness independent of subplot size and easier to get just right.
395
395
396
- There are also several useful new :ref: `colorbar <ug_cbars >` and
397
- :ref: `legend <ug_legends >` features described in the user guide.
398
-
399
396
Links
400
397
-----
401
398
@@ -865,27 +862,28 @@ ProPlot settings can be changed persistently by editing the default ``proplotrc`
865
862
file in the location given by `~proplot.config.Configurator.user_file ` (this is
866
863
usually ``$HOME/.proplot/proplotrc ``) or by adding ``proplotrc `` files to either
867
864
the current directory or any parent directory. Adding files to parent directories
868
- can be useful when working in projects with lots of subfolders. See the
869
- :ref: `user guide <ug_proplotrc >` for details.
865
+ can be useful when working in projects with lots of subfolders.
870
866
871
867
ProPlot also automatically registers colormaps, color cycles, colors, and font
872
868
files stored in the ``cmaps ``, ``cycles ``, ``colors ``, and ``fonts `` folders in
873
869
the location given by `~proplot.config.Configurator.user_folder ` (this is usually
874
870
``$HOME/.proplot ``). You can save colormaps and color cycles to these
875
871
folders simply by passing ``save=True `` to `~proplot.constructor.Colormap ` and
876
- `~proplot.constructor.Cycle `. To explicitly register objects stored in these folders,
877
- or to register arbitrary input arguments, you can use `~proplot.config.register_cmaps `,
872
+ `~proplot.constructor.Cycle `. To manually register these files, or to
873
+ register arbitrary input arguments, you can use `~proplot.config.register_cmaps `,
878
874
`~proplot.config.register_cycles `, `~proplot.config.register_colors `, or
879
875
`~proplot.config.register_fonts `.
880
876
881
877
Links
882
878
-----
883
879
884
- * For importing custom colormaps,
880
+ * For the ``proplotrc `` file,
881
+ see :ref: `this page <ug_proplotrc >`.
882
+ * For registering colormaps,
885
883
see :ref: `this page <ug_cmaps_dl >`.
886
- * For importing custom color cycles,
884
+ * For registering color cycles,
887
885
see :ref: `this page <ug_cycles_dl >`.
888
- * For importing custom colors,
886
+ * For registering colors,
889
887
see :ref: `this page <ug_colors_user >`.
890
- * For importing custom fonts,
888
+ * For registering fonts,
891
889
see :ref: `this page <ug_fonts_user >`.
0 commit comments