├── .gitignore ├── LICENSE ├── README.md ├── figures ├── JimMorhard.jpeg └── Nimbus2001.jpg ├── logo ├── bupt-logo.pdf ├── bupt-text-logo.pdf ├── cqu-logo.pdf ├── hogwarts-logo.png ├── nju-logo.pdf ├── nju-text-logo.pdf ├── nuaa-logo.pdf ├── nuaa-text-logo.pdf ├── pku-logo.pdf ├── pku-text-logo.pdf ├── seu-color-logo.jpg ├── seu-logo.jpg ├── seu-text-logo.pdf ├── sjtu-logo.pdf ├── sjtu-text-logo.pdf ├── sjtu-whole-logo.pdf ├── thu-logo.pdf ├── thu-text-logo.pdf ├── thu-whole-logo.pdf ├── ucas-logo.pdf ├── uestc-logo.pdf ├── ustc-logo.pdf ├── ustc-text-logo.pdf ├── whu-logo.png ├── zju-logo.pdf └── zju-text-logo.pdf ├── random.cpp └── sample.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/README.md -------------------------------------------------------------------------------- /figures/JimMorhard.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/figures/JimMorhard.jpeg -------------------------------------------------------------------------------- /figures/Nimbus2001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/figures/Nimbus2001.jpg -------------------------------------------------------------------------------- /logo/bupt-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/bupt-logo.pdf -------------------------------------------------------------------------------- /logo/bupt-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/bupt-text-logo.pdf -------------------------------------------------------------------------------- /logo/cqu-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/cqu-logo.pdf -------------------------------------------------------------------------------- /logo/hogwarts-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/hogwarts-logo.png -------------------------------------------------------------------------------- /logo/nju-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/nju-logo.pdf -------------------------------------------------------------------------------- /logo/nju-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/nju-text-logo.pdf -------------------------------------------------------------------------------- /logo/nuaa-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/nuaa-logo.pdf -------------------------------------------------------------------------------- /logo/nuaa-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/nuaa-text-logo.pdf -------------------------------------------------------------------------------- /logo/pku-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/pku-logo.pdf -------------------------------------------------------------------------------- /logo/pku-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/pku-text-logo.pdf -------------------------------------------------------------------------------- /logo/seu-color-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/seu-color-logo.jpg -------------------------------------------------------------------------------- /logo/seu-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/seu-logo.jpg -------------------------------------------------------------------------------- /logo/seu-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/seu-text-logo.pdf -------------------------------------------------------------------------------- /logo/sjtu-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/sjtu-logo.pdf -------------------------------------------------------------------------------- /logo/sjtu-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/sjtu-text-logo.pdf -------------------------------------------------------------------------------- /logo/sjtu-whole-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/sjtu-whole-logo.pdf -------------------------------------------------------------------------------- /logo/thu-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/thu-logo.pdf -------------------------------------------------------------------------------- /logo/thu-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/thu-text-logo.pdf -------------------------------------------------------------------------------- /logo/thu-whole-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/thu-whole-logo.pdf -------------------------------------------------------------------------------- /logo/ucas-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/ucas-logo.pdf -------------------------------------------------------------------------------- /logo/uestc-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/uestc-logo.pdf -------------------------------------------------------------------------------- /logo/ustc-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/ustc-logo.pdf -------------------------------------------------------------------------------- /logo/ustc-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/ustc-text-logo.pdf -------------------------------------------------------------------------------- /logo/whu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/whu-logo.png -------------------------------------------------------------------------------- /logo/zju-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/zju-logo.pdf -------------------------------------------------------------------------------- /logo/zju-text-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/logo/zju-text-logo.pdf -------------------------------------------------------------------------------- /random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/random.cpp -------------------------------------------------------------------------------- /sample.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NN708/SimpleLabReport/HEAD/sample.tex --------------------------------------------------------------------------------