-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathresearch.qmd
288 lines (234 loc) · 7.21 KB
/
research.qmd
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
---
title: "Research"
toc: false
bibliography: ./assets/bib/publications_html.bib
engine: knitr
execute:
echo: false
---
```{css}
cite {
color: #515151;
font-style: normal;
}
p {
line-height: 1.25;
padding-left: 30px;
text-indent: -30px;
}
.relax {
line-height: 1.5;
padding-left: 0px;
text-indent: 0px;
}
```
<!--
Updating the bib:
- must update by hand the file publications_html.bib in mybib repo
- once updated, below code downloads current version and loads into R
- must reference relevant article in relevant pane (publications or presentations)
Afterwards, update the following:
- Your CV
- Research Gate
- Google scholar
-->
```{r}
#| label: bib-setup
#| eval: true
#| message: false
library("RefManageR")
library("here")
library("dplyr")
library("tidyr")
# Url to github repo
fileUrl <- "https://raw.githubusercontent.com/jvcasillas/mybib/master/publications_html.bib"
# Download .bib file
download.file(
url = fileUrl,
destfile = here("assets", "bib", "publications_html.bib"),
method = "curl"
)
# Load bib
bib <- ReadBib(here("assets", "bib", "publications_html.bib"), check = FALSE)
# Create csv of citekeys
cite_key_list <- bind_cols(
bib$key %>% unlist %>% tibble::enframe(name = NULL),
bib$bibtype %>% unlist %>% tibble::enframe(name = NULL),
bib$year %>% unlist %>% tibble::enframe(name = NULL)
) %>%
rename(citekey = value...1, type = value...2, year = value...3) |>
separate(
col = citekey,
into = c("authors", "info", "year_check"),
sep = "_",
remove = F
) |>
separate(
col = info,
into = c("info", "type_check"),
sep = "-"
) |>
mutate(refd = if_else(stringr::str_detect(info, "UNREF"), 0, 1))
# Set bib options
BibOptions(
bib.style = "authoryear",
style = "markdown",
dashed = FALSE,
sorting = "ynt",
max.names = 10,
first.inits = TRUE,
check.entries = FALSE
)
# Printer function for refs
ref_printer <- function(pubs) {
for (i in pubs) {
print(bib[key = i]); cat("\n")
}
}
```
::: panel-tabset
## Overview
<p class="relax">
I am currently in the process of setting up my research laboratory at Rutgers University.
You can find more information here: <https://RAP-group.github.io>.
My main interests are in phonetics, laboratory phonology, and second language acquisition.
A principle aim of my research is to better understand the relationship between language use and sound representation in the mind, as well as the structure of sound systems in human languages.
Most of my research is conducted on bilinguals of varying proficiency and linguistic experience.
Feel free to explore the tabs on this page if you are interested in knowing more about my research projects.
</p>
## Projects
### Current projects
::: {.callout-note collapse="true" appearance="simple" icon="false"}
## Longitudinal development of fine-phonetic detail in late learners
<p class="relax">
This ongoing project explores L2 category formation and the relationship
between speech production and speech perception during the early stages of L2
acquisition.
The data were/are collected in a stateside immersion program over the course
of a summer.
The participants complete a variety of tasks aimed at analyzing their
acquisition of various L2 segments, such as: stops, trills, laterals and
vowels.
</p>
:::
::: {.callout-note collapse="true" appearance="simple" icon="false"}
## Language-specific perceptual normalization in adult L2 acquisition
<p class="relax">
This project explores a long history of 'language set' experiments with the goal
of furthering our understanding of how bilinguals deal with the lack of invariance
in the speech signal, both between and within languages.
The project has implications for category formation and the development of bilingual language modes.
(with Miquel Simonet)
</p>
:::
::: {.callout-note collapse="true" appearance="simple" icon="false"}
## Production/perception of English/Spanish coronal stops
<p class="relax">
This project has explored the acoustic characteristics of coronal stops in Spanish and English ([link](https://www.researchgate.net/publication/280840068_ACOUSTICS_OF_SPANISH_AND_ENGLISH_CORONAL_STOPS)), the effects of stress on VOT in the Spanish/English monolinguals and bilinguals ([link](https://www.researchgate.net/publication/272090285_The_effects_of_stressaccent_on_VOT_depend_on_language_%28English_Spanish%29_consonant_%28d_t%29_and_linguistic_experience_%28monolinguals_bilinguals%29)), as well as acoustic evidence for language-specific places of articulation (in preparation).
(with Miquel Simonet and Yamile Díaz)
</p>
:::
::: {.callout-note collapse="true" appearance="simple" icon="false"}
## Semantic predictability and speech rate effects in second language speech
categorization
<p class="relax">
More info coming soon.
(with Miquel Simonet and Imanol Suárez Palma)
</p>
:::
::: {.callout-note collapse="true" appearance="simple" icon="false"}
## Morphosyntactic predictability
<p class="relax">
More info coming soon.
</p>
:::
### Previous Projects
::: {.callout-note collapse="true" appearance="simple" icon="false"}
## Production/perception of switch dominance speakers of English
<p class="relax">
You can read about this project in my 2015 article published in [Phonetica](http://www.karger.com/Article/Abstract/431101), or in a
co-authored 2016 article that appeared in [Second Language Research](http://slr.sagepub.com/content/32/2/171.abstract).
</p>
:::
::: {.callout-note collapse="true" appearance="simple" icon="false"}
## Selective adaptation
<p class="relax">
This project was co-authored with Miquel Llompart García. You can read the
final publication in [JASA](http://scitation.aip.org/content/asa/journal/jasa/139/5/10.1121/1.4951704).
</p>
:::
## Publications
### In press
```{r}
#| label: print-in-press
#| results: 'asis'
filter(cite_key_list, type_check == "article" & year == "In press") |>
arrange(desc(year)) |>
pull(citekey) |>
ref_printer()
```
### Recent Publications
```{r}
#| label: print-recent-pubs
#| results: 'asis'
cite_key_list |>
filter(
type_check == "article",
!(year %in% c("In press", "Under review", "in preparation"))
) |>
arrange(desc(year)) |>
pull(citekey) |>
ref_printer()
```
### Under review
```{r}
#| label: print-submitted
#| results: 'asis'
cite_key_list |>
filter(year == "Under review") |>
arrange(desc(year)) |>
pull(citekey) |>
ref_printer()
```
### In preparation
```{r}
#| label: print-in-prep
#| results: 'asis'
cite_key_list |>
filter(year == "in preparation") |>
arrange(desc(year)) |>
pull(citekey) |>
ref_printer()
```
## Presentations
### Refereed Presentations
```{r}
#| label: print-refereed-presentations
#| results: 'asis'
cite_key_list |>
filter(type_check == "pres") |>
arrange(desc(year)) |>
pull(citekey) |>
ref_printer()
```
### Unrefereed Presentations
```{r}
#| label: print-unrefereed-presentations
#| results: 'asis'
cite_key_list |>
filter(refd == 0) |>
arrange(desc(year)) |>
pull(citekey) |>
ref_printer()
```
### Poster presentations
```{r}
#| label: print-poster-presentations
#| results: 'asis'
cite_key_list |>
filter(refd == 1, type_check == "poster") |>
arrange(desc(year)) |>
pull(citekey) |>
ref_printer()
```
:::