├── .gitignore ├── Makefile ├── README.md ├── custom.sty ├── data ├── ack.tex ├── appendix01.tex ├── chap01.tex ├── chap02.tex ├── cover.tex ├── denotation.tex └── resume.tex ├── figures ├── scan-auth.pdf ├── scan-record.pdf ├── scan-statement.pdf ├── thu-fig-logo.eps ├── thu-lib-logo.eps ├── thu-text-logo.eps ├── thu-whole-logo.eps └── tsinghua.eps ├── latexmkrc ├── main-mul-ref.tex ├── main.tex ├── ref └── refs.bib ├── shuji.tex ├── template.tex ├── thuthesis-author-year.bst ├── thuthesis-numerical.bst ├── thuthesis.bst ├── thuthesis.dtx ├── thuthesis.ins └── thuthesis.sty /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/README.md -------------------------------------------------------------------------------- /custom.sty: -------------------------------------------------------------------------------- 1 | % Write you own settings. 2 | -------------------------------------------------------------------------------- /data/ack.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/data/ack.tex -------------------------------------------------------------------------------- /data/appendix01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/data/appendix01.tex -------------------------------------------------------------------------------- /data/chap01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/data/chap01.tex -------------------------------------------------------------------------------- /data/chap02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/data/chap02.tex -------------------------------------------------------------------------------- /data/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/data/cover.tex -------------------------------------------------------------------------------- /data/denotation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/data/denotation.tex -------------------------------------------------------------------------------- /data/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/data/resume.tex -------------------------------------------------------------------------------- /figures/scan-auth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/figures/scan-auth.pdf -------------------------------------------------------------------------------- /figures/scan-record.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/figures/scan-record.pdf -------------------------------------------------------------------------------- /figures/scan-statement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/figures/scan-statement.pdf -------------------------------------------------------------------------------- /figures/thu-fig-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/figures/thu-fig-logo.eps -------------------------------------------------------------------------------- /figures/thu-lib-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/figures/thu-lib-logo.eps -------------------------------------------------------------------------------- /figures/thu-text-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/figures/thu-text-logo.eps -------------------------------------------------------------------------------- /figures/thu-whole-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/figures/thu-whole-logo.eps -------------------------------------------------------------------------------- /figures/tsinghua.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/figures/tsinghua.eps -------------------------------------------------------------------------------- /latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/latexmkrc -------------------------------------------------------------------------------- /main-mul-ref.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/main-mul-ref.tex -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/main.tex -------------------------------------------------------------------------------- /ref/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/ref/refs.bib -------------------------------------------------------------------------------- /shuji.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/shuji.tex -------------------------------------------------------------------------------- /template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/template.tex -------------------------------------------------------------------------------- /thuthesis-author-year.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/thuthesis-author-year.bst -------------------------------------------------------------------------------- /thuthesis-numerical.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/thuthesis-numerical.bst -------------------------------------------------------------------------------- /thuthesis.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/thuthesis.bst -------------------------------------------------------------------------------- /thuthesis.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/thuthesis.dtx -------------------------------------------------------------------------------- /thuthesis.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/thuthesis.ins -------------------------------------------------------------------------------- /thuthesis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulzfm/ThuThesis-Starter/HEAD/thuthesis.sty --------------------------------------------------------------------------------