├── .DS_Store ├── .gitingore ├── EN ├── .DS_Store ├── .gitignore ├── chapters │ ├── .DS_Store │ ├── .gitignore │ ├── ack.tex │ ├── appendix01.tex │ ├── chap01.tex │ ├── chap02.tex │ ├── cover.tex │ ├── denotation.tex │ └── resume.tex ├── clean.sh ├── cugthesis-author-year.bst ├── cugthesis-numeric.bst ├── cugthesis.cfg ├── cugthesis.cls ├── cugthesis.sty ├── dtx-style.sty ├── figures │ ├── .DS_Store │ ├── CUG_Logo1.pdf │ ├── CUG_Logo2.pdf │ ├── SinglePassModel.pdf │ ├── TAG_structure_tivey.pdf │ └── weixingongzhong.jpg ├── main.pdf ├── main.tex ├── ref │ ├── .DS_Store │ └── refs.bib └── tables │ ├── .DS_Store │ ├── .gitignore │ └── symbols.tex ├── LICENSE ├── README.md ├── ZH ├── .DS_Store ├── .gitignore ├── chapters │ ├── .DS_Store │ ├── .gitignore │ ├── ack.tex │ ├── appendix01.tex │ ├── chap01.tex │ ├── chap02.tex │ ├── cover.tex │ ├── denotation.tex │ └── resume.tex ├── clean.sh ├── cugthesis-author-year.bst ├── cugthesis-numeric.bst ├── cugthesis.cfg ├── cugthesis.cls ├── cugthesis.sty ├── dtx-style.sty ├── figures │ ├── .DS_Store │ ├── CUG_Logo1.pdf │ ├── CUG_Logo2.pdf │ ├── SinglePassModel.pdf │ ├── TAG_structure_tivey.pdf │ └── weixingongzhong.jpg ├── main.pdf ├── main.tex ├── ref │ ├── .DS_Store │ ├── checkref.py │ └── refs.bib └── tables │ ├── .DS_Store │ ├── .gitignore │ └── symbols.tex └── package.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitingore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/.gitingore -------------------------------------------------------------------------------- /EN/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/.DS_Store -------------------------------------------------------------------------------- /EN/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/.gitignore -------------------------------------------------------------------------------- /EN/chapters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/chapters/.DS_Store -------------------------------------------------------------------------------- /EN/chapters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/chapters/.gitignore -------------------------------------------------------------------------------- /EN/chapters/ack.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/chapters/ack.tex -------------------------------------------------------------------------------- /EN/chapters/appendix01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/chapters/appendix01.tex -------------------------------------------------------------------------------- /EN/chapters/chap01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/chapters/chap01.tex -------------------------------------------------------------------------------- /EN/chapters/chap02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/chapters/chap02.tex -------------------------------------------------------------------------------- /EN/chapters/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/chapters/cover.tex -------------------------------------------------------------------------------- /EN/chapters/denotation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/chapters/denotation.tex -------------------------------------------------------------------------------- /EN/chapters/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/chapters/resume.tex -------------------------------------------------------------------------------- /EN/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/clean.sh -------------------------------------------------------------------------------- /EN/cugthesis-author-year.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/cugthesis-author-year.bst -------------------------------------------------------------------------------- /EN/cugthesis-numeric.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/cugthesis-numeric.bst -------------------------------------------------------------------------------- /EN/cugthesis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/cugthesis.cfg -------------------------------------------------------------------------------- /EN/cugthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/cugthesis.cls -------------------------------------------------------------------------------- /EN/cugthesis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/cugthesis.sty -------------------------------------------------------------------------------- /EN/dtx-style.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/dtx-style.sty -------------------------------------------------------------------------------- /EN/figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/figures/.DS_Store -------------------------------------------------------------------------------- /EN/figures/CUG_Logo1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/figures/CUG_Logo1.pdf -------------------------------------------------------------------------------- /EN/figures/CUG_Logo2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/figures/CUG_Logo2.pdf -------------------------------------------------------------------------------- /EN/figures/SinglePassModel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/figures/SinglePassModel.pdf -------------------------------------------------------------------------------- /EN/figures/TAG_structure_tivey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/figures/TAG_structure_tivey.pdf -------------------------------------------------------------------------------- /EN/figures/weixingongzhong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/figures/weixingongzhong.jpg -------------------------------------------------------------------------------- /EN/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/main.pdf -------------------------------------------------------------------------------- /EN/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/main.tex -------------------------------------------------------------------------------- /EN/ref/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/ref/.DS_Store -------------------------------------------------------------------------------- /EN/ref/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/ref/refs.bib -------------------------------------------------------------------------------- /EN/tables/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/tables/.DS_Store -------------------------------------------------------------------------------- /EN/tables/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/tables/.gitignore -------------------------------------------------------------------------------- /EN/tables/symbols.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/EN/tables/symbols.tex -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/README.md -------------------------------------------------------------------------------- /ZH/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/.DS_Store -------------------------------------------------------------------------------- /ZH/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/.gitignore -------------------------------------------------------------------------------- /ZH/chapters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/chapters/.DS_Store -------------------------------------------------------------------------------- /ZH/chapters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/chapters/.gitignore -------------------------------------------------------------------------------- /ZH/chapters/ack.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/chapters/ack.tex -------------------------------------------------------------------------------- /ZH/chapters/appendix01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/chapters/appendix01.tex -------------------------------------------------------------------------------- /ZH/chapters/chap01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/chapters/chap01.tex -------------------------------------------------------------------------------- /ZH/chapters/chap02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/chapters/chap02.tex -------------------------------------------------------------------------------- /ZH/chapters/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/chapters/cover.tex -------------------------------------------------------------------------------- /ZH/chapters/denotation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/chapters/denotation.tex -------------------------------------------------------------------------------- /ZH/chapters/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/chapters/resume.tex -------------------------------------------------------------------------------- /ZH/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/clean.sh -------------------------------------------------------------------------------- /ZH/cugthesis-author-year.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/cugthesis-author-year.bst -------------------------------------------------------------------------------- /ZH/cugthesis-numeric.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/cugthesis-numeric.bst -------------------------------------------------------------------------------- /ZH/cugthesis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/cugthesis.cfg -------------------------------------------------------------------------------- /ZH/cugthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/cugthesis.cls -------------------------------------------------------------------------------- /ZH/cugthesis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/cugthesis.sty -------------------------------------------------------------------------------- /ZH/dtx-style.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/dtx-style.sty -------------------------------------------------------------------------------- /ZH/figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/figures/.DS_Store -------------------------------------------------------------------------------- /ZH/figures/CUG_Logo1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/figures/CUG_Logo1.pdf -------------------------------------------------------------------------------- /ZH/figures/CUG_Logo2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/figures/CUG_Logo2.pdf -------------------------------------------------------------------------------- /ZH/figures/SinglePassModel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/figures/SinglePassModel.pdf -------------------------------------------------------------------------------- /ZH/figures/TAG_structure_tivey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/figures/TAG_structure_tivey.pdf -------------------------------------------------------------------------------- /ZH/figures/weixingongzhong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/figures/weixingongzhong.jpg -------------------------------------------------------------------------------- /ZH/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/main.pdf -------------------------------------------------------------------------------- /ZH/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/main.tex -------------------------------------------------------------------------------- /ZH/ref/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/ref/.DS_Store -------------------------------------------------------------------------------- /ZH/ref/checkref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/ref/checkref.py -------------------------------------------------------------------------------- /ZH/ref/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/ref/refs.bib -------------------------------------------------------------------------------- /ZH/tables/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/tables/.DS_Store -------------------------------------------------------------------------------- /ZH/tables/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/tables/.gitignore -------------------------------------------------------------------------------- /ZH/tables/symbols.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zguoch/cugthesis/HEAD/ZH/tables/symbols.tex -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------