├── .envrc ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── pr-request-idea.md ├── config.yml ├── pull_request_template.md └── workflows │ └── build_and_release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── beamercolorthemepureminimalistic.sty ├── beamerfontthemepureminimalistic.sty ├── beamerinnerthemepureminimalistic.sty ├── beamerouterthemepureminimalistic.sty ├── beamertheme-pure-minimalistic-demo.tex ├── beamerthemepureminimalistic.sty ├── compare_examples ├── README.md ├── defaultbeamer_example.tex ├── demo_bib.bib ├── inputs │ ├── common_header_input.tex │ └── common_slides_input.tex ├── pureminimalistic_example_dark.tex └── pureminimalistic_example_light.tex ├── demo_bib.bib ├── flake.lock ├── flake.nix ├── logos ├── header_logo.png ├── header_logo_darkmode.png ├── institute_logo.png └── institute_logo_darkmode.png ├── minimal_examples ├── README.md ├── alternative_header_footer_logo.tex ├── alternative_logo │ ├── README.md │ ├── console.png │ └── gameboy.png ├── alternative_title_logo.tex ├── custom_color.tex ├── custom_page_word.tex ├── default.tex ├── default_font.tex ├── fira_font.tex ├── no_footer.tex ├── no_footer_logo.tex ├── noto_font.tex ├── show_max_slides.tex ├── subtitle.tex └── vfilleditems.tex ├── multi_lang_examples ├── NotoKufiArabic │ ├── LICENSE_OFL.txt │ ├── NotoKufiArabic-Bold.ttf │ ├── NotoKufiArabic-Regular.ttf │ └── README ├── NotoSansJP │ ├── NotoSansJP-Regular.otf │ └── OFL.txt ├── README.md ├── arabic_example.lua.tex ├── greek_example.lua.tex └── japan_example.lua.tex ├── nix └── default.nix └── scripts └── create_pngs.nu /.envrc: -------------------------------------------------------------------------------- 1 | use flake .# 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.buymeacoffee.com/kaitub -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pr-request-idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.github/ISSUE_TEMPLATE/pr-request-idea.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build_and_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.github/workflows/build_and_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/README.md -------------------------------------------------------------------------------- /beamercolorthemepureminimalistic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/beamercolorthemepureminimalistic.sty -------------------------------------------------------------------------------- /beamerfontthemepureminimalistic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/beamerfontthemepureminimalistic.sty -------------------------------------------------------------------------------- /beamerinnerthemepureminimalistic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/beamerinnerthemepureminimalistic.sty -------------------------------------------------------------------------------- /beamerouterthemepureminimalistic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/beamerouterthemepureminimalistic.sty -------------------------------------------------------------------------------- /beamertheme-pure-minimalistic-demo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/beamertheme-pure-minimalistic-demo.tex -------------------------------------------------------------------------------- /beamerthemepureminimalistic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/beamerthemepureminimalistic.sty -------------------------------------------------------------------------------- /compare_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/compare_examples/README.md -------------------------------------------------------------------------------- /compare_examples/defaultbeamer_example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/compare_examples/defaultbeamer_example.tex -------------------------------------------------------------------------------- /compare_examples/demo_bib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/compare_examples/demo_bib.bib -------------------------------------------------------------------------------- /compare_examples/inputs/common_header_input.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/compare_examples/inputs/common_header_input.tex -------------------------------------------------------------------------------- /compare_examples/inputs/common_slides_input.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/compare_examples/inputs/common_slides_input.tex -------------------------------------------------------------------------------- /compare_examples/pureminimalistic_example_dark.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/compare_examples/pureminimalistic_example_dark.tex -------------------------------------------------------------------------------- /compare_examples/pureminimalistic_example_light.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/compare_examples/pureminimalistic_example_light.tex -------------------------------------------------------------------------------- /demo_bib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/demo_bib.bib -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/flake.nix -------------------------------------------------------------------------------- /logos/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/logos/header_logo.png -------------------------------------------------------------------------------- /logos/header_logo_darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/logos/header_logo_darkmode.png -------------------------------------------------------------------------------- /logos/institute_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/logos/institute_logo.png -------------------------------------------------------------------------------- /logos/institute_logo_darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/logos/institute_logo_darkmode.png -------------------------------------------------------------------------------- /minimal_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/README.md -------------------------------------------------------------------------------- /minimal_examples/alternative_header_footer_logo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/alternative_header_footer_logo.tex -------------------------------------------------------------------------------- /minimal_examples/alternative_logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/alternative_logo/README.md -------------------------------------------------------------------------------- /minimal_examples/alternative_logo/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/alternative_logo/console.png -------------------------------------------------------------------------------- /minimal_examples/alternative_logo/gameboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/alternative_logo/gameboy.png -------------------------------------------------------------------------------- /minimal_examples/alternative_title_logo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/alternative_title_logo.tex -------------------------------------------------------------------------------- /minimal_examples/custom_color.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/custom_color.tex -------------------------------------------------------------------------------- /minimal_examples/custom_page_word.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/custom_page_word.tex -------------------------------------------------------------------------------- /minimal_examples/default.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/default.tex -------------------------------------------------------------------------------- /minimal_examples/default_font.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/default_font.tex -------------------------------------------------------------------------------- /minimal_examples/fira_font.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/fira_font.tex -------------------------------------------------------------------------------- /minimal_examples/no_footer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/no_footer.tex -------------------------------------------------------------------------------- /minimal_examples/no_footer_logo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/no_footer_logo.tex -------------------------------------------------------------------------------- /minimal_examples/noto_font.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/noto_font.tex -------------------------------------------------------------------------------- /minimal_examples/show_max_slides.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/show_max_slides.tex -------------------------------------------------------------------------------- /minimal_examples/subtitle.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/subtitle.tex -------------------------------------------------------------------------------- /minimal_examples/vfilleditems.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/minimal_examples/vfilleditems.tex -------------------------------------------------------------------------------- /multi_lang_examples/NotoKufiArabic/LICENSE_OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/NotoKufiArabic/LICENSE_OFL.txt -------------------------------------------------------------------------------- /multi_lang_examples/NotoKufiArabic/NotoKufiArabic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/NotoKufiArabic/NotoKufiArabic-Bold.ttf -------------------------------------------------------------------------------- /multi_lang_examples/NotoKufiArabic/NotoKufiArabic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/NotoKufiArabic/NotoKufiArabic-Regular.ttf -------------------------------------------------------------------------------- /multi_lang_examples/NotoKufiArabic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/NotoKufiArabic/README -------------------------------------------------------------------------------- /multi_lang_examples/NotoSansJP/NotoSansJP-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/NotoSansJP/NotoSansJP-Regular.otf -------------------------------------------------------------------------------- /multi_lang_examples/NotoSansJP/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/NotoSansJP/OFL.txt -------------------------------------------------------------------------------- /multi_lang_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/README.md -------------------------------------------------------------------------------- /multi_lang_examples/arabic_example.lua.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/arabic_example.lua.tex -------------------------------------------------------------------------------- /multi_lang_examples/greek_example.lua.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/greek_example.lua.tex -------------------------------------------------------------------------------- /multi_lang_examples/japan_example.lua.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/multi_lang_examples/japan_example.lua.tex -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/nix/default.nix -------------------------------------------------------------------------------- /scripts/create_pngs.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kai-tub/latex-beamer-pure-minimalistic/HEAD/scripts/create_pngs.nu --------------------------------------------------------------------------------