├── .gitignore ├── .travis.yml ├── README.md ├── makefile ├── rename.sh ├── template ├── graphics │ ├── Uvic_Logo.jpg │ └── supervisor_approval.png ├── letter │ ├── letter_of_transmittal.tex │ ├── letter_of_transmittal_demo.pdf │ └── makefile ├── makefile ├── sections │ ├── appendix.tex │ ├── body.tex │ ├── glossary.tex │ ├── summary.tex │ └── titlepage.tex ├── wt_template.bib ├── wt_template.tex └── wt_template_demo.pdf └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/makefile -------------------------------------------------------------------------------- /rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/rename.sh -------------------------------------------------------------------------------- /template/graphics/Uvic_Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/graphics/Uvic_Logo.jpg -------------------------------------------------------------------------------- /template/graphics/supervisor_approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/graphics/supervisor_approval.png -------------------------------------------------------------------------------- /template/letter/letter_of_transmittal.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/letter/letter_of_transmittal.tex -------------------------------------------------------------------------------- /template/letter/letter_of_transmittal_demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/letter/letter_of_transmittal_demo.pdf -------------------------------------------------------------------------------- /template/letter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/letter/makefile -------------------------------------------------------------------------------- /template/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/makefile -------------------------------------------------------------------------------- /template/sections/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/sections/appendix.tex -------------------------------------------------------------------------------- /template/sections/body.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/sections/body.tex -------------------------------------------------------------------------------- /template/sections/glossary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/sections/glossary.tex -------------------------------------------------------------------------------- /template/sections/summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/sections/summary.tex -------------------------------------------------------------------------------- /template/sections/titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/sections/titlepage.tex -------------------------------------------------------------------------------- /template/wt_template.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/wt_template.bib -------------------------------------------------------------------------------- /template/wt_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/wt_template.tex -------------------------------------------------------------------------------- /template/wt_template_demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/template/wt_template_demo.pdf -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trstephen/work-term-report/HEAD/test.sh --------------------------------------------------------------------------------