├── .gitignore ├── .vscode └── settings.json ├── 20210422170337.jpg ├── Makefile ├── README.md ├── assets ├── abstractkeywords.sty ├── cover.sty ├── coveror.sty ├── logo.eps └── signature.sty ├── img ├── 20210422170337.jpg ├── image-20220305143708631.jpg ├── image-20220305143913352.jpg ├── image-20220305144343929.jpg └── image-20220305144537228.jpg ├── includes ├── section_01.tex └── section_02.tex ├── main.tex ├── openingreport.tex └── oucart.cls /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /20210422170337.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/20210422170337.jpg -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/README.md -------------------------------------------------------------------------------- /assets/abstractkeywords.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/assets/abstractkeywords.sty -------------------------------------------------------------------------------- /assets/cover.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/assets/cover.sty -------------------------------------------------------------------------------- /assets/coveror.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/assets/coveror.sty -------------------------------------------------------------------------------- /assets/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/assets/logo.eps -------------------------------------------------------------------------------- /assets/signature.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/assets/signature.sty -------------------------------------------------------------------------------- /img/20210422170337.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/img/20210422170337.jpg -------------------------------------------------------------------------------- /img/image-20220305143708631.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/img/image-20220305143708631.jpg -------------------------------------------------------------------------------- /img/image-20220305143913352.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/img/image-20220305143913352.jpg -------------------------------------------------------------------------------- /img/image-20220305144343929.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/img/image-20220305144343929.jpg -------------------------------------------------------------------------------- /img/image-20220305144537228.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/img/image-20220305144537228.jpg -------------------------------------------------------------------------------- /includes/section_01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/includes/section_01.tex -------------------------------------------------------------------------------- /includes/section_02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/includes/section_02.tex -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/main.tex -------------------------------------------------------------------------------- /openingreport.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/openingreport.tex -------------------------------------------------------------------------------- /oucart.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summitgao/OUC-LaTex-bachelor/HEAD/oucart.cls --------------------------------------------------------------------------------