├── .gitignore ├── .travis.yml ├── Abstract └── abstract.tex ├── Acknowledgement └── acknowledgement.tex ├── Appendix1 └── appendix1.tex ├── Appendix2 └── appendix2.tex ├── ChangeLog.md ├── Chapter1 └── chapter1.tex ├── Chapter2 ├── Figs │ ├── Raster │ │ ├── TomandJerry.png │ │ ├── WallE.png │ │ └── minion.png │ └── Vector │ │ ├── TomandJerry.eps │ │ ├── WallE.eps │ │ └── minion.eps └── chapter2.tex ├── Chapter3 └── chapter3.tex ├── Declaration └── declaration.tex ├── Dedication └── dedication.tex ├── Figs ├── CollegeShields │ ├── Downing.eps │ ├── Downing.pdf │ ├── Fitzwilliam.eps │ ├── Fitzwilliam.pdf │ ├── FitzwilliamRed.eps │ ├── FitzwilliamRed.pdf │ ├── Gonville_and_Caius.jpg │ ├── Kings.eps │ ├── Kings.pdf │ ├── Licenses.md │ ├── Peterhouse.pdf │ ├── Queens.eps │ ├── Queens.pdf │ ├── StJohns.eps │ ├── StJohns.pdf │ ├── Trinity.eps │ ├── Trinity.pdf │ └── src │ │ ├── Downing.svg │ │ ├── Kings.svg │ │ ├── Peterhouse.svg │ │ ├── Queens.svg │ │ └── Trinity.svg ├── University_Crest.eps ├── University_Crest.pdf ├── University_Crest_Long.eps └── University_Crest_Long.pdf ├── LICENSE ├── Makefile ├── PhDThesisPSnPDF.cls ├── Preamble └── preamble.tex ├── README.md ├── References └── references.bib ├── Variables.ini ├── compile-thesis-windows.bat ├── compile-thesis.sh ├── glyphtounicode.tex ├── hooks ├── install.sh └── pre-commit ├── license.md ├── sty └── breakurl.sty ├── thesis-info.tex ├── thesis.pdf ├── thesis.ps └── thesis.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /Abstract/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Abstract/abstract.tex -------------------------------------------------------------------------------- /Acknowledgement/acknowledgement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Acknowledgement/acknowledgement.tex -------------------------------------------------------------------------------- /Appendix1/appendix1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Appendix1/appendix1.tex -------------------------------------------------------------------------------- /Appendix2/appendix2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Appendix2/appendix2.tex -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Chapter1/chapter1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Chapter1/chapter1.tex -------------------------------------------------------------------------------- /Chapter2/Figs/Raster/TomandJerry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Chapter2/Figs/Raster/TomandJerry.png -------------------------------------------------------------------------------- /Chapter2/Figs/Raster/WallE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Chapter2/Figs/Raster/WallE.png -------------------------------------------------------------------------------- /Chapter2/Figs/Raster/minion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Chapter2/Figs/Raster/minion.png -------------------------------------------------------------------------------- /Chapter2/Figs/Vector/TomandJerry.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Chapter2/Figs/Vector/TomandJerry.eps -------------------------------------------------------------------------------- /Chapter2/Figs/Vector/WallE.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Chapter2/Figs/Vector/WallE.eps -------------------------------------------------------------------------------- /Chapter2/Figs/Vector/minion.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Chapter2/Figs/Vector/minion.eps -------------------------------------------------------------------------------- /Chapter2/chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Chapter2/chapter2.tex -------------------------------------------------------------------------------- /Chapter3/chapter3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Chapter3/chapter3.tex -------------------------------------------------------------------------------- /Declaration/declaration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Declaration/declaration.tex -------------------------------------------------------------------------------- /Dedication/dedication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Dedication/dedication.tex -------------------------------------------------------------------------------- /Figs/CollegeShields/Downing.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Downing.eps -------------------------------------------------------------------------------- /Figs/CollegeShields/Downing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Downing.pdf -------------------------------------------------------------------------------- /Figs/CollegeShields/Fitzwilliam.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Fitzwilliam.eps -------------------------------------------------------------------------------- /Figs/CollegeShields/Fitzwilliam.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Fitzwilliam.pdf -------------------------------------------------------------------------------- /Figs/CollegeShields/FitzwilliamRed.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/FitzwilliamRed.eps -------------------------------------------------------------------------------- /Figs/CollegeShields/FitzwilliamRed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/FitzwilliamRed.pdf -------------------------------------------------------------------------------- /Figs/CollegeShields/Gonville_and_Caius.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Gonville_and_Caius.jpg -------------------------------------------------------------------------------- /Figs/CollegeShields/Kings.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Kings.eps -------------------------------------------------------------------------------- /Figs/CollegeShields/Kings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Kings.pdf -------------------------------------------------------------------------------- /Figs/CollegeShields/Licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Licenses.md -------------------------------------------------------------------------------- /Figs/CollegeShields/Peterhouse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Peterhouse.pdf -------------------------------------------------------------------------------- /Figs/CollegeShields/Queens.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Queens.eps -------------------------------------------------------------------------------- /Figs/CollegeShields/Queens.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Queens.pdf -------------------------------------------------------------------------------- /Figs/CollegeShields/StJohns.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/StJohns.eps -------------------------------------------------------------------------------- /Figs/CollegeShields/StJohns.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/StJohns.pdf -------------------------------------------------------------------------------- /Figs/CollegeShields/Trinity.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Trinity.eps -------------------------------------------------------------------------------- /Figs/CollegeShields/Trinity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/Trinity.pdf -------------------------------------------------------------------------------- /Figs/CollegeShields/src/Downing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/src/Downing.svg -------------------------------------------------------------------------------- /Figs/CollegeShields/src/Kings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/src/Kings.svg -------------------------------------------------------------------------------- /Figs/CollegeShields/src/Peterhouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/src/Peterhouse.svg -------------------------------------------------------------------------------- /Figs/CollegeShields/src/Queens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/src/Queens.svg -------------------------------------------------------------------------------- /Figs/CollegeShields/src/Trinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/CollegeShields/src/Trinity.svg -------------------------------------------------------------------------------- /Figs/University_Crest.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/University_Crest.eps -------------------------------------------------------------------------------- /Figs/University_Crest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/University_Crest.pdf -------------------------------------------------------------------------------- /Figs/University_Crest_Long.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/University_Crest_Long.eps -------------------------------------------------------------------------------- /Figs/University_Crest_Long.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Figs/University_Crest_Long.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Makefile -------------------------------------------------------------------------------- /PhDThesisPSnPDF.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/PhDThesisPSnPDF.cls -------------------------------------------------------------------------------- /Preamble/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Preamble/preamble.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/README.md -------------------------------------------------------------------------------- /References/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/References/references.bib -------------------------------------------------------------------------------- /Variables.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/Variables.ini -------------------------------------------------------------------------------- /compile-thesis-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/compile-thesis-windows.bat -------------------------------------------------------------------------------- /compile-thesis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/compile-thesis.sh -------------------------------------------------------------------------------- /glyphtounicode.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/glyphtounicode.tex -------------------------------------------------------------------------------- /hooks/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/hooks/install.sh -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/license.md -------------------------------------------------------------------------------- /sty/breakurl.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/sty/breakurl.sty -------------------------------------------------------------------------------- /thesis-info.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/thesis-info.tex -------------------------------------------------------------------------------- /thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/thesis.pdf -------------------------------------------------------------------------------- /thesis.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/thesis.ps -------------------------------------------------------------------------------- /thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kks32/phd-thesis-template/HEAD/thesis.tex --------------------------------------------------------------------------------