├── .gitignore ├── LICENSE ├── README.md ├── assets ├── logo_en.svg └── logo_zh.svg ├── fonts └── Fonts.txt ├── images └── Lixia.jpg ├── references.bib ├── sections ├── 1_lorem.typ ├── 2_introduction.typ ├── 3_demonstration.typ └── appendix.typ ├── template ├── abstract_en.typ ├── abstract_header.typ ├── abstract_zh.typ ├── acknowledgement.typ ├── appendix.typ ├── content.typ ├── cover_en.typ ├── cover_zh.typ ├── decl_en.typ ├── decl_zh.typ ├── references.typ └── template.typ ├── thesis.typ └── utils ├── datetime_display.typ ├── font.typ ├── headings.typ └── style.typ /.gitignore: -------------------------------------------------------------------------------- 1 | *.ttc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo_en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/assets/logo_en.svg -------------------------------------------------------------------------------- /assets/logo_zh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/assets/logo_zh.svg -------------------------------------------------------------------------------- /fonts/Fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/fonts/Fonts.txt -------------------------------------------------------------------------------- /images/Lixia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/images/Lixia.jpg -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/references.bib -------------------------------------------------------------------------------- /sections/1_lorem.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/sections/1_lorem.typ -------------------------------------------------------------------------------- /sections/2_introduction.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/sections/2_introduction.typ -------------------------------------------------------------------------------- /sections/3_demonstration.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/sections/3_demonstration.typ -------------------------------------------------------------------------------- /sections/appendix.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/sections/appendix.typ -------------------------------------------------------------------------------- /template/abstract_en.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/abstract_en.typ -------------------------------------------------------------------------------- /template/abstract_header.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/abstract_header.typ -------------------------------------------------------------------------------- /template/abstract_zh.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/abstract_zh.typ -------------------------------------------------------------------------------- /template/acknowledgement.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/acknowledgement.typ -------------------------------------------------------------------------------- /template/appendix.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/appendix.typ -------------------------------------------------------------------------------- /template/content.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/content.typ -------------------------------------------------------------------------------- /template/cover_en.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/cover_en.typ -------------------------------------------------------------------------------- /template/cover_zh.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/cover_zh.typ -------------------------------------------------------------------------------- /template/decl_en.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/decl_en.typ -------------------------------------------------------------------------------- /template/decl_zh.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/decl_zh.typ -------------------------------------------------------------------------------- /template/references.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/references.typ -------------------------------------------------------------------------------- /template/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/template/template.typ -------------------------------------------------------------------------------- /thesis.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/thesis.typ -------------------------------------------------------------------------------- /utils/datetime_display.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/utils/datetime_display.typ -------------------------------------------------------------------------------- /utils/font.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/utils/font.typ -------------------------------------------------------------------------------- /utils/headings.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/utils/headings.typ -------------------------------------------------------------------------------- /utils/style.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuTaoZi/SUSTech-thesis-typst/HEAD/utils/style.typ --------------------------------------------------------------------------------