├── .gitignore ├── Makefile ├── README.md ├── beamerthemetudo.sty ├── content └── sample_slides.tex ├── example_dark.pdf ├── example_light.pdf ├── feynman-tikz.sty ├── graphics ├── tudo-title-1.jpg └── tudo-title-2.jpg ├── header-matplotlib.tex ├── header.tex ├── lit.bib ├── logos ├── tu.pdf └── tu_light.pdf ├── matplotlibrc ├── pkg-settings.tex ├── plots ├── darktheme.mplstyle └── plot.py └── presentation.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/README.md -------------------------------------------------------------------------------- /beamerthemetudo.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/beamerthemetudo.sty -------------------------------------------------------------------------------- /content/sample_slides.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/content/sample_slides.tex -------------------------------------------------------------------------------- /example_dark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/example_dark.pdf -------------------------------------------------------------------------------- /example_light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/example_light.pdf -------------------------------------------------------------------------------- /feynman-tikz.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/feynman-tikz.sty -------------------------------------------------------------------------------- /graphics/tudo-title-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/graphics/tudo-title-1.jpg -------------------------------------------------------------------------------- /graphics/tudo-title-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/graphics/tudo-title-2.jpg -------------------------------------------------------------------------------- /header-matplotlib.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/header-matplotlib.tex -------------------------------------------------------------------------------- /header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/header.tex -------------------------------------------------------------------------------- /lit.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/lit.bib -------------------------------------------------------------------------------- /logos/tu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/logos/tu.pdf -------------------------------------------------------------------------------- /logos/tu_light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/logos/tu_light.pdf -------------------------------------------------------------------------------- /matplotlibrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/matplotlibrc -------------------------------------------------------------------------------- /pkg-settings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/pkg-settings.tex -------------------------------------------------------------------------------- /plots/darktheme.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/plots/darktheme.mplstyle -------------------------------------------------------------------------------- /plots/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/plots/plot.py -------------------------------------------------------------------------------- /presentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknierim/tudobeamertheme_dark/HEAD/presentation.tex --------------------------------------------------------------------------------