├── README.Rmd ├── README.md ├── committee-agenda.Rmd ├── committee-agenda.pdf ├── committee-final-doc.Rmd ├── committee-final-doc.pdf ├── committee-minutes.Rmd ├── committee-minutes.pdf ├── dissertation-expectations.pdf ├── dissertation-mind-map.pdf ├── thesis ├── 01-chapter1.Rmd ├── 02-chapter2.Rmd ├── 03-chapter3.Rmd ├── 04-conclusions.Rmd ├── 05-references.Rmd ├── _book │ └── _main.pdf ├── _main.ilg ├── _main.nlo ├── _main.nls ├── citations.bib ├── index.Rmd ├── scripts │ ├── compile.R │ └── send-to-drive.R ├── tex │ ├── acknowledgements.tex │ ├── dedication.tex │ ├── doc_preface.tex │ ├── params.tex │ └── preamble.tex └── thesis.Rproj └── weekly_calendar.pdf /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /committee-agenda.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/committee-agenda.Rmd -------------------------------------------------------------------------------- /committee-agenda.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/committee-agenda.pdf -------------------------------------------------------------------------------- /committee-final-doc.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/committee-final-doc.Rmd -------------------------------------------------------------------------------- /committee-final-doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/committee-final-doc.pdf -------------------------------------------------------------------------------- /committee-minutes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/committee-minutes.Rmd -------------------------------------------------------------------------------- /committee-minutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/committee-minutes.pdf -------------------------------------------------------------------------------- /dissertation-expectations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/dissertation-expectations.pdf -------------------------------------------------------------------------------- /dissertation-mind-map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/dissertation-mind-map.pdf -------------------------------------------------------------------------------- /thesis/01-chapter1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/01-chapter1.Rmd -------------------------------------------------------------------------------- /thesis/02-chapter2.Rmd: -------------------------------------------------------------------------------- 1 | # Paper 2 2 | 3 | 4 | -------------------------------------------------------------------------------- /thesis/03-chapter3.Rmd: -------------------------------------------------------------------------------- 1 | # Paper 3 2 | 3 | 4 | -------------------------------------------------------------------------------- /thesis/04-conclusions.Rmd: -------------------------------------------------------------------------------- 1 | # Conclusions 2 | 3 | 4 | -------------------------------------------------------------------------------- /thesis/05-references.Rmd: -------------------------------------------------------------------------------- 1 | # REFERENCES {-} 2 | 3 | -------------------------------------------------------------------------------- /thesis/_book/_main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/_book/_main.pdf -------------------------------------------------------------------------------- /thesis/_main.ilg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/_main.ilg -------------------------------------------------------------------------------- /thesis/_main.nlo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/_main.nlo -------------------------------------------------------------------------------- /thesis/_main.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/_main.nls -------------------------------------------------------------------------------- /thesis/citations.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/citations.bib -------------------------------------------------------------------------------- /thesis/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/index.Rmd -------------------------------------------------------------------------------- /thesis/scripts/compile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/scripts/compile.R -------------------------------------------------------------------------------- /thesis/scripts/send-to-drive.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/scripts/send-to-drive.R -------------------------------------------------------------------------------- /thesis/tex/acknowledgements.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thesis/tex/dedication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/tex/dedication.tex -------------------------------------------------------------------------------- /thesis/tex/doc_preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/tex/doc_preface.tex -------------------------------------------------------------------------------- /thesis/tex/params.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/tex/params.tex -------------------------------------------------------------------------------- /thesis/tex/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/tex/preamble.tex -------------------------------------------------------------------------------- /thesis/thesis.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/thesis/thesis.Rproj -------------------------------------------------------------------------------- /weekly_calendar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucyMcGowan/dissertation-toolkit/HEAD/weekly_calendar.pdf --------------------------------------------------------------------------------