├── .gitattributes ├── .gitignore ├── 1_title.tex ├── 2_authorization.tex ├── 3_signature.tex ├── 4_dedicate.tex ├── 5_acknowledgement.tex ├── LICENSE ├── README.md ├── abstract.tex ├── appendix1.tex ├── chapter1.tex ├── chapter2.tex ├── chapter3.tex ├── chapter4.tex ├── chapter5.tex ├── chapter6.tex ├── publication.tex ├── reference.bib ├── reference.tex ├── report.cls ├── thesis.sty └── thesis.tex /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/.gitignore -------------------------------------------------------------------------------- /1_title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/1_title.tex -------------------------------------------------------------------------------- /2_authorization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/2_authorization.tex -------------------------------------------------------------------------------- /3_signature.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/3_signature.tex -------------------------------------------------------------------------------- /4_dedicate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/4_dedicate.tex -------------------------------------------------------------------------------- /5_acknowledgement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/5_acknowledgement.tex -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/README.md -------------------------------------------------------------------------------- /abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/abstract.tex -------------------------------------------------------------------------------- /appendix1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/appendix1.tex -------------------------------------------------------------------------------- /chapter1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/chapter1.tex -------------------------------------------------------------------------------- /chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/chapter2.tex -------------------------------------------------------------------------------- /chapter3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/chapter3.tex -------------------------------------------------------------------------------- /chapter4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/chapter4.tex -------------------------------------------------------------------------------- /chapter5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/chapter5.tex -------------------------------------------------------------------------------- /chapter6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/chapter6.tex -------------------------------------------------------------------------------- /publication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/publication.tex -------------------------------------------------------------------------------- /reference.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/reference.bib -------------------------------------------------------------------------------- /reference.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/reference.tex -------------------------------------------------------------------------------- /report.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/report.cls -------------------------------------------------------------------------------- /thesis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/thesis.sty -------------------------------------------------------------------------------- /thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcyu/HKUST_PhD_MPhil_thesis_Latex/HEAD/thesis.tex --------------------------------------------------------------------------------