├── LICENSE ├── NTHUthesis.cls ├── README.md ├── contents ├── abstractEN.tex ├── abstractZH.tex ├── acknowledgementsEN.tex └── acknowledgementsZH.tex ├── examples ├── thesis_abstracts.pdf ├── thesis_cover.pdf ├── thesis_main.pdf └── thesis_main_zh.pdf ├── nthu-logo.pdf ├── references.bib ├── thesis_abstracts.tex ├── thesis_cover.tex ├── thesis_info.tex └── thesis_main.tex /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /NTHUthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/NTHUthesis.cls -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/README.md -------------------------------------------------------------------------------- /contents/abstractEN.tex: -------------------------------------------------------------------------------- 1 | \lipsum[1-2] -------------------------------------------------------------------------------- /contents/abstractZH.tex: -------------------------------------------------------------------------------- 1 | \zhlipsum[1-2] -------------------------------------------------------------------------------- /contents/acknowledgementsEN.tex: -------------------------------------------------------------------------------- 1 | \lipsum[1-2] -------------------------------------------------------------------------------- /contents/acknowledgementsZH.tex: -------------------------------------------------------------------------------- 1 | \zhlipsum[1-2] -------------------------------------------------------------------------------- /examples/thesis_abstracts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/examples/thesis_abstracts.pdf -------------------------------------------------------------------------------- /examples/thesis_cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/examples/thesis_cover.pdf -------------------------------------------------------------------------------- /examples/thesis_main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/examples/thesis_main.pdf -------------------------------------------------------------------------------- /examples/thesis_main_zh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/examples/thesis_main_zh.pdf -------------------------------------------------------------------------------- /nthu-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/nthu-logo.pdf -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/references.bib -------------------------------------------------------------------------------- /thesis_abstracts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/thesis_abstracts.tex -------------------------------------------------------------------------------- /thesis_cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/thesis_cover.tex -------------------------------------------------------------------------------- /thesis_info.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/thesis_info.tex -------------------------------------------------------------------------------- /thesis_main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elsa-lab/NTHUthesis/HEAD/thesis_main.tex --------------------------------------------------------------------------------