├── Formula └── make-deck.rb ├── LICENSE ├── Makefile ├── README.md ├── _pres-gen.sh ├── img ├── aleph0-small.png ├── aleph0.png ├── fancy-layout.png ├── my_template.png ├── three-col-30-40-30.png ├── three-col-eq.png ├── two-col-40-60.png ├── two-col-eq.png ├── two-col-im-tab.png └── two-col-im-txt.png ├── make_deck ├── make_deck.template.sh ├── pandoc └── templates │ ├── default_mod.latex │ └── preamble.tex ├── presentation.md ├── presentation.pdf ├── presentation_nice_formatting.pdf ├── scripts └── bootstrap-macos.sh └── test_homebrew_tap.sh /Formula/make-deck.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/Formula/make-deck.rb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/README.md -------------------------------------------------------------------------------- /_pres-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/_pres-gen.sh -------------------------------------------------------------------------------- /img/aleph0-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/aleph0-small.png -------------------------------------------------------------------------------- /img/aleph0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/aleph0.png -------------------------------------------------------------------------------- /img/fancy-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/fancy-layout.png -------------------------------------------------------------------------------- /img/my_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/my_template.png -------------------------------------------------------------------------------- /img/three-col-30-40-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/three-col-30-40-30.png -------------------------------------------------------------------------------- /img/three-col-eq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/three-col-eq.png -------------------------------------------------------------------------------- /img/two-col-40-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/two-col-40-60.png -------------------------------------------------------------------------------- /img/two-col-eq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/two-col-eq.png -------------------------------------------------------------------------------- /img/two-col-im-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/two-col-im-tab.png -------------------------------------------------------------------------------- /img/two-col-im-txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/img/two-col-im-txt.png -------------------------------------------------------------------------------- /make_deck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/make_deck -------------------------------------------------------------------------------- /make_deck.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/make_deck.template.sh -------------------------------------------------------------------------------- /pandoc/templates/default_mod.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/pandoc/templates/default_mod.latex -------------------------------------------------------------------------------- /pandoc/templates/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/pandoc/templates/preamble.tex -------------------------------------------------------------------------------- /presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/presentation.md -------------------------------------------------------------------------------- /presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/presentation.pdf -------------------------------------------------------------------------------- /presentation_nice_formatting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/presentation_nice_formatting.pdf -------------------------------------------------------------------------------- /scripts/bootstrap-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/scripts/bootstrap-macos.sh -------------------------------------------------------------------------------- /test_homebrew_tap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeygumirov/pandoc-beamer-how-to/HEAD/test_homebrew_tap.sh --------------------------------------------------------------------------------