├── .gitignore ├── LICENSE ├── ads ├── cover.tex ├── declaration.tex ├── header.tex └── restrictionNotices.tex ├── bibliographie.bib ├── content ├── abstract.tex ├── acronyms.tex ├── appendix.tex ├── chapter │ ├── 01.tex │ ├── 02.tex │ └── 03.tex └── glossary.tex ├── images ├── cover │ ├── logo-company.png │ └── logo-dhbw.pdf └── logo.png ├── lang ├── de.tex └── en.tex ├── main.tex ├── readme.md └── settings ├── document.tex └── main.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/LICENSE -------------------------------------------------------------------------------- /ads/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/ads/cover.tex -------------------------------------------------------------------------------- /ads/declaration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/ads/declaration.tex -------------------------------------------------------------------------------- /ads/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/ads/header.tex -------------------------------------------------------------------------------- /ads/restrictionNotices.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/ads/restrictionNotices.tex -------------------------------------------------------------------------------- /bibliographie.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/bibliographie.bib -------------------------------------------------------------------------------- /content/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/content/abstract.tex -------------------------------------------------------------------------------- /content/acronyms.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/content/acronyms.tex -------------------------------------------------------------------------------- /content/appendix.tex: -------------------------------------------------------------------------------- 1 | % !TeX root = ../main.tex 2 | 3 | \addchap{\appendixPhrase} 4 | 5 | 6 | -------------------------------------------------------------------------------- /content/chapter/01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/content/chapter/01.tex -------------------------------------------------------------------------------- /content/chapter/02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/content/chapter/02.tex -------------------------------------------------------------------------------- /content/chapter/03.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/content/chapter/03.tex -------------------------------------------------------------------------------- /content/glossary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/content/glossary.tex -------------------------------------------------------------------------------- /images/cover/logo-company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/images/cover/logo-company.png -------------------------------------------------------------------------------- /images/cover/logo-dhbw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/images/cover/logo-dhbw.pdf -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/images/logo.png -------------------------------------------------------------------------------- /lang/de.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/lang/de.tex -------------------------------------------------------------------------------- /lang/en.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/lang/en.tex -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/main.tex -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/readme.md -------------------------------------------------------------------------------- /settings/document.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/settings/document.tex -------------------------------------------------------------------------------- /settings/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanFW/dhbw-heidenheim-latex-template/HEAD/settings/main.tex --------------------------------------------------------------------------------