├── .gitignore ├── Paper.pdf ├── Paper.tex ├── README.md ├── chapters ├── Abstract.tex ├── Approach.tex ├── Conclusion.tex ├── Evaluation.tex ├── Introduction.tex ├── References.tex ├── RelatedWork.tex ├── Signatures.tex └── Title.tex └── images └── img1.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/.gitignore -------------------------------------------------------------------------------- /Paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/Paper.pdf -------------------------------------------------------------------------------- /Paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/Paper.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/README.md -------------------------------------------------------------------------------- /chapters/Abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/chapters/Abstract.tex -------------------------------------------------------------------------------- /chapters/Approach.tex: -------------------------------------------------------------------------------- 1 | \chapter{Approach} 2 | -------------------------------------------------------------------------------- /chapters/Conclusion.tex: -------------------------------------------------------------------------------- 1 | \chapter{Conclusion} 2 | -------------------------------------------------------------------------------- /chapters/Evaluation.tex: -------------------------------------------------------------------------------- 1 | \chapter{Evaluation} 2 | -------------------------------------------------------------------------------- /chapters/Introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/chapters/Introduction.tex -------------------------------------------------------------------------------- /chapters/References.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/chapters/References.tex -------------------------------------------------------------------------------- /chapters/RelatedWork.tex: -------------------------------------------------------------------------------- 1 | \chapter{Related Work} 2 | -------------------------------------------------------------------------------- /chapters/Signatures.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/chapters/Signatures.tex -------------------------------------------------------------------------------- /chapters/Title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/chapters/Title.tex -------------------------------------------------------------------------------- /images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bekt/thesis-template/HEAD/images/img1.jpg --------------------------------------------------------------------------------