├── .gitignore ├── .latexmkrc ├── Makefile ├── README.md ├── backmatter ├── acknowledgement.tex ├── appendix.tex └── main.tex ├── frontmatter ├── abstract.tex └── main.tex ├── images ├── RaspberryPiMouse.png ├── convert_eps.sh ├── eps │ └── RaspberryPiMouse.eps └── png │ └── RaspberryPiMouse.png ├── introduction ├── background.tex └── main.tex ├── main_bibliography.bib ├── out └── thesis.pdf ├── thesis.sty └── thesis.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/.gitignore -------------------------------------------------------------------------------- /.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/.latexmkrc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/README.md -------------------------------------------------------------------------------- /backmatter/acknowledgement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/backmatter/acknowledgement.tex -------------------------------------------------------------------------------- /backmatter/appendix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/backmatter/appendix.tex -------------------------------------------------------------------------------- /backmatter/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/backmatter/main.tex -------------------------------------------------------------------------------- /frontmatter/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/frontmatter/abstract.tex -------------------------------------------------------------------------------- /frontmatter/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/frontmatter/main.tex -------------------------------------------------------------------------------- /images/RaspberryPiMouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/images/RaspberryPiMouse.png -------------------------------------------------------------------------------- /images/convert_eps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/images/convert_eps.sh -------------------------------------------------------------------------------- /images/eps/RaspberryPiMouse.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/images/eps/RaspberryPiMouse.eps -------------------------------------------------------------------------------- /images/png/RaspberryPiMouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/images/png/RaspberryPiMouse.png -------------------------------------------------------------------------------- /introduction/background.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/introduction/background.tex -------------------------------------------------------------------------------- /introduction/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/introduction/main.tex -------------------------------------------------------------------------------- /main_bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/main_bibliography.bib -------------------------------------------------------------------------------- /out/thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/out/thesis.pdf -------------------------------------------------------------------------------- /thesis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/thesis.sty -------------------------------------------------------------------------------- /thesis.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotokoki/thesis_template/HEAD/thesis.tex --------------------------------------------------------------------------------