├── .gitignore ├── .travis.yml ├── Appendices.tex ├── BibSettings.tex ├── COPYING ├── Chapter2.tex ├── Chapter3.tex ├── Conclusions.tex ├── FloatSettings.tex ├── Introduction.tex ├── LinksAndMetadata.tex ├── MANIFEST.md ├── Main.tex ├── MainPackages.tex ├── Makefile ├── Preamble.tex ├── README.md ├── example.bib └── ucl_thesis.cls /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/.travis.yml -------------------------------------------------------------------------------- /Appendices.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/Appendices.tex -------------------------------------------------------------------------------- /BibSettings.tex: -------------------------------------------------------------------------------- 1 | \bibliographystyle{unsrt} -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/COPYING -------------------------------------------------------------------------------- /Chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/Chapter2.tex -------------------------------------------------------------------------------- /Chapter3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/Chapter3.tex -------------------------------------------------------------------------------- /Conclusions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/Conclusions.tex -------------------------------------------------------------------------------- /FloatSettings.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/FloatSettings.tex -------------------------------------------------------------------------------- /Introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/Introduction.tex -------------------------------------------------------------------------------- /LinksAndMetadata.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/LinksAndMetadata.tex -------------------------------------------------------------------------------- /MANIFEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/MANIFEST.md -------------------------------------------------------------------------------- /Main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/Main.tex -------------------------------------------------------------------------------- /MainPackages.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/MainPackages.tex -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/Makefile -------------------------------------------------------------------------------- /Preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/Preamble.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/README.md -------------------------------------------------------------------------------- /example.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/example.bib -------------------------------------------------------------------------------- /ucl_thesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCL/ucl-latex-thesis-templates/HEAD/ucl_thesis.cls --------------------------------------------------------------------------------