Skip to content

Commit 2a25729

Browse files
committed
deploy: 305ebba
0 parents  commit 2a25729

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+5129
-0
lines changed

.buildinfo

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sphinx build info version 1
2+
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: ea2231386f3d6e36fc32a7a5d13fa057
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7

.nojekyll

Whitespace-only changes.

_images/cheatsheets-1.png

422 KB
Loading

_images/cheatsheets-2.png

424 KB
Loading

_images/handout-beginner.png

244 KB
Loading

_images/handout-intermediate.png

266 KB
Loading

_images/handout-tips.png

230 KB
Loading

_sources/index.rst.txt

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
.. title:: Matplotlib cheatsheets
2+
3+
***********************************
4+
Matplotlib cheatsheets and handouts
5+
***********************************
6+
7+
Cheatsheets
8+
***********
9+
10+
.. grid:: 2
11+
12+
.. grid-item::
13+
14+
.. image:: ../cheatsheets-1.png
15+
:width: 270px
16+
:align: center
17+
:alt: image of first page of cheatsheets
18+
19+
.. grid-item::
20+
21+
.. image:: ../cheatsheets-2.png
22+
:width: 270px
23+
:align: center
24+
:alt: image of second page of cheatsheets
25+
26+
`Cheatsheets [pdf] <./cheatsheets.pdf>`_
27+
28+
29+
30+
Handouts
31+
********
32+
33+
.. grid:: 1 2 3 3
34+
35+
.. grid-item::
36+
37+
.. image:: ../handout-beginner.png
38+
:width: 270px
39+
:align: center
40+
:alt: image of beginner handout
41+
42+
`Beginner [pdf] <./handout-beginner.pdf>`_
43+
44+
.. grid-item::
45+
46+
.. image:: ../handout-intermediate.png
47+
:width: 270px
48+
:align: center
49+
:alt: image of intermediate handout
50+
51+
`Intermediate [pdf] <./handout-intermediate.pdf>`_
52+
53+
.. grid-item::
54+
55+
.. image:: ../handout-tips.png
56+
:width: 270px
57+
:align: center
58+
:alt: image of tips handout
59+
60+
`Tips [pdf] <./handout-tips.pdf>`_
61+
62+
Contribute
63+
**********
64+
65+
Issues, suggestions, or pull-requests gratefully accepted at
66+
`matplotlib/cheatsheets <https://github.com/matplotlib/cheatsheets>`_

_sphinx_design_static/design-style.1e8bd061cd6da7fc9cf755528e8ffc24.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_sphinx_design_static/design-tabs.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
var sd_labels_by_text = {};
2+
3+
function ready() {
4+
const li = document.getElementsByClassName("sd-tab-label");
5+
for (const label of li) {
6+
syncId = label.getAttribute("data-sync-id");
7+
if (syncId) {
8+
label.onclick = onLabelClick;
9+
if (!sd_labels_by_text[syncId]) {
10+
sd_labels_by_text[syncId] = [];
11+
}
12+
sd_labels_by_text[syncId].push(label);
13+
}
14+
}
15+
}
16+
17+
function onLabelClick() {
18+
// Activate other inputs with the same sync id.
19+
syncId = this.getAttribute("data-sync-id");
20+
for (label of sd_labels_by_text[syncId]) {
21+
if (label === this) continue;
22+
label.previousElementSibling.checked = true;
23+
}
24+
window.localStorage.setItem("sphinx-design-last-tab", syncId);
25+
}
26+
27+
document.addEventListener("DOMContentLoaded", ready, false);

0 commit comments

Comments
 (0)