├── .gitignore ├── Gruntfile.js ├── LICENSE ├── Makefile.slides ├── README.md ├── generate.py ├── package.json ├── screenshot.png ├── snippets ├── 0-title.tex ├── 1-table-of-contents.tex ├── checkboxes.tex ├── code-listing.tex ├── deploying.tex ├── flowchart.tex ├── for-loop.tex ├── multicol-bullets.tex ├── overlayed-images.tex ├── references.tex ├── request-response.tex ├── simple-bullets.tex ├── simple-graphic.tex ├── simple-table.tex ├── threads.tex ├── timeline.tex ├── two-column.tex └── two-tables-with-arrow.tex ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── pygments.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── gen_snippets │ └── refs.bib └── js │ ├── bootstrap.js │ └── bootstrap.min.js └── website-templates ├── base.jinja.html ├── base.jinja.tex ├── index.jinja.html └── preamble.tex /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.slides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/Makefile.slides -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/README.md -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/generate.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/screenshot.png -------------------------------------------------------------------------------- /snippets/0-title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/0-title.tex -------------------------------------------------------------------------------- /snippets/1-table-of-contents.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/1-table-of-contents.tex -------------------------------------------------------------------------------- /snippets/checkboxes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/checkboxes.tex -------------------------------------------------------------------------------- /snippets/code-listing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/code-listing.tex -------------------------------------------------------------------------------- /snippets/deploying.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/deploying.tex -------------------------------------------------------------------------------- /snippets/flowchart.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/flowchart.tex -------------------------------------------------------------------------------- /snippets/for-loop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/for-loop.tex -------------------------------------------------------------------------------- /snippets/multicol-bullets.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/multicol-bullets.tex -------------------------------------------------------------------------------- /snippets/overlayed-images.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/overlayed-images.tex -------------------------------------------------------------------------------- /snippets/references.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/references.tex -------------------------------------------------------------------------------- /snippets/request-response.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/request-response.tex -------------------------------------------------------------------------------- /snippets/simple-bullets.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/simple-bullets.tex -------------------------------------------------------------------------------- /snippets/simple-graphic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/simple-graphic.tex -------------------------------------------------------------------------------- /snippets/simple-table.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/simple-table.tex -------------------------------------------------------------------------------- /snippets/threads.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/threads.tex -------------------------------------------------------------------------------- /snippets/timeline.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/timeline.tex -------------------------------------------------------------------------------- /snippets/two-column.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/two-column.tex -------------------------------------------------------------------------------- /snippets/two-tables-with-arrow.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/snippets/two-tables-with-arrow.tex -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/css/pygments.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/gen_snippets/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/gen_snippets/refs.bib -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /website-templates/base.jinja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/website-templates/base.jinja.html -------------------------------------------------------------------------------- /website-templates/base.jinja.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/website-templates/base.jinja.tex -------------------------------------------------------------------------------- /website-templates/index.jinja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/website-templates/index.jinja.html -------------------------------------------------------------------------------- /website-templates/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamos/beamer-snippets/HEAD/website-templates/preamble.tex --------------------------------------------------------------------------------