├── .gitattributes ├── .github └── workflows │ ├── build-deploy.yml │ └── test-build.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── 1-1天津大学本科生毕业论文模板.docx ├── LICENSE ├── README.md └── Thesis ├── Makefile ├── appendix ├── acknowledgements.tex ├── appendix.tex ├── paperInChinese.tex └── paperInEnglish.tex ├── body ├── chapter1.tex ├── chapter2.tex └── chapter3.tex ├── clean.sh ├── figures ├── p1p2figure.eps ├── sample1.png ├── sample2L.jpeg ├── sample2R.jpeg ├── tjulogo.eps └── tjuname.eps ├── index.html ├── preface └── cover.tex ├── references ├── ref.buk └── reference.bib ├── setup ├── format.tex └── package.tex ├── tjumain.pdf └── tjumain.tex /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/.github/workflows/build-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/.github/workflows/test-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /1-1天津大学本科生毕业论文模板.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/1-1天津大学本科生毕业论文模板.docx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/README.md -------------------------------------------------------------------------------- /Thesis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/Makefile -------------------------------------------------------------------------------- /Thesis/appendix/acknowledgements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/appendix/acknowledgements.tex -------------------------------------------------------------------------------- /Thesis/appendix/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/appendix/appendix.tex -------------------------------------------------------------------------------- /Thesis/appendix/paperInChinese.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/appendix/paperInChinese.tex -------------------------------------------------------------------------------- /Thesis/appendix/paperInEnglish.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/appendix/paperInEnglish.tex -------------------------------------------------------------------------------- /Thesis/body/chapter1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/body/chapter1.tex -------------------------------------------------------------------------------- /Thesis/body/chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/body/chapter2.tex -------------------------------------------------------------------------------- /Thesis/body/chapter3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/body/chapter3.tex -------------------------------------------------------------------------------- /Thesis/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/clean.sh -------------------------------------------------------------------------------- /Thesis/figures/p1p2figure.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/figures/p1p2figure.eps -------------------------------------------------------------------------------- /Thesis/figures/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/figures/sample1.png -------------------------------------------------------------------------------- /Thesis/figures/sample2L.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/figures/sample2L.jpeg -------------------------------------------------------------------------------- /Thesis/figures/sample2R.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/figures/sample2R.jpeg -------------------------------------------------------------------------------- /Thesis/figures/tjulogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/figures/tjulogo.eps -------------------------------------------------------------------------------- /Thesis/figures/tjuname.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/figures/tjuname.eps -------------------------------------------------------------------------------- /Thesis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/index.html -------------------------------------------------------------------------------- /Thesis/preface/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/preface/cover.tex -------------------------------------------------------------------------------- /Thesis/references/ref.buk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/references/ref.buk -------------------------------------------------------------------------------- /Thesis/references/reference.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/references/reference.bib -------------------------------------------------------------------------------- /Thesis/setup/format.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/setup/format.tex -------------------------------------------------------------------------------- /Thesis/setup/package.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/setup/package.tex -------------------------------------------------------------------------------- /Thesis/tjumain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/tjumain.pdf -------------------------------------------------------------------------------- /Thesis/tjumain.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twtstudio/TJUThesisLatexTemplate/HEAD/Thesis/tjumain.tex --------------------------------------------------------------------------------