├── .gitignore ├── 000_Title.tex ├── 001_Acknowledgements.tex ├── 002_Summary.tex ├── 01_chapter1.tex ├── 02_chapter2.tex ├── 03_chapter3.tex ├── 04_chapter4.tex ├── 05_chapter5.tex ├── 06_chapter6.tex ├── 07_biography.tex ├── 08_TESF.tex ├── 09_funding.tex ├── PERC_logo.pdf ├── README.md ├── add_cover.sh ├── cover └── .gitignore ├── figs_01 └── .gitignore ├── figs_02 └── .gitignore ├── figs_03 └── .gitignore ├── figs_04 └── .gitignore ├── figs_05 └── .gitignore ├── figs_06 └── .gitignore ├── main.tex ├── model5-names.bst ├── refs.bib └── resize.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/.gitignore -------------------------------------------------------------------------------- /000_Title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/000_Title.tex -------------------------------------------------------------------------------- /001_Acknowledgements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/001_Acknowledgements.tex -------------------------------------------------------------------------------- /002_Summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/002_Summary.tex -------------------------------------------------------------------------------- /01_chapter1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/01_chapter1.tex -------------------------------------------------------------------------------- /02_chapter2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/02_chapter2.tex -------------------------------------------------------------------------------- /03_chapter3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/03_chapter3.tex -------------------------------------------------------------------------------- /04_chapter4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/04_chapter4.tex -------------------------------------------------------------------------------- /05_chapter5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/05_chapter5.tex -------------------------------------------------------------------------------- /06_chapter6.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/06_chapter6.tex -------------------------------------------------------------------------------- /07_biography.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/07_biography.tex -------------------------------------------------------------------------------- /08_TESF.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/08_TESF.tex -------------------------------------------------------------------------------- /09_funding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/09_funding.tex -------------------------------------------------------------------------------- /PERC_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/PERC_logo.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/README.md -------------------------------------------------------------------------------- /add_cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/add_cover.sh -------------------------------------------------------------------------------- /cover/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /figs_01/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /figs_02/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /figs_03/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /figs_04/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /figs_05/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /figs_06/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/main.tex -------------------------------------------------------------------------------- /model5-names.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/model5-names.bst -------------------------------------------------------------------------------- /refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/refs.bib -------------------------------------------------------------------------------- /resize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loicdtx/Wageningen_PhD_thesis_template/HEAD/resize.sh --------------------------------------------------------------------------------