├── .gitignore ├── .hgignore ├── CHANGELOG ├── LICENSE ├── README.md ├── base └── xjtuthesis.cls ├── doc ├── README.old └── examples │ ├── Makefile │ ├── bachelor.tex │ ├── doctor.tex │ ├── figures │ ├── 437px-Monet_in_Garden_New_York_Times_1922.jpg │ ├── 450px-Claude_Monet_1899_Nadar_crop.jpg │ ├── 738px-Charing_Cross_Bridge_Monet.jpg │ ├── 780px-Claude_Monet_Impression_soleil_levant_1872.jpg │ ├── 800px-Claude_Monet_038.jpg │ ├── Claude_Monet_River_Scene_at_Bennecourt_Seine.jpg │ ├── Monet-Claude_-_View_At_Rouelles_Le_Havre_1858.jpg │ └── XJTU.pdf │ ├── master.tex │ ├── pages │ ├── anthem.tex │ ├── appendice.tex │ ├── conclusion.tex │ ├── denotation.tex │ ├── extrapdfs.tex │ ├── float.tex │ ├── formulae.tex │ ├── intro.tex │ ├── jiang-hk.tex │ ├── meta.tex │ └── monet.tex │ └── sample.bib ├── solutions ├── Makefile ├── bachelor.tex ├── bibliography.bib ├── doctor.tex ├── figures │ ├── XJTU.pdf │ ├── XJTU_2024.png │ └── XJTU_RED.png ├── master.tex └── pages │ ├── acknowledgements.tex │ ├── appendice.tex │ ├── conclusion.tex │ ├── denotation.tex │ ├── extrapdfs.tex │ ├── intro.tex │ └── meta.tex ├── tools ├── fetchDoc.sh └── release.sh └── unittests ├── packages.tex ├── xecjk-propfont.tex └── xecjk.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/.hgignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/README.md -------------------------------------------------------------------------------- /base/xjtuthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/base/xjtuthesis.cls -------------------------------------------------------------------------------- /doc/README.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/README.old -------------------------------------------------------------------------------- /doc/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/Makefile -------------------------------------------------------------------------------- /doc/examples/bachelor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/bachelor.tex -------------------------------------------------------------------------------- /doc/examples/doctor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/doctor.tex -------------------------------------------------------------------------------- /doc/examples/figures/437px-Monet_in_Garden_New_York_Times_1922.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/figures/437px-Monet_in_Garden_New_York_Times_1922.jpg -------------------------------------------------------------------------------- /doc/examples/figures/450px-Claude_Monet_1899_Nadar_crop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/figures/450px-Claude_Monet_1899_Nadar_crop.jpg -------------------------------------------------------------------------------- /doc/examples/figures/738px-Charing_Cross_Bridge_Monet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/figures/738px-Charing_Cross_Bridge_Monet.jpg -------------------------------------------------------------------------------- /doc/examples/figures/780px-Claude_Monet_Impression_soleil_levant_1872.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/figures/780px-Claude_Monet_Impression_soleil_levant_1872.jpg -------------------------------------------------------------------------------- /doc/examples/figures/800px-Claude_Monet_038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/figures/800px-Claude_Monet_038.jpg -------------------------------------------------------------------------------- /doc/examples/figures/Claude_Monet_River_Scene_at_Bennecourt_Seine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/figures/Claude_Monet_River_Scene_at_Bennecourt_Seine.jpg -------------------------------------------------------------------------------- /doc/examples/figures/Monet-Claude_-_View_At_Rouelles_Le_Havre_1858.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/figures/Monet-Claude_-_View_At_Rouelles_Le_Havre_1858.jpg -------------------------------------------------------------------------------- /doc/examples/figures/XJTU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/figures/XJTU.pdf -------------------------------------------------------------------------------- /doc/examples/master.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/master.tex -------------------------------------------------------------------------------- /doc/examples/pages/anthem.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/anthem.tex -------------------------------------------------------------------------------- /doc/examples/pages/appendice.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/appendice.tex -------------------------------------------------------------------------------- /doc/examples/pages/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/conclusion.tex -------------------------------------------------------------------------------- /doc/examples/pages/denotation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/denotation.tex -------------------------------------------------------------------------------- /doc/examples/pages/extrapdfs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/extrapdfs.tex -------------------------------------------------------------------------------- /doc/examples/pages/float.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/float.tex -------------------------------------------------------------------------------- /doc/examples/pages/formulae.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/formulae.tex -------------------------------------------------------------------------------- /doc/examples/pages/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/intro.tex -------------------------------------------------------------------------------- /doc/examples/pages/jiang-hk.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/jiang-hk.tex -------------------------------------------------------------------------------- /doc/examples/pages/meta.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/meta.tex -------------------------------------------------------------------------------- /doc/examples/pages/monet.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/pages/monet.tex -------------------------------------------------------------------------------- /doc/examples/sample.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/doc/examples/sample.bib -------------------------------------------------------------------------------- /solutions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/Makefile -------------------------------------------------------------------------------- /solutions/bachelor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/bachelor.tex -------------------------------------------------------------------------------- /solutions/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/bibliography.bib -------------------------------------------------------------------------------- /solutions/doctor.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/doctor.tex -------------------------------------------------------------------------------- /solutions/figures/XJTU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/figures/XJTU.pdf -------------------------------------------------------------------------------- /solutions/figures/XJTU_2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/figures/XJTU_2024.png -------------------------------------------------------------------------------- /solutions/figures/XJTU_RED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/figures/XJTU_RED.png -------------------------------------------------------------------------------- /solutions/master.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/master.tex -------------------------------------------------------------------------------- /solutions/pages/acknowledgements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/pages/acknowledgements.tex -------------------------------------------------------------------------------- /solutions/pages/appendice.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/pages/appendice.tex -------------------------------------------------------------------------------- /solutions/pages/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/pages/conclusion.tex -------------------------------------------------------------------------------- /solutions/pages/denotation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/pages/denotation.tex -------------------------------------------------------------------------------- /solutions/pages/extrapdfs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/pages/extrapdfs.tex -------------------------------------------------------------------------------- /solutions/pages/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/pages/intro.tex -------------------------------------------------------------------------------- /solutions/pages/meta.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/solutions/pages/meta.tex -------------------------------------------------------------------------------- /tools/fetchDoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/tools/fetchDoc.sh -------------------------------------------------------------------------------- /tools/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/tools/release.sh -------------------------------------------------------------------------------- /unittests/packages.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/unittests/packages.tex -------------------------------------------------------------------------------- /unittests/xecjk-propfont.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/unittests/xecjk-propfont.tex -------------------------------------------------------------------------------- /unittests/xecjk.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetf/xjtuthesis/HEAD/unittests/xecjk.tex --------------------------------------------------------------------------------