├── .aspell.conf ├── .aspell.de.pws ├── .aspell.en.pws ├── .dockerignore ├── .editorconfig ├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── _config.yml ├── dependabot.yml └── workflows │ ├── check.yml │ ├── gh-pages.yml │ └── update-files.yml ├── .gitignore ├── .gitmodules ├── .vscode └── extensions.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── Texlivefile ├── _latexmkrc ├── abbreviations.tex ├── bibliography.bib ├── commands.tex ├── config.tex ├── data └── data.csv ├── docs ├── adr │ ├── 0000-use-markdown-architectural-decision-records.md │ ├── 0001-offer-tex-files-instead-of-a-package.md │ ├── 0002-use-cc0-as-license.md │ ├── 0003-use-minted-for-code-highlithing.md │ ├── 0005-use-lualatex-as-default.md │ ├── index.md │ └── template.md ├── latex-setup.md ├── overleaf │ ├── overleaf-step-1.png │ ├── overleaf-step-2.png │ ├── overleaf-step-3.png │ ├── overleaf-step-4.png │ ├── overleaf-step-5.png │ ├── overleaf-step-6.png │ ├── overleaf-step-7-lccaps-error.png │ ├── overleaf-step-8.1.png │ ├── overleaf-step-8.2.png │ └── overleaf.md ├── texstudio-configuration-languagetool.png ├── texstudio-confirmation-1.png └── texstudio-confirmation-2.png ├── figures └── UHH-Logo_2010_Farbe_CMYK.png ├── latexhints-english.tex ├── latexhints-german-plantuml.tex ├── latexhints-german.tex ├── latexhints-minted-german.tex ├── localSettings.yaml ├── main-english-university-of-hamburg.tex ├── main-english.tex ├── main-german-university-of-hamburg.tex ├── main-german.tex ├── main-minted-english-university-of-hamburg.tex ├── main-minted-english.tex ├── main-minted-german-university-of-hamburg.tex ├── main-minted-german.tex ├── pre-documentclass.tex ├── stfloats.sty ├── tikz-uml.sty └── vscode.settings.json /.aspell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.aspell.conf -------------------------------------------------------------------------------- /.aspell.de.pws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.aspell.de.pws -------------------------------------------------------------------------------- /.aspell.en.pws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.aspell.en.pws -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [koppor] 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/_config.yml: -------------------------------------------------------------------------------- 1 | remote_theme: adr/slate 2 | anchors: true 3 | show_downloads: false 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/update-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.github/workflows/update-files.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM registry.gitlab.com/islandoftex/images/texlive:latest 2 | WORKDIR /workdir 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/README.md -------------------------------------------------------------------------------- /Texlivefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/Texlivefile -------------------------------------------------------------------------------- /_latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/_latexmkrc -------------------------------------------------------------------------------- /abbreviations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/abbreviations.tex -------------------------------------------------------------------------------- /bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/bibliography.bib -------------------------------------------------------------------------------- /commands.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/commands.tex -------------------------------------------------------------------------------- /config.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/config.tex -------------------------------------------------------------------------------- /data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/data/data.csv -------------------------------------------------------------------------------- /docs/adr/0000-use-markdown-architectural-decision-records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/adr/0000-use-markdown-architectural-decision-records.md -------------------------------------------------------------------------------- /docs/adr/0001-offer-tex-files-instead-of-a-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/adr/0001-offer-tex-files-instead-of-a-package.md -------------------------------------------------------------------------------- /docs/adr/0002-use-cc0-as-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/adr/0002-use-cc0-as-license.md -------------------------------------------------------------------------------- /docs/adr/0003-use-minted-for-code-highlithing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/adr/0003-use-minted-for-code-highlithing.md -------------------------------------------------------------------------------- /docs/adr/0005-use-lualatex-as-default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/adr/0005-use-lualatex-as-default.md -------------------------------------------------------------------------------- /docs/adr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/adr/index.md -------------------------------------------------------------------------------- /docs/adr/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/adr/template.md -------------------------------------------------------------------------------- /docs/latex-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/latex-setup.md -------------------------------------------------------------------------------- /docs/overleaf/overleaf-step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf-step-1.png -------------------------------------------------------------------------------- /docs/overleaf/overleaf-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf-step-2.png -------------------------------------------------------------------------------- /docs/overleaf/overleaf-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf-step-3.png -------------------------------------------------------------------------------- /docs/overleaf/overleaf-step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf-step-4.png -------------------------------------------------------------------------------- /docs/overleaf/overleaf-step-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf-step-5.png -------------------------------------------------------------------------------- /docs/overleaf/overleaf-step-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf-step-6.png -------------------------------------------------------------------------------- /docs/overleaf/overleaf-step-7-lccaps-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf-step-7-lccaps-error.png -------------------------------------------------------------------------------- /docs/overleaf/overleaf-step-8.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf-step-8.1.png -------------------------------------------------------------------------------- /docs/overleaf/overleaf-step-8.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf-step-8.2.png -------------------------------------------------------------------------------- /docs/overleaf/overleaf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/overleaf/overleaf.md -------------------------------------------------------------------------------- /docs/texstudio-configuration-languagetool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/texstudio-configuration-languagetool.png -------------------------------------------------------------------------------- /docs/texstudio-confirmation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/texstudio-confirmation-1.png -------------------------------------------------------------------------------- /docs/texstudio-confirmation-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/docs/texstudio-confirmation-2.png -------------------------------------------------------------------------------- /figures/UHH-Logo_2010_Farbe_CMYK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/figures/UHH-Logo_2010_Farbe_CMYK.png -------------------------------------------------------------------------------- /latexhints-english.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/latexhints-english.tex -------------------------------------------------------------------------------- /latexhints-german-plantuml.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/latexhints-german-plantuml.tex -------------------------------------------------------------------------------- /latexhints-german.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/latexhints-german.tex -------------------------------------------------------------------------------- /latexhints-minted-german.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/latexhints-minted-german.tex -------------------------------------------------------------------------------- /localSettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/localSettings.yaml -------------------------------------------------------------------------------- /main-english-university-of-hamburg.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/main-english-university-of-hamburg.tex -------------------------------------------------------------------------------- /main-english.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/main-english.tex -------------------------------------------------------------------------------- /main-german-university-of-hamburg.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/main-german-university-of-hamburg.tex -------------------------------------------------------------------------------- /main-german.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/main-german.tex -------------------------------------------------------------------------------- /main-minted-english-university-of-hamburg.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/main-minted-english-university-of-hamburg.tex -------------------------------------------------------------------------------- /main-minted-english.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/main-minted-english.tex -------------------------------------------------------------------------------- /main-minted-german-university-of-hamburg.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/main-minted-german-university-of-hamburg.tex -------------------------------------------------------------------------------- /main-minted-german.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/main-minted-german.tex -------------------------------------------------------------------------------- /pre-documentclass.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/pre-documentclass.tex -------------------------------------------------------------------------------- /stfloats.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/stfloats.sty -------------------------------------------------------------------------------- /tikz-uml.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/tikz-uml.sty -------------------------------------------------------------------------------- /vscode.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latextemplates/scientific-thesis-template/HEAD/vscode.settings.json --------------------------------------------------------------------------------