├── .github └── workflows │ ├── latex.yml │ └── release-pdf.yml ├── .gitignore ├── LICENSE ├── MANIFEST.md ├── README.md ├── cfg-backmatter.pdf ├── cfg-frontmatter.pdf ├── chapters └── introduction.tex ├── compileall.sh ├── images ├── cfg-icons │ ├── CFG_civic_tech.png │ ├── CFG_civic_tech.svg │ ├── CFG_civic_tech_wide.png │ ├── CFG_code-for-climate_edit.png │ ├── CFG_code_for_climate.png │ ├── CFG_code_for_climate.svg │ ├── CFG_code_for_climate_edit.png │ ├── CFG_code_wide.png │ ├── CFG_digitales_ehrenamt.png │ ├── CFG_digitales_ehrenamt.svg │ ├── CFG_ehrenamtliche.png │ ├── CFG_ehrenamtliche.svg │ ├── CFG_ehrenamtliche_edit.png │ ├── CFG_ehrenamtliche_edit.png.svg │ ├── CFG_free_and_open_source_software.png │ ├── CFG_free_and_open_source_software.svg │ ├── CFG_labs.png │ ├── CFG_labs.svg │ ├── CFG_labs_edit.png │ ├── CFG_netzwerk.png │ ├── CFG_netzwerk.svg │ ├── CFG_netzwerk_edit.png │ ├── CFG_okologische_nachhaltigkeit.png │ ├── CFG_okologische_nachhaltigkeit.svg │ ├── CFG_open_data.png │ ├── CFG_open_data.svg │ ├── CFG_open_data_edit.png │ ├── CFG_open_goverment.png │ ├── CFG_open_goverment.svg │ ├── CFG_open_government_wide.png │ ├── CFG_projekte.png │ ├── CFG_projekte.svg │ ├── CFG_projekte_edit.png │ ├── icon-touch.png │ └── icon-touch.svg └── monalisa.png ├── kaobook.cls ├── main.tex └── styles ├── environments.sty ├── kao.sty ├── kaobiblio.sty ├── kaorefs.sty ├── mdftheorems.sty ├── packages.sty └── plaintheorems.sty /.github/workflows/latex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/.github/workflows/latex.yml -------------------------------------------------------------------------------- /.github/workflows/release-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/.github/workflows/release-pdf.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/MANIFEST.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/README.md -------------------------------------------------------------------------------- /cfg-backmatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/cfg-backmatter.pdf -------------------------------------------------------------------------------- /cfg-frontmatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/cfg-frontmatter.pdf -------------------------------------------------------------------------------- /chapters/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/chapters/introduction.tex -------------------------------------------------------------------------------- /compileall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/compileall.sh -------------------------------------------------------------------------------- /images/cfg-icons/CFG_civic_tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_civic_tech.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_civic_tech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_civic_tech.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_civic_tech_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_civic_tech_wide.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_code-for-climate_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_code-for-climate_edit.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_code_for_climate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_code_for_climate.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_code_for_climate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_code_for_climate.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_code_for_climate_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_code_for_climate_edit.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_code_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_code_wide.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_digitales_ehrenamt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_digitales_ehrenamt.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_digitales_ehrenamt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_digitales_ehrenamt.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_ehrenamtliche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_ehrenamtliche.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_ehrenamtliche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_ehrenamtliche.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_ehrenamtliche_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_ehrenamtliche_edit.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_ehrenamtliche_edit.png.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_ehrenamtliche_edit.png.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_free_and_open_source_software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_free_and_open_source_software.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_free_and_open_source_software.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_free_and_open_source_software.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_labs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_labs.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_labs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_labs.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_labs_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_labs_edit.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_netzwerk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_netzwerk.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_netzwerk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_netzwerk.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_netzwerk_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_netzwerk_edit.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_okologische_nachhaltigkeit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_okologische_nachhaltigkeit.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_okologische_nachhaltigkeit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_okologische_nachhaltigkeit.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_open_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_open_data.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_open_data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_open_data.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_open_data_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_open_data_edit.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_open_goverment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_open_goverment.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_open_goverment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_open_goverment.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_open_government_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_open_government_wide.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_projekte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_projekte.png -------------------------------------------------------------------------------- /images/cfg-icons/CFG_projekte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_projekte.svg -------------------------------------------------------------------------------- /images/cfg-icons/CFG_projekte_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/CFG_projekte_edit.png -------------------------------------------------------------------------------- /images/cfg-icons/icon-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/icon-touch.png -------------------------------------------------------------------------------- /images/cfg-icons/icon-touch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/cfg-icons/icon-touch.svg -------------------------------------------------------------------------------- /images/monalisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/images/monalisa.png -------------------------------------------------------------------------------- /kaobook.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/kaobook.cls -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/main.tex -------------------------------------------------------------------------------- /styles/environments.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/styles/environments.sty -------------------------------------------------------------------------------- /styles/kao.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/styles/kao.sty -------------------------------------------------------------------------------- /styles/kaobiblio.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/styles/kaobiblio.sty -------------------------------------------------------------------------------- /styles/kaorefs.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/styles/kaorefs.sty -------------------------------------------------------------------------------- /styles/mdftheorems.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/styles/mdftheorems.sty -------------------------------------------------------------------------------- /styles/packages.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/styles/packages.sty -------------------------------------------------------------------------------- /styles/plaintheorems.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfde/hackathon-leitfaden/HEAD/styles/plaintheorems.sty --------------------------------------------------------------------------------