-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuccola-cv.tex
More file actions
598 lines (498 loc) · 23.1 KB
/
buccola-cv.tex
File metadata and controls
598 lines (498 loc) · 23.1 KB
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
%==============================================================================%
% %
% file: buccola-cv.tex %
% author: Brian Buccola <buccola@msu.edu> %
% %
%==============================================================================%
%============%
% %
% PREAMBLE %
% %
%============%
\documentclass[12pt,letterpaper,twoside]{article}
%===============================%
% Packages and basic settings %
%===============================%
\newcommand{\name}{Brian Buccola}
% Font settings
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{microtype}
\usepackage[osf,scaled]{garamondx}% Garamond font, with old-style figures
\usepackage[scale=0.8]{Fira Mono}% Fira Mono Narrow
\usepackage{fontawesome}
% Margins
\usepackage[margin=1in,twoside]{geometry}
% Colors
\usepackage{xcolor}
\definecolor{spartangreen}{HTML}{18453B}
\definecolor{msuorange}{HTML}{CB5A28}
% Section fonts
\usepackage[nobottomtitles*]{titlesec}
\titleformat*{\section}{\normalfont\Large\scshape\color{spartangreen}}
\titleformat*{\subsection}{\normalfont\large\bfseries\color{spartangreen}}
\titleformat*{\subsubsection}{\normalfont\normalsize\itshape\color{spartangreen}}
% Headers, footers, and page styles
\usepackage{titleps}
\newpagestyle{main}[\footnotesize]{%
\headrule
\sethead{Curriculum vit\ae}{}{Brian Buccola}
\setfoot{}{\thepage}{\scriptsize \today}
}
\newpagestyle{first}[\footnotesize]{%
\sethead{}{}{}
\setfoot{}{}{\scriptsize \today}
}
\pagestyle{main}
% References
\usepackage[backend=biber,style=authoryear-comp,maxnames=99]{biblatex}
\addbibresource{/home/brian/repos/references/references.bib}
\renewcommand{\subtitlepunct}{\addcolon\space}
%% Don't print "In: " before journal names
\renewbibmacro{in:}{}
%% Don't print quotation marks around title.
% \DeclareFieldFormat[article,incollection,inproceedings,misc,thesis,unpublished]{title}{#1}
%% Don't print "pp." before pages.
\DeclareFieldFormat{pages}{#1}
%% Print date as "YYYY." instead of "(YYYY)".
\usepackage{xpatch}
\xpatchbibmacro{date+extradate}{%
\printtext[parens]%
}{%
\setunit*{\adddot\space}%
\printtext%
}{}{}
%% Don't print letter labels after date.
%% (Necessary for authoryear style, which forces labeldateparts=true.)
\DeclareFieldInputHandler{extradate}{\def\NewValue{}}
\DeclareFieldInputHandler{extradatescope}{\def\NewValue{}}
%% Write "v(n)" instead of "v.n" for volume and number.
\renewbibmacro*{volume+number+eid}{%
\printfield{volume}%
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}}
\DeclareFieldFormat[article]{number}{\mkbibparens{#1}}
% Packages for CV environment
\usepackage{array}% required for defining newcolumntype with custom vrule
\usepackage{longtable}% normal \tabular environment does not allow page breaks
\setlength{\LTpre}{0pt}% glue before longtable
\addtolength{\LTpost}{0pt}% glue after longtable
% \pbox for two-column contact info
\usepackage{pbox}
% ORCID
%% Get icon (svg) at:
%% https://orcid.figshare.com/articles/figure/ORCID_iD_icon_graphics/5008697?file=8439047
\usepackage{svg}
\newcommand*{\orcid}[1]{\href{https://orcid.org/#1}{\textcolor[HTML]{A6CE39}{\includesvg[height=16px]{ORCIDiD_iconvector.svg}}}}
\newcommand*{\myorcid}{0000-0001-9234-7869}
% Hyper links and PDF info
\usepackage[hidelinks]{hyperref}
\hypersetup{%
pdfauthor = {\name},
pdftitle = {Curriculum vitae -- \name},
pdfsubject = {Curriculum vitae},
pdfkeywords = {\name, CV, linguistics},
pdfpagemode = UseNone,
colorlinks = true,
allcolors = msuorange,
}
\setlength{\parindent}{0pt}
%==========%
% Macros %
%==========%
\newcommand{\datewidth}{0.15}
\newcommand{\bodywidth}{0.85}
\newcolumntype{L}{p{\datewidth\textwidth}}
\newcolumntype{R}{p{\bodywidth\textwidth}}
\renewcommand{\arraystretch}{1.5}
\newenvironment{cvsection}{%
\begin{longtable}[l]{@{}L@{} @{}R@{}}
}{%
\end{longtable}
}
\newcommand{\taship}[3]{% list of TA course, duties, and instructor
\parbox[t]{\bodywidth\textwidth}{#1.\\ {\footnotesize Duties included: #2.\\
Instructor: #3.}}
}
\newcommand{\course}[3]{% course name, course description, and class size
\parbox[t]{\bodywidth\textwidth}{#1.\\ {\footnotesize Course description: #2.
Class size: #3.}}
}
\newcommand{\award}[2]{%
#1 (#2).% award description and award amount
}
\newcommand{\datebox}[1]{% allows '\\' inside date of cv item (i.e. left column)
\parbox[t]{\datewidth\textwidth}{#1}
}
\newcommand{\bodybox}[1]{% allows '\\' inside body of cv item (i.e. right column)
\parbox[t]{\bodywidth\textwidth}{#1}
}
%========%
% %
% BODY %
% %
%========%
\begin{document}
\thispagestyle{first}
\begin{flushleft}
{\Huge\bfseries\color{spartangreen} \name{} \orcid{\myorcid}}
\end{flushleft}
\bigskip
\begin{flushleft}
\pbox[t]{\textwidth}{%
Department of Linguistics, Languages, \emph{\&} Cultures\\
Michigan State University\\
East Lansing, MI 48824
}
\hfill
\pbox[t]{\textwidth}{%
\makebox[15pt][c]{\faPencil} \href{mailto:buccola@msu.edu}{\ttfamily buccola@msu.edu}\\
\makebox[15pt][c]{\faRocket} \href{https://brianbuccola.com/}{\ttfamily brianbuccola.com}\\
\makebox[15pt][c]{\faGithub} \href{https://github.com/brianbuccola}{\ttfamily brianbuccola}
}
\end{flushleft}
\bigskip
\section*{Professional positions}
\begin{cvsection}
2024-- & Associate Professor (with tenure), Department of Linguistics, Languages, \emph{\&} Cultures, Michigan State University.\\
2019--2024 & Assistant Professor (tenure system), Department of Linguistics, Languages, \emph{\&} Cultures, Michigan State University.\\
2017--2019 & \bodybox{%
Postdoctoral researcher, Laboratoire de sciences cognitives et psycholinguistique (LSCP), Centre national de la recherche scientifique (CNRS), École normale supérieure, Paris, France.
{\footnotesize PI: Emmanuel Chemla}
}\\
2015--2017 & \bodybox{%
Postdoctoral fellow, Language, Logic and Cognition Center, The Hebrew University of Jerusalem, Jerusalem, Israel.
{\footnotesize PIs: Luka Crnič and Yosef Grodzinsky}
}\\
\end{cvsection}
\section*{Visiting positions}
\begin{cvsection}
\datebox{%
2016\\
{\footnotesize (summer)}
} & \bodybox{%
Invited scholar, Institut Jean Nicod (IJN), Centre national de la recherche scientifique (CNRS), École normale supérieure, Paris, France.
{\footnotesize Sponsor: Benjamin Spector}
}\\
\end{cvsection}
\section*{Education}
\begin{cvsection}
2010--2015 & \bodybox{%
Ph.D., Linguistics, McGill University, Montreal, QC, Canada.\\
{\footnotesize Dissertation: ``Maximality in the Semantics of Modified Numerals''}\\
{\footnotesize Supervisory committee: Luis Alonso-Ovalle (co-chair), Bernhard Schwarz (co-chair), Michael Wagner}
}\\
2014 & \bodybox{%
Visiting student, Massachusetts Institute of Technology.
{\footnotesize Sponsor: Kai von Fintel}
}\\
2009--2010 & \bodybox{%
Qualifying Year Program, McGill University, Montreal, QC, Canada.\\
{\footnotesize (Permits strong candidates to make up gaps in their linguistics background by taking appropriate undergraduate courses.)}
}\\
2004--2008 & \bodybox{%
B.A., Classics, Honors College, Loyola University Chicago.\\
B.S., Mathematics, Honors College, Loyola University Chicago.
}\\
1999--2004 & Jesuit High School of New Orleans.\\
\end{cvsection}
\section*{Research}
\subsection*{Journal articles}
\begin{cvsection}
2023 & \fullcite{ma.etal2023laco}.\\
2023 & \fullcite{ma.etal2023jpr}.\\
2022 & \fullcite{dautriche.etal2022}.\\
2022 & \fullcite{kuhn.nicolas.buccola2022}.\\
2022 & \fullcite{buccola.kriz.chemla2022}.\\
2021 & \fullcite{buccola.kuhn.nicolas2021}.\\
2021 & \fullcite{buccola.crnic2021}.\\
2019 & \fullcite{buccola.chemla2019}.\\
2019 & \fullcite{crnic.buccola2019}.\\
2019 & \fullcite{buccola.haida2019oi}.\\
2019 & \fullcite{chemla.etal2019}.\\
2019 & \fullcite{chemla.buccola.dautriche2019}.\\
2018 & \fullcite{buccola.dautriche.chemla2018}.\\
2018 & \fullcite{buccola2018only}.\\
2016 & \fullcite{buccola.spector2016}.\\
2012 & \fullcite{schwarz.etal2012}.\\
\end{cvsection}
\subsection*{Book chapters}
\begin{cvsection}
in press & \fullcite{buccola2026num}.
\end{cvsection}
\subsection*{Proceedings papers}
\begin{cvsection}
2025 & \fullcite{buccola2025hodpsub}.\\
2024 & \fullcite{wang.buccola2024plc}.\\
2023 & \fullcite{wang.buccola2023wccfl}.\\
2023 & \fullcite{buccola.goodhue2023cls}.\\
2022 & \fullcite{buccola2022hopsalt}.\\
2020 & \fullcite{buccola.haida2020oi2salt}.\\
2017 & \fullcite{buccola.haida2017ac}.\\
2017 & \fullcite{buccola.haida2017sub}.\\
2016 & \fullcite{buccola2016sub}.\\
2015 & \fullcite{buccola2015nels}.\\
2013 & \fullcite{buccola2013fg}.\\
\end{cvsection}
\subsection*{Unpublished manuscripts}
\begin{cvsection}
2017 & \fullcite{buccola2017barenum}.\\
2013 & \fullcite{buccola2013eval2}.\\
2012 & \fullcite{buccola2012eval1}.\\
\end{cvsection}
\subsection*{Invited talks}
\begin{cvsection}
2024 & \fullcite{buccola2024chicagocolloq}.\\
2021 & \fullcite{buccola2021umasscolloq}.\\
2021 & \fullcite{buccola2021umassworkshop}.\\
2021 & \fullcite{buccola2021edinburghtalk}.\\
2021 & \fullcite{buccola2021edinburghlecture}.\\
2021 & \fullcite{buccola2021potsdam}.\\
2021 & \fullcite{buccola2021cle}.\\
2019 & \fullcite{buccola2019msu}.\\
2019 & \fullcite{buccola2019llf}.\\
2018 & \fullcite{buccola2018lscp}.\\
2017 & \fullcite{buccola2017linguae}.\\
2017 & \fullcite{buccola2017huji}.\\
2016 & \fullcite{buccola2016linguae}.\\
2016 & \fullcite{buccola2016llcc}.\\
2015 & \fullcite{buccola2015tau}.\\
2015 & \fullcite{buccola2015lush}.\\
\end{cvsection}
\subsection*{Invited commentaries}
\begin{cvsection}
2019 & Commentator on ``True clauses and false connectives'', talk presented by Karolina Krzyżanowska (University of Amsterdam), Paris-Amsterdam-London Logic Meetings of Young Researchers (PALLMYR) 12, École normale supérieure.\\
\end{cvsection}
\subsection*{Presentations}
\subsubsection*{Peer-reviewed conferences}
\begin{cvsection}
2024 & \fullcite{buccola2024hodpsubtalk}.\\
2024 & \fullcite{wang.buccola2024plctalk}.\\
2023 & \fullcite{wang.buccola2023wccflposter}.\\
2023 & \fullcite{buccola.goodhue2023clsposter}.\\
2022 & \fullcite{buccola2022hopsaltposter}.\\
canceled & \fullcite{buccola.haida2021oi2modinf}.\\
2021 & \fullcite{cong.buccola2021plc}.\\
2020 & \fullcite{ma.etal2020wow}.\\
2020 & \fullcite{buccola.haida2020oi2salttalk}.\\
2019 & \fullcite{buccola.kuhn.nicolas2019poster}.\\
2019 & \fullcite{buccola.haida2019monworkshop}.\\
2018 & \fullcite{anvari.buccola.haida2018subposter}.\\
2018 & \fullcite{anvari.etal2018miq}.\\
2017 & \fullcite{buccola.haida2017actalk}.\\
2016 & \fullcite{buccola.haida2016logicon}.\\
2016 & \fullcite{buccola2016logicon}.\\
2016 & \fullcite{buccola.haida2016subtalk}.\\
2016 & \fullcite{buccola2016uab}.\\
2015 & \fullcite{buccola2015subtalk}.\\
2015 & \fullcite{buccola2015sle}.\\
2014 & \fullcite{buccola2014nelsposter}.\\
2014 & \fullcite{buccola.sonderegger2014lsa}.\\
2013 & \fullcite{buccola.sonderegger2013phon}.\\
2013 & \fullcite{buccola2013fgtalk}.\\
\end{cvsection}
\subsubsection*{Local workshops}
\begin{cvsection}
2016 & \fullcite{buccola.haida2016eingedi}.\\
2014 & \fullcite{buccola2014tom}.\\
2013 & \fullcite{buccola2013mot}.\\
2012 & \fullcite{buccola2012tom}.\\
2011 & \fullcite{buccola2011tom}.\\
\end{cvsection}
\subsection*{Edited volumes}
\begin{cvsection}
2014 & \fullcite{buccola.etal2014}.\\
2013 & \fullcite{mckillen.buccola2013}.\\
\end{cvsection}
\subsection*{Dissertation}
\begin{cvsection}
2015 & \fullcite{buccola2015diss}.\\
\end{cvsection}
\section*{Teaching and advising}
\subsection*{Teaching}
\begin{cvsection}
Undergrad & LIN 401: Introduction to Linguistics, MSU (2019--).\\
& LIN 437: Semantics and Pragmatics, MSU (2019--).\\
& LIN 491: Special Topics, MSU (2024).\\
& LIN 499: Senior Thesis Research, MSU (2020--).\\
& LIN 499E: Senior Thesis Experiential Learning, MSU (2022).\\
& LING 201: Introduction to Linguistics, McGill University (2014).\\
Graduate & LIN 837: Adv.\ Studies in Semantics \emph{\&} Pragmatics, MSU (2020, 2021).\\
& LIN 837: Semantics and Pragmatics I, MSU (2022--).\\
& LIN 838: Semantics and Pragmatics II, MSU (2022--).\\
& LIN 891: Special Topics, MSU (2023, 2024).\\
& LIN 899: Independent Study, MSU (2022--).\\
\end{cvsection}
\subsection*{Advising}
\subsubsection*{Ph.D.~committee chair or co-chair}
\begin{cvsection}
in progress & Ahmed Mohamed, Shuyang Wei, Ellie Xia.\\
2025 & Yaxuan Wang. ``Presupposition, Competition, and Coherence: A Unified Approach to Partial Resolution and \emph{De Re} Presupposition''.\\
2024 & Philip Pellino. ``Contrarian \emph{hardly} and the Approximative Adverbs''.\\
2024 & Shannon Cousins. ``How to Begin: Toward a General Theory of Aspectual Verbs''.\\
2023 & Ye Ma. ``The Processing of Aspectual Verbs in Mandarin Chinese''. (co-chair with Alan Beretta)\\
2021 & Yan Cong. ``Competition in Natural Language Meaning: The Case of Chinese Adjective Constructions and Beyond''.\\
\end{cvsection}
\subsubsection*{Ph.D.~committee member}
\begin{cvsection}
in progress & Mofart Ayiega, Adam Barnhardt, Xiaoke Bu, Annan Kirk, John Ryan.\\
2026 & Jingying Xu. ``Telicity Judgments in English and Mandarin: Crosslinguistic and Developmental Evidence''.\\
2025 & Komeil Kolahi Ahari. ``An Antisymmetric Syntax of Word Order in Farsi: The Predicate Domain''.\\
2024 & Jason Smith. ``The Clausal Structure of Mende''.\\
2019 & Ni-La Lê. ``Vietnamese Pluralizers' Properties and their Effects on the Structure and the Acquisition of Vietnamese Noun Phrases''.\\
\end{cvsection}
\subsubsection*{Ph.D.~comprehensive paper advisor}
\begin{cvsection}
2026 & Ahmed Mohamed. ``Effects of Information Structure, Definiteness, and Homogeneity on Turkish Bare Nominal Interpretations''.\\
2023 & Yaxuan Wang. ``Speaker-Oriented Additives''.\\
2023 & Philip Pellino. ``The Semantics of Contrarian HARDLY''.\\
2022 & Yaxuan Wang. ``Presupposition Projection Out of Quantifiers: An Experimental Study in Mandarin''.\\
2022 & Shannon Cousins. ``Aspectual Verb Alternations: Implications of an Integrated Theory''.\\
2021 & Ye Ma. ``A Self-Paced Reading Study of Context Effects in the Processing of Aspectual Verbs''.\\
2020 & Yan Cong. ``Degree Interpretations and their Competitions''.\\
\end{cvsection}
\subsubsection*{M.A.~committee member}
\begin{cvsection}
2025 & Emily Duggan. ``\emph{Lesbian} vs.~\emph{Dyke}: An Examination of the Differences in Social Meaning between Two Queer Identity Terms''.\\
2021 & Daniel Greeson. ``Revisiting Variation Between Null Subject Languages: The View from Overt Subject Pronouns''.\\
2020 & Isaac Sarver. ``A Systematic Evaluation of Computational Models of Phonotactics''.
\end{cvsection}
\subsubsection*{B.A.~thesis advisor}
\begin{cvsection}
2024 & Destiny Hayes. ``Honorification in Korean''.\\
2023 & CJ Sivak. ``Yes? No? Rising Response Particles in English''.\\
2022 & Kyle Haling. ``Applying and Extending Formal Pragmatics to the Courtroom''.\\
2021 & Zachary Sneed. ``Investigating Learnability in Semantic Universals Through Artificial Means''.
\end{cvsection}
\subsubsection*{Undergraduate Honors Option advisor}
\begin{cvsection}
2023 & Dan Ke Le, Kira Vander Molen, Holly Ryan\\
2022 & CJ Sivak\\
2020 & Claudia Chen, Sean Connelly, Yash Sharma, David Sherwood\\
\end{cvsection}
\subsubsection*{External committee member}
\begin{cvsection}
2020 & Émile Enguehard. Member, \emph{Comité de suivre} (progress report committee), École normale supérieure, Paris, France.
\end{cvsection}
\section*{Service}
\subsection*{To the profession}
\subsubsection*{Editorial roles}
\begin{cvsection}
2025-- & Associate Editor, \emph{Journal of Semantics}.\\
2021-- & Editorial Board, \emph{Natural Language Semantics}.\\
2016-- & Editorial Board, \emph{Semantics and Pragmatics}.\\
\end{cvsection}
\subsubsection*{Reviewing}
\begin{cvsection}
Grants & Israel Science Foundation (ISF).\\
Books & MIT Press, University of Toronto Press.\\
Journals & \emph{Acta Linguistica Academica}; \emph{Glossa}; \emph{Glossa Psycholinguistics}; \emph{Journal of Logic, Language and Information}; \emph{Journal of Semantics}; \emph{Language and Linguistics Compass}; \emph{Linguistics and Philosophy}; \emph{Mind \& Language}; \emph{Natural Language Semantics}; \emph{Semantics and Pragmatics}; \emph{Snippets}.\\
\datebox{%
Conferences\\
{\footnotesize (regular)}
} & Amsterdam Colloquium, Canadian Linguistics Association, North East Linguistic Society (NELS), Semantics and Linguistic Theory (SALT), Sinn und Bedeutung (SuB), West Coast Conference on Formal Linguistics (WCCFL).\\
\datebox{%
Conferences\\
{\footnotesize (ad hoc)}
} & Experimental approaches to language universals in structure and meaning (ExUni), GLOW in Asia, Israel Association for Theoretical Linguistics (IATL), Seoul International Conference on Generative Grammar (SICOGG).\\
\end{cvsection}
\subsection*{To Michigan State University}
\subsubsection*{College of Arts and Letters}
\begin{cvsection}
2020, 2021 & Member, CAL Awards Committee.\\
2020--2021 & Member, College Undergraduate Committee (CUC).\\
\end{cvsection}
\subsubsection*{Department of Linguistics, Languages, \& Cultures}
\begin{cvsection}
2023--2024 & Member, Department Undergraduate Curriculum Committee\\
2022, 2023 & Member, Faculty Evaluation Committee (2-year term)\\
\end{cvsection}
\subsubsection*{Linguistics program}
\begin{cvsection}
2026-- & Director, Linguistics Undergraduate Program (elected position).\\
2022--2025 & Convenor for Linguistics program (elected position; 3 years total).\\
2024 & Member, Summer fellowship review subcommittee.\\
2024 & Member, Graduate admissions subcommittee (for Fall 2024).\\
2022-- & Member, Melchert Endowment Fund Committee.\\
2019-- & Director, MSU Semantics and Pragmatics Lab.\\
2021 & Member, Graduate admissions subcommittee (for Fall 2021).\\
2020 & Member, Curriculum review subcommittee.\\
2020 & Member, Summer fellowship review subcommittee.\\
2020 & Member, Graduate admissions subcommittee (for Spring 2021).\\
2019--2020 & Member, Handbook review sub-committee.\\
2019 & Member, Search committee for fixed-term position in Linguistics (general linguistics, cognitive science).\\
2019 & Member, Graduate admissions subcommittee (for Spring 2020).\\
\end{cvsection}
\subsection*{To previous institutions}
\begin{cvsection}
2018--2019 & Amazon Mechanical Turk (MTurk) administrator, École normale supérieure (LSCP and IJN).\\
2015--2017 & Organizer (with Andreas Haida), LLCC Semantics-Pragmatics Research Group, The Hebrew University of Jerusalem.\\
2015 & Department publications manager, McGill University.\\
2013--2015 & Organizing committee, Syntax-Semantics Research Group, McGill University.\\
2012--2014 & Co-editor, McGill Working Papers in Linguistics (McGWPL).\\
2013 & Organizing committee, Exploring the Interfaces 2: Implicatures, Alternatives, and the Semantics-Pragmatics Interface (ETI~2), McGill University.\\
2012 & Graduate student representative for syntax job hire, McGill University.\\
2011--2012 & Co-editor, McGill Linguistics Blog (McLing).\\
\end{cvsection}
\section*{Awards}
\begin{cvsection}
2024 & \bodybox{%
\award{Arts \& Letters College Fund for International Travel, MSU}{\$1000}\\
{\footnotesize Travel award from MSU College of Arts \& Letters for international travel.}
}\\
2024 & \bodybox{%
\award{Special Foreign Travel Fund, MSU}{\$500}\\
{\footnotesize Travel award from MSU International Studies and Programs for international travel.}
}\\
2022 & \bodybox{%
\award{Arts \& Letters College Fund for International Travel, MSU}{\$1000}\\
{\footnotesize Travel award from MSU College of Arts \& Letters for international travel.}
}\\
2022 & \bodybox{%
\award{Special Foreign Travel Fund, MSU}{\$400}\\
{\footnotesize Travel award from MSU International Studies and Programs for international travel.}
}\\
2014 & \bodybox{%
\award{Faculty of Arts Graduate Student Teaching Award, McGill University}{\$500}\\
{\footnotesize Nomination-only award, which ``recognizes outstanding teaching in the Faculty by graduate students.''}
}\\
2014 & \bodybox{%
\award{Centre for Research on Brain, Language and Music (CRBLM) Graduate Travel Award, McGill University}{\$700}\\
{\footnotesize Application-based award given to CRBLM student members to present their scientific results at an international conference.}
}\\
2013 & \bodybox{%
\award{Graduate Student Travel Award, McGill University}{\$1,500}\\
{\footnotesize A ``competitive award designed to support graduate student travel by both MA and PhD students for the purposes of research and the dissemination of research.''}
}\\
2013 & \bodybox{%
\award{Lara Riente Memorial Prize in Linguistics, Department of Linguistics, McGill University}{\$500}\\
{\footnotesize ``Awarded by the Faculty of Arts Scholarships committee on the recommendation of the Department of Linguistics on the basis of high academic standing to a graduate or an undergraduate student enrolled in a full-time degree program in Linguistics.''}
}\\
2012--2013 & \bodybox{%
\award{Cremona Memorial Fellowship in Linguistics, Department of Linguistics, McGill University}{\$8,479}\\
{\footnotesize ``Awarded by the Department of Linguistics to an outstanding graduate student registered in the Ph.D.\ or M.A.\ program in Linguistics.''}
}\\
2012 & \bodybox{%
\award{NASSLLI full scholarship}{\$410}\\
{\footnotesize Application-based stipend covering tuition, fees, accommodation, and travel.}
}\\
2004--2008 & \bodybox{%
\award{National Merit Finalist Scholarship, Loyola University Chicago}{about \$100,000}\\
{\footnotesize Full-tuition scholarship awarded to students who have been named National Merit finalists by the National Merit Corporation.}
}\\
\end{cvsection}
\section*{Honors and associations}
\begin{cvsection}
2016 {\footnotesize (joined)} & Israel Association for Theoretical Linguistics (IATL).\\
2015 {\footnotesize (joined)} & Societas Linguistica Europaea (SLE).\\
2012 {\footnotesize (joined)} & Centre for Research on Brain, Language and Music (CRBLM), Montr\'{e}al, Canada.\\
2012 {\footnotesize (joined)} & Linguistic Society of America (LSA).\\
2008 {\footnotesize (inducted)} & Phi Beta Kappa.\\
2004 & National Merit Scholar.\\
\end{cvsection}
\section*{Public outreach}
\begin{cvsection}
2024 & Panelist, \href{https://museum.msu.edu/events/the-syntax-of-science/}{``The Syntax of Science''}. One of three invited panelists, along with artist-in-residence Violeta López López and MSU nuclear astrophysicist Artemis Spyrou, for a discussion and audience Q\&A session on the connections between art, astrophysics, and linguistics, held at the MSU Facility for Rare Isotope Beams (FRIB).
\end{cvsection}
\end{document}