├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── beamercolorthemetongji.sty ├── beamerfontthemetongji.sty ├── beamerinnerthemetongji.sty ├── beamerouterthemetongji.sty ├── beamerthemetongji.sty ├── contents ├── body.tex ├── figure │ ├── collector-part-1.png │ ├── collector-part-2.png │ ├── data-detector.png │ └── factor-analyzer.png ├── introduction.tex └── summary.tex ├── figure ├── example.png └── logo.pdf ├── latexmkrc ├── main.tex └── reference.bib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/README.md -------------------------------------------------------------------------------- /beamercolorthemetongji.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/beamercolorthemetongji.sty -------------------------------------------------------------------------------- /beamerfontthemetongji.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/beamerfontthemetongji.sty -------------------------------------------------------------------------------- /beamerinnerthemetongji.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/beamerinnerthemetongji.sty -------------------------------------------------------------------------------- /beamerouterthemetongji.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/beamerouterthemetongji.sty -------------------------------------------------------------------------------- /beamerthemetongji.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/beamerthemetongji.sty -------------------------------------------------------------------------------- /contents/body.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/contents/body.tex -------------------------------------------------------------------------------- /contents/figure/collector-part-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/contents/figure/collector-part-1.png -------------------------------------------------------------------------------- /contents/figure/collector-part-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/contents/figure/collector-part-2.png -------------------------------------------------------------------------------- /contents/figure/data-detector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/contents/figure/data-detector.png -------------------------------------------------------------------------------- /contents/figure/factor-analyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/contents/figure/factor-analyzer.png -------------------------------------------------------------------------------- /contents/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/contents/introduction.tex -------------------------------------------------------------------------------- /contents/summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/contents/summary.tex -------------------------------------------------------------------------------- /figure/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/figure/example.png -------------------------------------------------------------------------------- /figure/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/figure/logo.pdf -------------------------------------------------------------------------------- /latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/latexmkrc -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/main.tex -------------------------------------------------------------------------------- /reference.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TJ-CSCCG/Tongji-Beamer/HEAD/reference.bib --------------------------------------------------------------------------------