├── .gitignore ├── LICENSE ├── README.md ├── bibliography └── bibThesis.bib ├── body ├── chapter1.tex ├── chapter2.tex ├── chapter3.tex ├── chapter4.tex └── introduction.tex ├── head ├── abstract.tex ├── abstractITA.tex ├── dedication.tex ├── frontPage-cr.tex ├── frontPage.tex └── logo.png ├── pictures └── logo.png ├── thesis.pdf └── thesis.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/README.md -------------------------------------------------------------------------------- /bibliography/bibThesis.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/bibliography/bibThesis.bib -------------------------------------------------------------------------------- /body/chapter1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/body/chapter1.tex -------------------------------------------------------------------------------- /body/chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/body/chapter2.tex -------------------------------------------------------------------------------- /body/chapter3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/body/chapter3.tex -------------------------------------------------------------------------------- /body/chapter4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/body/chapter4.tex -------------------------------------------------------------------------------- /body/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/body/introduction.tex -------------------------------------------------------------------------------- /head/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/head/abstract.tex -------------------------------------------------------------------------------- /head/abstractITA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/head/abstractITA.tex -------------------------------------------------------------------------------- /head/dedication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/head/dedication.tex -------------------------------------------------------------------------------- /head/frontPage-cr.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/head/frontPage-cr.tex -------------------------------------------------------------------------------- /head/frontPage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/head/frontPage.tex -------------------------------------------------------------------------------- /head/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/head/logo.png -------------------------------------------------------------------------------- /pictures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/pictures/logo.png -------------------------------------------------------------------------------- /thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/thesis.pdf -------------------------------------------------------------------------------- /thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esenes/Unito-thesis-template/HEAD/thesis.tex --------------------------------------------------------------------------------