├── .gitignore ├── README.md ├── bibs ├── bibs.tex ├── full.bib └── refs.bib ├── chapters ├── appendix.tex ├── conclusions.tex ├── introduction.tex ├── literature.tex ├── preliminaries.tex └── results.tex ├── figs ├── cover.svg ├── cover.tex ├── k-center.pdf ├── outlier.pdf ├── readme.txt ├── strip.pdf └── triangles.pdf ├── front ├── abstract-eng.tex ├── abstract.tex ├── acknowledge.tex ├── dictionary.tex ├── info.tex └── template │ ├── besmellah.tex │ ├── declaration.tex │ ├── images │ ├── besmellah.jpg │ └── logo.pdf │ ├── signatures.tex │ ├── title-eng.tex │ └── title.tex ├── styles ├── alg-fa.tex ├── common.tex ├── custom.tex ├── fonts │ ├── Sharif1.3-Regular.ttf │ ├── Sharif1.3-SemiBold.ttf │ ├── XB Niloofar.ttf │ ├── XB NiloofarBd.ttf │ ├── XB NiloofarBdIt.ttf │ └── XB NiloofarIt.ttf └── packages │ ├── algorithm.sty │ ├── algorithmic.sty │ ├── algorithmicx.sty │ ├── algpseudocode.sty │ └── unsrtabbrv.bst ├── thesis.pdf └── thesis.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/README.md -------------------------------------------------------------------------------- /bibs/bibs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/bibs/bibs.tex -------------------------------------------------------------------------------- /bibs/full.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/bibs/full.bib -------------------------------------------------------------------------------- /bibs/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/bibs/refs.bib -------------------------------------------------------------------------------- /chapters/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/chapters/appendix.tex -------------------------------------------------------------------------------- /chapters/conclusions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/chapters/conclusions.tex -------------------------------------------------------------------------------- /chapters/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/chapters/introduction.tex -------------------------------------------------------------------------------- /chapters/literature.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/chapters/literature.tex -------------------------------------------------------------------------------- /chapters/preliminaries.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/chapters/preliminaries.tex -------------------------------------------------------------------------------- /chapters/results.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/chapters/results.tex -------------------------------------------------------------------------------- /figs/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/figs/cover.svg -------------------------------------------------------------------------------- /figs/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/figs/cover.tex -------------------------------------------------------------------------------- /figs/k-center.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/figs/k-center.pdf -------------------------------------------------------------------------------- /figs/outlier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/figs/outlier.pdf -------------------------------------------------------------------------------- /figs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/figs/readme.txt -------------------------------------------------------------------------------- /figs/strip.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/figs/strip.pdf -------------------------------------------------------------------------------- /figs/triangles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/figs/triangles.pdf -------------------------------------------------------------------------------- /front/abstract-eng.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/abstract-eng.tex -------------------------------------------------------------------------------- /front/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/abstract.tex -------------------------------------------------------------------------------- /front/acknowledge.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/acknowledge.tex -------------------------------------------------------------------------------- /front/dictionary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/dictionary.tex -------------------------------------------------------------------------------- /front/info.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/info.tex -------------------------------------------------------------------------------- /front/template/besmellah.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/template/besmellah.tex -------------------------------------------------------------------------------- /front/template/declaration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/template/declaration.tex -------------------------------------------------------------------------------- /front/template/images/besmellah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/template/images/besmellah.jpg -------------------------------------------------------------------------------- /front/template/images/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/template/images/logo.pdf -------------------------------------------------------------------------------- /front/template/signatures.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/template/signatures.tex -------------------------------------------------------------------------------- /front/template/title-eng.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/template/title-eng.tex -------------------------------------------------------------------------------- /front/template/title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/front/template/title.tex -------------------------------------------------------------------------------- /styles/alg-fa.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/alg-fa.tex -------------------------------------------------------------------------------- /styles/common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/common.tex -------------------------------------------------------------------------------- /styles/custom.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/custom.tex -------------------------------------------------------------------------------- /styles/fonts/Sharif1.3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/fonts/Sharif1.3-Regular.ttf -------------------------------------------------------------------------------- /styles/fonts/Sharif1.3-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/fonts/Sharif1.3-SemiBold.ttf -------------------------------------------------------------------------------- /styles/fonts/XB Niloofar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/fonts/XB Niloofar.ttf -------------------------------------------------------------------------------- /styles/fonts/XB NiloofarBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/fonts/XB NiloofarBd.ttf -------------------------------------------------------------------------------- /styles/fonts/XB NiloofarBdIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/fonts/XB NiloofarBdIt.ttf -------------------------------------------------------------------------------- /styles/fonts/XB NiloofarIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/fonts/XB NiloofarIt.ttf -------------------------------------------------------------------------------- /styles/packages/algorithm.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/packages/algorithm.sty -------------------------------------------------------------------------------- /styles/packages/algorithmic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/packages/algorithmic.sty -------------------------------------------------------------------------------- /styles/packages/algorithmicx.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/packages/algorithmicx.sty -------------------------------------------------------------------------------- /styles/packages/algpseudocode.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/packages/algpseudocode.sty -------------------------------------------------------------------------------- /styles/packages/unsrtabbrv.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/styles/packages/unsrtabbrv.bst -------------------------------------------------------------------------------- /thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/thesis.pdf -------------------------------------------------------------------------------- /thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zarrabi/thesis-template/HEAD/thesis.tex --------------------------------------------------------------------------------