├── .github └── workflows │ └── build.yml ├── .gitignore ├── Abstract.tex ├── Acknowledgments.tex ├── Conclusion.tex ├── Declaration.tex ├── FormatAndDefsBasic.tex ├── FormatAndDefsThesisExtra.tex ├── Introduction.tex ├── JNFull.bib ├── LICENSE ├── Methods.tex ├── README.md ├── Thesis.pdf ├── Thesis.tex ├── ThesisBibliography.bib ├── ThesisStyle.cls ├── TitlePageKCL.tex ├── TitlePageUCL.tex ├── archive └── these.bst ├── figs ├── University_College_London_banner.eps ├── University_College_London_banner.pdf ├── University_College_London_logo.eps ├── University_College_London_logo.pdf ├── kcllogo.eps └── kcllogo.pdf └── tools ├── compresspdf2ebookpdf ├── convertlatex2word ├── graphicsconvertforlatex.py ├── mktpdfmarks ├── plainwatermark.tex ├── tex4ht_no_css.cfg └── watermarkpdf /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /Abstract.tex: -------------------------------------------------------------------------------- 1 | I have a super abstract. -------------------------------------------------------------------------------- /Acknowledgments.tex: -------------------------------------------------------------------------------- 1 | I'd like to thank my invisible cat. -------------------------------------------------------------------------------- /Conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/Conclusion.tex -------------------------------------------------------------------------------- /Declaration.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/Declaration.tex -------------------------------------------------------------------------------- /FormatAndDefsBasic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/FormatAndDefsBasic.tex -------------------------------------------------------------------------------- /FormatAndDefsThesisExtra.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/FormatAndDefsThesisExtra.tex -------------------------------------------------------------------------------- /Introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/Introduction.tex -------------------------------------------------------------------------------- /JNFull.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/JNFull.bib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /Methods.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/Methods.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/README.md -------------------------------------------------------------------------------- /Thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/Thesis.pdf -------------------------------------------------------------------------------- /Thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/Thesis.tex -------------------------------------------------------------------------------- /ThesisBibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/ThesisBibliography.bib -------------------------------------------------------------------------------- /ThesisStyle.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/ThesisStyle.cls -------------------------------------------------------------------------------- /TitlePageKCL.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/TitlePageKCL.tex -------------------------------------------------------------------------------- /TitlePageUCL.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/TitlePageUCL.tex -------------------------------------------------------------------------------- /archive/these.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/archive/these.bst -------------------------------------------------------------------------------- /figs/University_College_London_banner.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/figs/University_College_London_banner.eps -------------------------------------------------------------------------------- /figs/University_College_London_banner.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/figs/University_College_London_banner.pdf -------------------------------------------------------------------------------- /figs/University_College_London_logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/figs/University_College_London_logo.eps -------------------------------------------------------------------------------- /figs/University_College_London_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/figs/University_College_London_logo.pdf -------------------------------------------------------------------------------- /figs/kcllogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/figs/kcllogo.eps -------------------------------------------------------------------------------- /figs/kcllogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/figs/kcllogo.pdf -------------------------------------------------------------------------------- /tools/compresspdf2ebookpdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/tools/compresspdf2ebookpdf -------------------------------------------------------------------------------- /tools/convertlatex2word: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/tools/convertlatex2word -------------------------------------------------------------------------------- /tools/graphicsconvertforlatex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/tools/graphicsconvertforlatex.py -------------------------------------------------------------------------------- /tools/mktpdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/tools/mktpdfmarks -------------------------------------------------------------------------------- /tools/plainwatermark.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/tools/plainwatermark.tex -------------------------------------------------------------------------------- /tools/tex4ht_no_css.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/tools/tex4ht_no_css.cfg -------------------------------------------------------------------------------- /tools/watermarkpdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cai4cai/XCLThesisTemplate/HEAD/tools/watermarkpdf --------------------------------------------------------------------------------