├── .gitignore ├── Makefile ├── README.md ├── TalTechTemplate.cls ├── appendix ├── appendix1.tex └── appendix2.tex ├── chapter1 └── chapter1.tex ├── chapter2 └── chapter2.tex ├── definitions.tex ├── figures ├── TTU_alternatiivne_logo_EST_ENG_print.jpg ├── TTU_peamine_logo_ENG_print.jpg ├── TTU_peamine_logo_EST_print.jpg ├── example.png └── ttu_peamine_logo_eng_must-valge_negatiivis.png ├── glossaries.tex ├── introduction └── introduction.tex ├── literature.bib ├── preliminary ├── abstract-eng.tex └── abstract-est.tex ├── summary └── summary.tex └── thesis.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/README.md -------------------------------------------------------------------------------- /TalTechTemplate.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/TalTechTemplate.cls -------------------------------------------------------------------------------- /appendix/appendix1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/appendix/appendix1.tex -------------------------------------------------------------------------------- /appendix/appendix2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/appendix/appendix2.tex -------------------------------------------------------------------------------- /chapter1/chapter1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/chapter1/chapter1.tex -------------------------------------------------------------------------------- /chapter2/chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/chapter2/chapter2.tex -------------------------------------------------------------------------------- /definitions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/definitions.tex -------------------------------------------------------------------------------- /figures/TTU_alternatiivne_logo_EST_ENG_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/figures/TTU_alternatiivne_logo_EST_ENG_print.jpg -------------------------------------------------------------------------------- /figures/TTU_peamine_logo_ENG_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/figures/TTU_peamine_logo_ENG_print.jpg -------------------------------------------------------------------------------- /figures/TTU_peamine_logo_EST_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/figures/TTU_peamine_logo_EST_print.jpg -------------------------------------------------------------------------------- /figures/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/figures/example.png -------------------------------------------------------------------------------- /figures/ttu_peamine_logo_eng_must-valge_negatiivis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/figures/ttu_peamine_logo_eng_must-valge_negatiivis.png -------------------------------------------------------------------------------- /glossaries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/glossaries.tex -------------------------------------------------------------------------------- /introduction/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/introduction/introduction.tex -------------------------------------------------------------------------------- /literature.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/literature.bib -------------------------------------------------------------------------------- /preliminary/abstract-eng.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/preliminary/abstract-eng.tex -------------------------------------------------------------------------------- /preliminary/abstract-est.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/preliminary/abstract-est.tex -------------------------------------------------------------------------------- /summary/summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/summary/summary.tex -------------------------------------------------------------------------------- /thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ASI/thesis-template/HEAD/thesis.tex --------------------------------------------------------------------------------