├── .gitignore ├── LICENSE ├── README.md ├── inkscape ├── 2-1-getting-started.md ├── 2-2-shapes-colours-lines.md ├── 2-3-more-drawing.md ├── 2-4-paths.md ├── 2-5-save-and-export.md ├── 2-6-annoyances.md └── figures │ ├── annoyances-dialog-1.png │ ├── annoyances-dialog-2.png │ ├── annoyances-text-style-1.png │ ├── annoyances-text-style-2.png │ ├── circle-1.png │ ├── circle-2.png │ ├── circle-3.png │ ├── conf-dialogs.png │ ├── distr-1.png │ ├── distr-2.png │ ├── distr-3.png │ ├── distr-4.png │ ├── distr-5.png │ ├── export.png │ ├── fs-1.png │ ├── fs-10.png │ ├── fs-2.png │ ├── fs-3.png │ ├── fs-4.png │ ├── fs-5.png │ ├── fs-6.png │ ├── fs-7.png │ ├── fs-8.png │ ├── fs-9.png │ ├── guides-1.png │ ├── hello.png │ ├── ina.png │ ├── ion-1.png │ ├── ion-10.png │ ├── ion-11.png │ ├── ion-12.png │ ├── ion-13.png │ ├── ion-14.png │ ├── ion-15.png │ ├── ion-2.png │ ├── ion-3.png │ ├── ion-4.png │ ├── ion-5.png │ ├── ion-6.png │ ├── ion-7.png │ ├── ion-8.png │ ├── ion-9.png │ ├── ion-b-1.png │ ├── ion-b-10.png │ ├── ion-b-11.png │ ├── ion-b-12.png │ ├── ion-b-13.png │ ├── ion-b-14.png │ ├── ion-b-15.png │ ├── ion-b-16.png │ ├── ion-b-17.png │ ├── ion-b-18.png │ ├── ion-b-2.png │ ├── ion-b-3.png │ ├── ion-b-4.png │ ├── ion-b-5.png │ ├── ion-b-6.png │ ├── ion-b-7.png │ ├── ion-b-8.png │ ├── ion-b-9.png │ ├── ion2.svg │ ├── latex-1.png │ ├── latex-2.png │ ├── layout.svg │ ├── lines-1.png │ ├── markov-1.jpg │ ├── markov-10.png │ ├── markov-11.png │ ├── markov-12.png │ ├── markov-13.png │ ├── markov-14.png │ ├── markov-2.png │ ├── markov-3.png │ ├── markov-4.png │ ├── markov-5.png │ ├── markov-6.png │ ├── markov-7.png │ ├── markov-8.png │ ├── markov-9.png │ ├── markov.svg │ ├── moving-1.png │ ├── moving-2.png │ ├── new-doc-grid.png │ ├── new-doc-size.png │ ├── prefs-grid.png │ ├── prefs-snap.png │ ├── prefs-steps.png │ ├── rect-1.png │ ├── rect-2.png │ ├── rect-3.png │ ├── rect-4.png │ ├── rect-5.png │ ├── shapes-3d-1.png │ ├── shapes-3d-2.png │ ├── shapes-3d-3.png │ ├── shapes-3d-4.png │ ├── shapes-3d-5.png │ ├── shapes-3d-6.png │ ├── shapes-3d-7.png │ ├── shapes-3d-8.png │ ├── shapes.png │ ├── shapes.svg │ ├── snap-enable.png │ ├── snap-grid.png │ ├── snap-rect-done.png │ ├── snap-rect-move.png │ ├── snap-rect.png │ ├── subfig.svg │ └── text-1.png ├── matplotlib ├── 3-1-getting-started.ipynb ├── 3-2-lines-and-markers.ipynb ├── 3-3-layout.ipynb ├── 3-4-axes-legends-annotations.ipynb ├── 3-5-raster-data.ipynb ├── 3-6-neat-tricks.ipynb └── figures │ ├── first-example-hi-res.png │ ├── first-example.eps │ ├── first-example.pdf │ ├── first-example.png │ ├── legend-1.png │ ├── legend-2.png │ ├── padding-1.svg │ ├── rasterised-1.svg │ └── rasterised-2.svg └── tips ├── 1-1-have-a-plan.md ├── 1-2-design-for-papers.md ├── 1-3-vector-and-raster.ipynb ├── 1-4-visual-language.ipynb ├── 1-5-show-your-workings.ipynb └── figures ├── balance-1.svg ├── balance-2.svg ├── dont-add-padding.png ├── ecg-1.jpg ├── ecg-2.svg ├── figure-ohara-currents-and-ap.svg ├── figure-ohara-schematic.svg ├── fixed-width-bad.png ├── fixed-width-good.png ├── one-page-paci-vcp_opt-beat1.png ├── overview-v1.png ├── overview-v10.png ├── overview-v7.png ├── res-1.png ├── res-2.png ├── res-3.png ├── res-4.svg ├── sketch-complex-layout.jpg ├── sketch-diagram.jpg ├── sketch-imagined-data.jpg ├── subfig-1.pdf ├── subfig-2.pdf ├── subfig-3.pdf ├── subfigures-1.png └── subfigures-2.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/README.md -------------------------------------------------------------------------------- /inkscape/2-1-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/2-1-getting-started.md -------------------------------------------------------------------------------- /inkscape/2-2-shapes-colours-lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/2-2-shapes-colours-lines.md -------------------------------------------------------------------------------- /inkscape/2-3-more-drawing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/2-3-more-drawing.md -------------------------------------------------------------------------------- /inkscape/2-4-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/2-4-paths.md -------------------------------------------------------------------------------- /inkscape/2-5-save-and-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/2-5-save-and-export.md -------------------------------------------------------------------------------- /inkscape/2-6-annoyances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/2-6-annoyances.md -------------------------------------------------------------------------------- /inkscape/figures/annoyances-dialog-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/annoyances-dialog-1.png -------------------------------------------------------------------------------- /inkscape/figures/annoyances-dialog-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/annoyances-dialog-2.png -------------------------------------------------------------------------------- /inkscape/figures/annoyances-text-style-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/annoyances-text-style-1.png -------------------------------------------------------------------------------- /inkscape/figures/annoyances-text-style-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/annoyances-text-style-2.png -------------------------------------------------------------------------------- /inkscape/figures/circle-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/circle-1.png -------------------------------------------------------------------------------- /inkscape/figures/circle-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/circle-2.png -------------------------------------------------------------------------------- /inkscape/figures/circle-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/circle-3.png -------------------------------------------------------------------------------- /inkscape/figures/conf-dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/conf-dialogs.png -------------------------------------------------------------------------------- /inkscape/figures/distr-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/distr-1.png -------------------------------------------------------------------------------- /inkscape/figures/distr-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/distr-2.png -------------------------------------------------------------------------------- /inkscape/figures/distr-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/distr-3.png -------------------------------------------------------------------------------- /inkscape/figures/distr-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/distr-4.png -------------------------------------------------------------------------------- /inkscape/figures/distr-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/distr-5.png -------------------------------------------------------------------------------- /inkscape/figures/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/export.png -------------------------------------------------------------------------------- /inkscape/figures/fs-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-1.png -------------------------------------------------------------------------------- /inkscape/figures/fs-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-10.png -------------------------------------------------------------------------------- /inkscape/figures/fs-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-2.png -------------------------------------------------------------------------------- /inkscape/figures/fs-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-3.png -------------------------------------------------------------------------------- /inkscape/figures/fs-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-4.png -------------------------------------------------------------------------------- /inkscape/figures/fs-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-5.png -------------------------------------------------------------------------------- /inkscape/figures/fs-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-6.png -------------------------------------------------------------------------------- /inkscape/figures/fs-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-7.png -------------------------------------------------------------------------------- /inkscape/figures/fs-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-8.png -------------------------------------------------------------------------------- /inkscape/figures/fs-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/fs-9.png -------------------------------------------------------------------------------- /inkscape/figures/guides-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/guides-1.png -------------------------------------------------------------------------------- /inkscape/figures/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/hello.png -------------------------------------------------------------------------------- /inkscape/figures/ina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ina.png -------------------------------------------------------------------------------- /inkscape/figures/ion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-1.png -------------------------------------------------------------------------------- /inkscape/figures/ion-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-10.png -------------------------------------------------------------------------------- /inkscape/figures/ion-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-11.png -------------------------------------------------------------------------------- /inkscape/figures/ion-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-12.png -------------------------------------------------------------------------------- /inkscape/figures/ion-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-13.png -------------------------------------------------------------------------------- /inkscape/figures/ion-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-14.png -------------------------------------------------------------------------------- /inkscape/figures/ion-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-15.png -------------------------------------------------------------------------------- /inkscape/figures/ion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-2.png -------------------------------------------------------------------------------- /inkscape/figures/ion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-3.png -------------------------------------------------------------------------------- /inkscape/figures/ion-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-4.png -------------------------------------------------------------------------------- /inkscape/figures/ion-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-5.png -------------------------------------------------------------------------------- /inkscape/figures/ion-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-6.png -------------------------------------------------------------------------------- /inkscape/figures/ion-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-7.png -------------------------------------------------------------------------------- /inkscape/figures/ion-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-8.png -------------------------------------------------------------------------------- /inkscape/figures/ion-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-9.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-1.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-10.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-11.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-12.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-13.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-14.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-15.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-16.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-17.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-18.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-2.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-3.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-4.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-5.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-6.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-7.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-8.png -------------------------------------------------------------------------------- /inkscape/figures/ion-b-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion-b-9.png -------------------------------------------------------------------------------- /inkscape/figures/ion2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/ion2.svg -------------------------------------------------------------------------------- /inkscape/figures/latex-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/latex-1.png -------------------------------------------------------------------------------- /inkscape/figures/latex-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/latex-2.png -------------------------------------------------------------------------------- /inkscape/figures/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/layout.svg -------------------------------------------------------------------------------- /inkscape/figures/lines-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/lines-1.png -------------------------------------------------------------------------------- /inkscape/figures/markov-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-1.jpg -------------------------------------------------------------------------------- /inkscape/figures/markov-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-10.png -------------------------------------------------------------------------------- /inkscape/figures/markov-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-11.png -------------------------------------------------------------------------------- /inkscape/figures/markov-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-12.png -------------------------------------------------------------------------------- /inkscape/figures/markov-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-13.png -------------------------------------------------------------------------------- /inkscape/figures/markov-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-14.png -------------------------------------------------------------------------------- /inkscape/figures/markov-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-2.png -------------------------------------------------------------------------------- /inkscape/figures/markov-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-3.png -------------------------------------------------------------------------------- /inkscape/figures/markov-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-4.png -------------------------------------------------------------------------------- /inkscape/figures/markov-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-5.png -------------------------------------------------------------------------------- /inkscape/figures/markov-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-6.png -------------------------------------------------------------------------------- /inkscape/figures/markov-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-7.png -------------------------------------------------------------------------------- /inkscape/figures/markov-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-8.png -------------------------------------------------------------------------------- /inkscape/figures/markov-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov-9.png -------------------------------------------------------------------------------- /inkscape/figures/markov.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/markov.svg -------------------------------------------------------------------------------- /inkscape/figures/moving-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/moving-1.png -------------------------------------------------------------------------------- /inkscape/figures/moving-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/moving-2.png -------------------------------------------------------------------------------- /inkscape/figures/new-doc-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/new-doc-grid.png -------------------------------------------------------------------------------- /inkscape/figures/new-doc-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/new-doc-size.png -------------------------------------------------------------------------------- /inkscape/figures/prefs-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/prefs-grid.png -------------------------------------------------------------------------------- /inkscape/figures/prefs-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/prefs-snap.png -------------------------------------------------------------------------------- /inkscape/figures/prefs-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/prefs-steps.png -------------------------------------------------------------------------------- /inkscape/figures/rect-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/rect-1.png -------------------------------------------------------------------------------- /inkscape/figures/rect-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/rect-2.png -------------------------------------------------------------------------------- /inkscape/figures/rect-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/rect-3.png -------------------------------------------------------------------------------- /inkscape/figures/rect-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/rect-4.png -------------------------------------------------------------------------------- /inkscape/figures/rect-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/rect-5.png -------------------------------------------------------------------------------- /inkscape/figures/shapes-3d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes-3d-1.png -------------------------------------------------------------------------------- /inkscape/figures/shapes-3d-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes-3d-2.png -------------------------------------------------------------------------------- /inkscape/figures/shapes-3d-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes-3d-3.png -------------------------------------------------------------------------------- /inkscape/figures/shapes-3d-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes-3d-4.png -------------------------------------------------------------------------------- /inkscape/figures/shapes-3d-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes-3d-5.png -------------------------------------------------------------------------------- /inkscape/figures/shapes-3d-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes-3d-6.png -------------------------------------------------------------------------------- /inkscape/figures/shapes-3d-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes-3d-7.png -------------------------------------------------------------------------------- /inkscape/figures/shapes-3d-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes-3d-8.png -------------------------------------------------------------------------------- /inkscape/figures/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes.png -------------------------------------------------------------------------------- /inkscape/figures/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/shapes.svg -------------------------------------------------------------------------------- /inkscape/figures/snap-enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/snap-enable.png -------------------------------------------------------------------------------- /inkscape/figures/snap-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/snap-grid.png -------------------------------------------------------------------------------- /inkscape/figures/snap-rect-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/snap-rect-done.png -------------------------------------------------------------------------------- /inkscape/figures/snap-rect-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/snap-rect-move.png -------------------------------------------------------------------------------- /inkscape/figures/snap-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/snap-rect.png -------------------------------------------------------------------------------- /inkscape/figures/subfig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/subfig.svg -------------------------------------------------------------------------------- /inkscape/figures/text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/inkscape/figures/text-1.png -------------------------------------------------------------------------------- /matplotlib/3-1-getting-started.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/3-1-getting-started.ipynb -------------------------------------------------------------------------------- /matplotlib/3-2-lines-and-markers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/3-2-lines-and-markers.ipynb -------------------------------------------------------------------------------- /matplotlib/3-3-layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/3-3-layout.ipynb -------------------------------------------------------------------------------- /matplotlib/3-4-axes-legends-annotations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/3-4-axes-legends-annotations.ipynb -------------------------------------------------------------------------------- /matplotlib/3-5-raster-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/3-5-raster-data.ipynb -------------------------------------------------------------------------------- /matplotlib/3-6-neat-tricks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/3-6-neat-tricks.ipynb -------------------------------------------------------------------------------- /matplotlib/figures/first-example-hi-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/figures/first-example-hi-res.png -------------------------------------------------------------------------------- /matplotlib/figures/first-example.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/figures/first-example.eps -------------------------------------------------------------------------------- /matplotlib/figures/first-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/figures/first-example.pdf -------------------------------------------------------------------------------- /matplotlib/figures/first-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/figures/first-example.png -------------------------------------------------------------------------------- /matplotlib/figures/legend-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/figures/legend-1.png -------------------------------------------------------------------------------- /matplotlib/figures/legend-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/figures/legend-2.png -------------------------------------------------------------------------------- /matplotlib/figures/padding-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/figures/padding-1.svg -------------------------------------------------------------------------------- /matplotlib/figures/rasterised-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/figures/rasterised-1.svg -------------------------------------------------------------------------------- /matplotlib/figures/rasterised-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/matplotlib/figures/rasterised-2.svg -------------------------------------------------------------------------------- /tips/1-1-have-a-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/1-1-have-a-plan.md -------------------------------------------------------------------------------- /tips/1-2-design-for-papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/1-2-design-for-papers.md -------------------------------------------------------------------------------- /tips/1-3-vector-and-raster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/1-3-vector-and-raster.ipynb -------------------------------------------------------------------------------- /tips/1-4-visual-language.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/1-4-visual-language.ipynb -------------------------------------------------------------------------------- /tips/1-5-show-your-workings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/1-5-show-your-workings.ipynb -------------------------------------------------------------------------------- /tips/figures/balance-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/balance-1.svg -------------------------------------------------------------------------------- /tips/figures/balance-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/balance-2.svg -------------------------------------------------------------------------------- /tips/figures/dont-add-padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/dont-add-padding.png -------------------------------------------------------------------------------- /tips/figures/ecg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/ecg-1.jpg -------------------------------------------------------------------------------- /tips/figures/ecg-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/ecg-2.svg -------------------------------------------------------------------------------- /tips/figures/figure-ohara-currents-and-ap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/figure-ohara-currents-and-ap.svg -------------------------------------------------------------------------------- /tips/figures/figure-ohara-schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/figure-ohara-schematic.svg -------------------------------------------------------------------------------- /tips/figures/fixed-width-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/fixed-width-bad.png -------------------------------------------------------------------------------- /tips/figures/fixed-width-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/fixed-width-good.png -------------------------------------------------------------------------------- /tips/figures/one-page-paci-vcp_opt-beat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/one-page-paci-vcp_opt-beat1.png -------------------------------------------------------------------------------- /tips/figures/overview-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/overview-v1.png -------------------------------------------------------------------------------- /tips/figures/overview-v10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/overview-v10.png -------------------------------------------------------------------------------- /tips/figures/overview-v7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/overview-v7.png -------------------------------------------------------------------------------- /tips/figures/res-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/res-1.png -------------------------------------------------------------------------------- /tips/figures/res-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/res-2.png -------------------------------------------------------------------------------- /tips/figures/res-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/res-3.png -------------------------------------------------------------------------------- /tips/figures/res-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/res-4.svg -------------------------------------------------------------------------------- /tips/figures/sketch-complex-layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/sketch-complex-layout.jpg -------------------------------------------------------------------------------- /tips/figures/sketch-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/sketch-diagram.jpg -------------------------------------------------------------------------------- /tips/figures/sketch-imagined-data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/sketch-imagined-data.jpg -------------------------------------------------------------------------------- /tips/figures/subfig-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/subfig-1.pdf -------------------------------------------------------------------------------- /tips/figures/subfig-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/subfig-2.pdf -------------------------------------------------------------------------------- /tips/figures/subfig-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/subfig-3.pdf -------------------------------------------------------------------------------- /tips/figures/subfigures-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/subfigures-1.png -------------------------------------------------------------------------------- /tips/figures/subfigures-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelClerx/making-figures/HEAD/tips/figures/subfigures-2.svg --------------------------------------------------------------------------------