File tree Expand file tree Collapse file tree 7 files changed +17
-13
lines changed
Expand file tree Collapse file tree 7 files changed +17
-13
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ per-file-ignores =
100100 tutorials/introductory/images.py: E402, E501
101101 tutorials/introductory/pyplot.py: E402, E501
102102 tutorials/introductory/sample_plots.py: E501
103- tutorials/introductory/usage .py: E703
103+ tutorials/introductory/quick_start .py: E703
104104 tutorials/text/annotations.py: E402, E501
105105 tutorials/text/text_intro.py: E402
106106 tutorials/text/text_props.py: E501
Original file line number Diff line number Diff line change @@ -199,15 +199,15 @@ Documents can be linked with the ``:doc:`` directive:
199199
200200 See the :doc:`/users/installing/index`
201201
202- See the tutorial :doc:`/tutorials/introductory/usage `
202+ See the tutorial :doc:`/tutorials/introductory/quick_start `
203203
204204 See the example :doc:`/gallery/lines_bars_and_markers/simple_plot`
205205
206206 will render as:
207207
208208 See the :doc: `/users/installing/index `
209209
210- See the tutorial :doc: `/tutorials/introductory/usage `
210+ See the tutorial :doc: `/tutorials/introductory/quick_start `
211211
212212 See the example :doc: `/gallery/lines_bars_and_markers/simple_plot `
213213
@@ -847,7 +847,7 @@ render as comments in :doc:`/gallery/lines_bars_and_markers/simple_plot`.
847847
848848Tutorials are made with the exact same mechanism, except they are longer, and
849849typically have more than one comment block (i.e.
850- :doc: `/tutorials/introductory/usage `). The first comment block
850+ :doc: `/tutorials/introductory/quick_start `). The first comment block
851851can be the same as the example above. Subsequent blocks of ReST text
852852are delimited by a line of ``### `` characters:
853853
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Learning resources
4646 Tutorials
4747 ^^^^^^^^^
4848
49- - :doc: `Quick-start guide <tutorials/introductory/usage >`
49+ - :doc: `Quick-start guide <tutorials/introductory/quick_start >`
5050 - :doc: `Plot types <plot_types/index >`
5151 - `Introductory tutorials <../tutorials/index.html#introductory >`_
5252 - :doc: `External learning resources <users/resources/index >`
Original file line number Diff line number Diff line change @@ -44,12 +44,12 @@ Here is a minimal example plot:
4444 ax.plot(x, y)
4545 plt.show()
4646
47- If a plot does not show up please check :ref: `troubleshooting-faq `.
47+ If a plot does not show up please check :ref: `troubleshooting-faq `.
4848
4949Where to go next
5050----------------
5151
5252- Check out :doc: `Plot types </plot_types/index >` to get an overview of the
5353 types of plots you can create with Matplotlib.
5454- Learn Matplotlib from the ground up in the
55- :doc: `Quick-start guide </tutorials/introductory/usage >`.
55+ :doc: `Quick-start guide </tutorials/introductory/quick_start >`.
Original file line number Diff line number Diff line change 4343settings. The alternative is the object-oriented interface, which is also
4444very powerful, and generally more suitable for large application
4545development. If you'd like to learn about the object-oriented
46- interface, a great place to start is our :doc:`Usage guide
47- </tutorials/introductory/usage >`. For now, let's get on
46+ interface, a great place to start is our :doc:`Quick start guide
47+ </tutorials/introductory/quick_start >`. For now, let's get on
4848with the imperative-style approach:
4949"""
5050
Original file line number Diff line number Diff line change 33Pyplot tutorial
44===============
55
6- An introduction to the pyplot interface.
6+ An introduction to the pyplot interface. Please also see
7+ :doc:`/tutorials/introductory/quick_start` for an overview of how Matplotlib works.
78"""
89
910###############################################################################
Original file line number Diff line number Diff line change 11"""
2- ***********
3- Basic Usage
4- ***********
2+ *****************
3+ Quick start guide
4+ *****************
55
66This tutorial covers some basic usage patterns and best practices to
77help you get started with Matplotlib.
8+
9+ .. redirect-from:: /tutorials/introductory/usage
10+
811"""
912
1013# sphinx_gallery_thumbnail_number = 3
You can’t perform that action at this time.
0 commit comments