forked from HanZhang-psych/CV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CV.Rmd
219 lines (191 loc) · 6.51 KB
/
CV.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
---
name: Jessica
surname: Burnett
# position: "Associate Program Manager"
address: "5067 6th Place NE, Washington, D.C. 20017"
# www: sites.lsa.umich.edu/hanzh
email: "jessica.burnett@nasa.gov"
#orcid: 0000-0001-6087-0428
# researchgate: Han_Zhang175
# github: trashbirdecology
headcolor: 414141 # use black color
date: "`r format(Sys.time(), '%B %Y')`"
csl: apa-cv.csl # change this if you want to use other citation styles
output:
vitae::awesomecv:
pandoc_args: ["--lua-filter=lua/strong.lua"]
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE)
library(vitae);library(tibble)
#rmarkdown::pandoc_version()
```
# Research Interests
Attention; distraction; mind-wandering; eye movements
# Education
```{r}
tribble(
~ Degree,
~ Advisor,
~ Year,
~ Institution,
~ Where,
"Postdoctoral Research Fellow, Department of Psychology",
"Advisor: Dr. John Jonides",
"06/2020-present",
"University of Michigan",
"Ann Arbor, MI, USA",
"Doctor of Philosophy, Education and Psychology",
"Dissertation: Mind-wandering: What Can We Learn from Eye Movements?",
"09/2014-05/2020",
"University of Michigan",
"Ann Arbor, MI, USA",
"Master of Science, Psychology",
NA,
"09/2014-04/2018",
"University of Michigan",
"Ann Arbor, MI, USA",
"Bachelor of Science, Psychology",
NA,
"09/2010-07/2014",
"Beijing Normal University",
"Beijing, China",
) %>%
detailed_entries(
what = Degree,
when = Year,
with = Institution,
where = Where,
why = Advisor
)
```
# Awards and Grants
```{r}
tribble(
~Year, ~Name, ~Institution, ~Supp, ~Amount,
'2020', 'Stanley E. and Ruth B. Dimond Best Dissertation Award', 'School of Education, University of Michigan', 'Dissertation: Mind-wandering: What Can We Learn from Eye Movements?', NA,
'2020', '2020 ProQuest Distinguished Dissertation Awards (Nomination)','School of Education, University of Michigan', 'Dissertation: Mind-wandering: What Can We Learn from Eye Movements?',NA,
'2019', "Rackham One-Term Dissertation Fellowship", "Rackham Graduate School, University of Michigan",NA,'$17417',
'2019', "Rackham Graduate Student Research Grant", "Rackham Graduate School, University of Michigan",NA,'$3000',
'2019, 2018, 2017', "Rackham Conference Travel Grant","Rackham Graduate School, University of Michigan",NA,'$1050',
'2018', "Rackham Summer Training Award","Rackham Graduate School, University of Michigan",NA,'$3700',
'2017, 2015', "Professor & Mrs. Cho-Yee To Travel Grant","School of Education, University of Michigan",NA, '$500',
'2014', "China National Scholarship","Ministry of Education of the People's Republic of China",NA, '$1500',
'2014, 2013', "The First Rank Academic Scholarship","Faculty of Psychology, Beijing Normal University",NA,'$300',
'2013', "Beijing Student Research and Entrepreneurial Action Plan","Beijing Municipal Commission of Education",NA,'$1500',
'2012', "Undergraduate Student Research Grant","Faculty of Psychology, Beijing Normal University",NA,'$280',
) %>%
detailed_entries(
where = Year,
with = Name,
what = Institution,
why = Supp,
when = Amount
)
```
# Peer-reviewed Publications
```{r}
bibliography_entries("Published.bib")
```
# Book Chapters
```{r}
bibliography_entries("Book_chapters.bib")
```
# Work in Progress
```{r}
# bibliography_entries("In_progress.bib")
```
# Selected Presentations
```{r}
bibliography_entries("Presentations.bib")
```
# Teaching Experience
## Primary Instructor
```{r}
tribble(
~ Year,
~ Name,
~ Duty,
'09/2017 - 12/2017',
"EDUC 391: Educational Psychology and Human Development",
"Course design; weekly lectures; grading assignments and exams; office hours"
) %>%
detailed_entries(where = Year,
with = Name,
what = Duty)
```
## Graduate Student Instructor
```{r}
tribble(
~ Year,
~ Name,
~ Duty,
'01/2020 - 04/2020',
"PSYCH 457 : Research in Educational and Cross-Cultural Settings",
"Grading student essays and exams; office hours; supervising student research projects",
'01/2019 - 04/2019',
"PSYCH 457 : Research in Educational and Cross-Cultural Settings",
"Grading student essays and exams; office hours; supervising student research projects",
'01/2018 - 04/2018',
"PSYCH 111: Introduction to Psychology",
"Three review sessions per week; grading assignments and exams; office hours",
'01/2017 - 04/2017',
"PSYCH 457 : Research in Educational and Cross-Cultural Settings",
"Grading student essays and exams; office hours; supervising student research projects",
'09/2016 - 12/2016',
"PSYCH 240: Intro to Cognitive Psychology",
"Three review sessions per week; grading assignments and exams; office hours",
'01/2016 - 04/2016',
"PSYCH 457 : Research in Educational and Cross-Cultural Settings",
"Grading student essays and exams; office hours; supervising student research projects"
) %>%
detailed_entries(where = Year,
with = Name,
what = Duty)
```
## Program Assistant
```{r}
tribble(
~ Year,
~ Name,
~ Duty,
'2015 - 2019',
"Global Course Connection: Beijing Normal University",
"Supervising joint research projects between US and Chinese students; organizing student activities"
) %>%
detailed_entries(where = Year,
with = Name,
what = Duty)
```
# Professional Service
## Ad Hoc Reviewer
* Memory & Cognition
* NeuroImage
* Visual Cognition
* Cognitive Science
* Scientific Studies of Reading
* Frontiers in Psychiatry
* Psychological Research
# References
```{r}
tribble(
~ Name,
~ Title,
~ Contact,
'John Jonides, Ph.D.',
"Edward E. Smith Professor of Psychology and Neuroscience; Co-Director, functional MRI Center, University of Michigan; Senior Editor, Psychological Science",
"jjonides@umich.edu; 734-764-0192",
'Kevin F. Miller, Ph.D.',
"Professor of Psychology and Education, University of Michigan",
"kevinmil@umich.edu; 734-615-1800",
'Priti Shah, Ph.D.',
"Professor of Cognition & Cognitive Neuroscience and Educational Psychology, University of Michigan",
"priti@umich.edu; 734-615-3745",
'Kai S. Cortina, Ph.D.',
"Professor of Psychology, University of Michigan",
"schnabel@umich.edu; 734-615-3809"
) %>%
detailed_entries(where = Contact,
with = Name,
what = Title)
```