File tree Expand file tree Collapse file tree 5 files changed +364
-6
lines changed Expand file tree Collapse file tree 5 files changed +364
-6
lines changed Original file line number Diff line number Diff line change 30
30
# ###############
31
31
# setup.py working directory
32
32
build
33
- # sphinx build directory
34
- doc /_build
35
- doc /gallery
33
+
36
34
# setup.py dist directory
37
35
dist
38
36
# Egg metadata
@@ -58,9 +56,13 @@ lib/matplotlib/mpl-data/matplotlibrc
58
56
59
57
# Documentation generated files #
60
58
# ################################
59
+ # sphinx build directory
60
+ doc /_build
61
61
doc /api /_as_gen
62
- doc /examples
63
62
# autogenerated by sphinx-gallery
63
+ doc /examples
64
+ doc /gallery
65
+ doc /tutorials
64
66
doc /modules
65
67
doc /pyplots /tex_demo.png
66
68
doc /users /installing.rst
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ <h3>{{ _('Navigation') }}</h3>
39
39
40
40
< li > < a href ="{{ pathto('index') }} "> home</ a > | </ li >
41
41
< li > < a href ="{{ pathto('gallery/index') }} "> examples</ a > | </ li >
42
+ < li > < a href ="{{ pathto('tutorials/index') }} "> tutorials</ a > | </ li >
42
43
< li > < a href ="{{ pathto('api/pyplot_summary') }} "> pyplot</ a > | </ li >
43
44
< li > < a href ="{{ pathto('contents') }} "> docs</ a > »</ li >
44
45
Original file line number Diff line number Diff line change 105
105
106
106
# Sphinx gallery configuration
107
107
sphinx_gallery_conf = {
108
- 'examples_dirs' : '../examples' ,
108
+ 'examples_dirs' : [ '../examples' , '../tutorials' ] ,
109
109
'filename_pattern' : '^((?!sgskip).)*$' ,
110
- 'gallery_dirs' : 'gallery' ,
110
+ 'gallery_dirs' : [ 'gallery' , 'tutorials' ] ,
111
111
'doc_module' : ('matplotlib' ,),
112
112
'reference_url' : {'matplotlib' : None ,
113
113
'numpy' : 'http://docs.scipy.org/doc/numpy/reference' ,
Original file line number Diff line number Diff line change
1
+ .. _tutorials:
2
+
3
+ Tutorials
4
+ =========
5
+
6
+ These tutorials cover the basics of creating visualizations with
7
+ Matplotlib, as well as some best-practices in using the package
8
+ effectively.
You can’t perform that action at this time.
0 commit comments