├── LICENSE ├── README.md ├── other ├── NewEngineeringBlack.pdf ├── cris.pdf ├── cris_style.sty ├── rmd_header.tex ├── rmd_template.tex └── thesis_header.tex └── templates ├── abstract.tex ├── beamerthemeZH.sty ├── deck_.tex ├── deck_beamer.bbl ├── deck_beamer.pdf ├── deck_beamer.tex ├── deck_handout.pdf ├── deck_handout.tex ├── definitions.tex ├── deprecated ├── beamer-cris-style │ ├── NewEngineeringBlack.pdf │ ├── cris.pdf │ └── cris_style.sty ├── beamer-sections │ ├── 0_Preamble.tex │ ├── 1_introduction.tex │ ├── 2_Methods.tex │ ├── 3_Results.tex │ ├── 4_Conclusion.tex │ └── 99_Appendix.tex ├── beamer_template.pdf ├── beamer_template.tex ├── beamerthemeZH_190524.sty └── journal_ieee.tex ├── fig ├── download │ ├── CrisResearch720.png │ └── dice.png ├── flask.tex ├── flask_animated.tex └── flask_core.tex ├── journal_elsevier.tex ├── l16cn.sty ├── library.tex ├── logo1.png ├── logo2.png ├── main.tex ├── poster.pdf ├── poster.tex ├── references.bib ├── slide ├── acronyms.tex ├── intro.tex ├── methods.tex ├── results.tex └── summary.tex ├── text.tex ├── tikz_template.pdf ├── tikz_template.tex ├── yu_color.sty ├── yu_style.sty └── yu_tikz.sty /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/README.md -------------------------------------------------------------------------------- /other/NewEngineeringBlack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/other/NewEngineeringBlack.pdf -------------------------------------------------------------------------------- /other/cris.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/other/cris.pdf -------------------------------------------------------------------------------- /other/cris_style.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/other/cris_style.sty -------------------------------------------------------------------------------- /other/rmd_header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/other/rmd_header.tex -------------------------------------------------------------------------------- /other/rmd_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/other/rmd_template.tex -------------------------------------------------------------------------------- /other/thesis_header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/other/thesis_header.tex -------------------------------------------------------------------------------- /templates/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/abstract.tex -------------------------------------------------------------------------------- /templates/beamerthemeZH.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/beamerthemeZH.sty -------------------------------------------------------------------------------- /templates/deck_.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deck_.tex -------------------------------------------------------------------------------- /templates/deck_beamer.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deck_beamer.bbl -------------------------------------------------------------------------------- /templates/deck_beamer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deck_beamer.pdf -------------------------------------------------------------------------------- /templates/deck_beamer.tex: -------------------------------------------------------------------------------- 1 | \documentclass[mathserif,aspectratio=169 2 | %,handout 3 | ]{beamer} 4 | \input{deck_.tex} -------------------------------------------------------------------------------- /templates/deck_handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deck_handout.pdf -------------------------------------------------------------------------------- /templates/deck_handout.tex: -------------------------------------------------------------------------------- 1 | \documentclass[mathserif,aspectratio=169 2 | ,handout 3 | ]{beamer} 4 | \input{deck_.tex} -------------------------------------------------------------------------------- /templates/definitions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/definitions.tex -------------------------------------------------------------------------------- /templates/deprecated/beamer-cris-style/NewEngineeringBlack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer-cris-style/NewEngineeringBlack.pdf -------------------------------------------------------------------------------- /templates/deprecated/beamer-cris-style/cris.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer-cris-style/cris.pdf -------------------------------------------------------------------------------- /templates/deprecated/beamer-cris-style/cris_style.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer-cris-style/cris_style.sty -------------------------------------------------------------------------------- /templates/deprecated/beamer-sections/0_Preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer-sections/0_Preamble.tex -------------------------------------------------------------------------------- /templates/deprecated/beamer-sections/1_introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer-sections/1_introduction.tex -------------------------------------------------------------------------------- /templates/deprecated/beamer-sections/2_Methods.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer-sections/2_Methods.tex -------------------------------------------------------------------------------- /templates/deprecated/beamer-sections/3_Results.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer-sections/3_Results.tex -------------------------------------------------------------------------------- /templates/deprecated/beamer-sections/4_Conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer-sections/4_Conclusion.tex -------------------------------------------------------------------------------- /templates/deprecated/beamer-sections/99_Appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer-sections/99_Appendix.tex -------------------------------------------------------------------------------- /templates/deprecated/beamer_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer_template.pdf -------------------------------------------------------------------------------- /templates/deprecated/beamer_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamer_template.tex -------------------------------------------------------------------------------- /templates/deprecated/beamerthemeZH_190524.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/beamerthemeZH_190524.sty -------------------------------------------------------------------------------- /templates/deprecated/journal_ieee.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/deprecated/journal_ieee.tex -------------------------------------------------------------------------------- /templates/fig/download/CrisResearch720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/fig/download/CrisResearch720.png -------------------------------------------------------------------------------- /templates/fig/download/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/fig/download/dice.png -------------------------------------------------------------------------------- /templates/fig/flask.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/fig/flask.tex -------------------------------------------------------------------------------- /templates/fig/flask_animated.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/fig/flask_animated.tex -------------------------------------------------------------------------------- /templates/fig/flask_core.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/fig/flask_core.tex -------------------------------------------------------------------------------- /templates/journal_elsevier.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/journal_elsevier.tex -------------------------------------------------------------------------------- /templates/l16cn.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/l16cn.sty -------------------------------------------------------------------------------- /templates/library.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/library.tex -------------------------------------------------------------------------------- /templates/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/logo1.png -------------------------------------------------------------------------------- /templates/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/logo2.png -------------------------------------------------------------------------------- /templates/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/main.tex -------------------------------------------------------------------------------- /templates/poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/poster.pdf -------------------------------------------------------------------------------- /templates/poster.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/poster.tex -------------------------------------------------------------------------------- /templates/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/references.bib -------------------------------------------------------------------------------- /templates/slide/acronyms.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/slide/acronyms.tex -------------------------------------------------------------------------------- /templates/slide/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/slide/intro.tex -------------------------------------------------------------------------------- /templates/slide/methods.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/slide/methods.tex -------------------------------------------------------------------------------- /templates/slide/results.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/slide/results.tex -------------------------------------------------------------------------------- /templates/slide/summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/slide/summary.tex -------------------------------------------------------------------------------- /templates/text.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/text.tex -------------------------------------------------------------------------------- /templates/tikz_template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/tikz_template.pdf -------------------------------------------------------------------------------- /templates/tikz_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/tikz_template.tex -------------------------------------------------------------------------------- /templates/yu_color.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/yu_color.sty -------------------------------------------------------------------------------- /templates/yu_style.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/yu_style.sty -------------------------------------------------------------------------------- /templates/yu_tikz.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l16cn/latex-package/HEAD/templates/yu_tikz.sty --------------------------------------------------------------------------------