-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path00-DISSERTATION.parent.Rmd
184 lines (127 loc) · 3.25 KB
/
00-DISSERTATION.parent.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
---
date: '`r format(Sys.Date(), "%d %B %Y")`'
output:
bookdown::pdf_document2:
toc: no
geometry: margin = 1in
fontsize: 11pt
bibliography: thesis-references.bib
csl: science-modified1.csl
link-citations: yes
linkcolor: blue
urlcolor: blue
header-includes:
- \usepackage{placeins}
- \usepackage{fancyhdr}
- \usepackage{setspace}
- \usepackage{chngcntr}
- \usepackage{microtype}
- \counterwithin{figure}{section}
- \counterwithin{table}{section}
- \setlength{\parindent}{1em}
- \doublespacing
- \usepackage{float}
- \usepackage{amsmath}
- \DeclareMathOperator{\logit}{logit}
---
<!--R version 3.4.1 (2017-06-30)-->
```{r knitr.global_options, include=F}
knitr::opts_chunk$set(fig.width=12, fig.height=8, fig.path='Figs/', echo=FALSE, warning=FALSE, message=FALSE, tidy.opts=list(width.cutoff=60), tidy=TRUE)
```
\pagenumbering{gobble}
```{r child = '01-titlepage.Rmd'}
```
\newpage
```{r child = '02-copyright.Rmd'}
```
\newpage
```{r child = '03-abstract.Rmd'}
```
\FloatBarrier
\newpage
\fancyhead[LE,RO]{}
\fancyhead[LO,RE]{}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\pagestyle{fancy}
\pagenumbering{roman}
\fancyhead[CO,CE]{Table of Contents}
\setcounter{tocdepth}{3}
\linespread{1}\selectfont
\tableofcontents
\FloatBarrier
\newpage
\fancyhead[CO,CE]{List of Figures}
\addcontentsline{toc}{section}{List of Figures}
\listoffigures
\FloatBarrier
\newpage
\fancyhead[CO,CE]{List of Tables}
\addcontentsline{toc}{section}{List of Tables}
\listoftables
\FloatBarrier
\newpage
\fancyhead[CO,CE]{Acknowledgements}
\section*{Acknowledgements}
```{r child = '04-acknowledgements.Rmd'}
```
\FloatBarrier
\clearpage
\pagenumbering{arabic}
\fancyhead[CO,CE]{Chapter 1. Introduction}
```{r child = '05-chapter1.Rmd'}
```
\FloatBarrier
\clearpage
\fancyhead[CO,CE]{Chapter 2. Photo Journalism}
```{r child = '06-chapter2.Rmd'}
```
\FloatBarrier
\clearpage
\fancyhead[CO,CE]{Chapter 3. Webbing Fluid}
```{r child = '07-chapter3.Rmd'}
```
\FloatBarrier
\clearpage
\fancyhead[CO,CE]{Chapter 4. Fighting Crime}
```{r child = '08-chapter4.Rmd'}
```
\FloatBarrier
\clearpage
\fancyhead[CO,CE]{Chapter 5. Conclusions}
```{r child = '09-chapter5.Rmd'}
```
\FloatBarrier
\newpage
\fancyhead[CO,CE]{References}
\linespread{1.0}\selectfont
# References
\setlength{\parindent}{0cm}
<div id="refs"></div>
\FloatBarrier
\newpage
\fancyhead[CO,CE]{Acronyms and Abbreviations}
\linespread{1.0}\selectfont
# Acronyms and abbreviations
```{r acronyms, message=F, warnings=F, results='asis', echo=F}
tabl <- "
----------------------------------------------------------------------------------------
Code Full name
------------------ ---------------------------------------------------------------------
AM Arithmetic Mean
API Application Programmable Interface
ASD Arithmetic Standard Deviation
CDC Centers for Disease Control and Prevention
WAC Washington Administrative Code
WSU Washington State University
Zn Zinc
----------------------------------------------------------------------------------------
"
cat(tabl)
```
\FloatBarrier
\newpage
\fancyhead[CO,CE]{Vita}
\linespread{1.0}\selectfont
```{r child = '10-vita.Rmd'}
```