├── .gitignore ├── INSTALL.txt ├── LICENSE ├── Oxford_Thesis.pdf ├── Oxford_Thesis.tex ├── README.md ├── figures ├── beltcrest.pdf ├── newlogo.pdf └── sample │ └── Gray498.png ├── ociamthesis.cls ├── references.bib ├── splitcolor.py └── text ├── abbreviations.tex ├── abstract.tex ├── acknowledgements.tex ├── appendix-1.tex ├── ch1-intro.tex └── ch2-litreview.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/LICENSE -------------------------------------------------------------------------------- /Oxford_Thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/Oxford_Thesis.pdf -------------------------------------------------------------------------------- /Oxford_Thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/Oxford_Thesis.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/README.md -------------------------------------------------------------------------------- /figures/beltcrest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/figures/beltcrest.pdf -------------------------------------------------------------------------------- /figures/newlogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/figures/newlogo.pdf -------------------------------------------------------------------------------- /figures/sample/Gray498.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/figures/sample/Gray498.png -------------------------------------------------------------------------------- /ociamthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/ociamthesis.cls -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/references.bib -------------------------------------------------------------------------------- /splitcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/splitcolor.py -------------------------------------------------------------------------------- /text/abbreviations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/text/abbreviations.tex -------------------------------------------------------------------------------- /text/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/text/abstract.tex -------------------------------------------------------------------------------- /text/acknowledgements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/text/acknowledgements.tex -------------------------------------------------------------------------------- /text/appendix-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/text/appendix-1.tex -------------------------------------------------------------------------------- /text/ch1-intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/text/ch1-intro.tex -------------------------------------------------------------------------------- /text/ch2-litreview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanigle/OxThesis/HEAD/text/ch2-litreview.tex --------------------------------------------------------------------------------