-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStevenMoranCV.tex
executable file
·2312 lines (1747 loc) · 122 KB
/
StevenMoranCV.tex
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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[11pt]{article}
%\usepackage[american]{babel}
%\usepackage{times}
%\usepackage{palatino} % rm font
%\usepackage{helvet} % sf font
%\usepackage{courier} % tt font
\usepackage[hyphens]{url}
\usepackage[final,colorlinks=true,linkcolor=black,citecolor=black,urlcolor=blue]{hyperref}
\usepackage{verbatim}
% \usepackage{hyperref}
%%MO: NSF requires 2.5cm margins and at least 10pt
% vertical spacing,
\voffset0in
\topmargin0in
\headheight0in
\headsep0in
\textheight9.0in
\footskip.4in
% horizontal spacing
\hoffset0in
\oddsidemargin0in
\evensidemargin0in
% \columnsep.1in (doesn't matter for NSF)
\marginparsep0in
\textwidth6.5in
\parindent 0in
% avoid widow lines
\widowpenalty=1000
\renewcommand{\baselinestretch}{1.0}
\newcommand{\hangpara}{
\setlength{\parindent}{0in} % don't indent new paragraphs
\hangindent=0.42in % indent all subsequent lines
}
\pagenumbering{arabic}
\begin{document}
% \pagestyle{empty}
\begin{center}
{\bf CURRICULUM VITAE\\Steven Moran}\\
\vskip 12pt
\begin{tabular}{ll}
% \begin{tabular}{p{6cm}p{10cm}}
% Institut f{\"u}r Vergleichende Sprachwissenschaft & & \\
% Plattenstrasse 54, Raum 206 & & steven.moran at uzh.ch\\
% Universit{\"a}t Zurich & & \url{http://www.spw.uzh.ch/moran.html}\\
% 8032 Zurich, Schweiz & & +41 44 63 40221\\
%
% Department of Comparative Linguistics & & \href{mailto:[email protected]}{[email protected]} \\
% University of Zurich & & +41 44 63 40221 \\
% Plattenstrasse 54, Room 206 & & \small\url{orcid.org/0000-0002-3969-6549} \\
% 8032 Zurich, Switzerland & & \\
% Language and Space Lab & & \href{mailto:[email protected]}{[email protected]} \\
% University of Zurich & & \small\url{orcid.org/0000-0002-3969-6549} \\
% Freiestrasse 16 & & \\
% 8032 Zurich, Switzerland & & \\
Linguistic Research Infrastructure & steven.moran at uzh.ch \\
University of Zurich & \href{https://orcid.org/0000-0002-3969-6549}{orcid.org/0000-0002-3969-6549} \\
Andreasstrasse 15, 4.78 & \href{https://scholar.google.com/citations?user=PpTOh08AAAAJ\&hl=en}{Google scholar profile} \\
8050 Zurich, Switzerland & \\
\\
Department of Anthropology & steven.moran at miami.edu \\
University of Miami & +1 305 284 2380 \\
Merrick Building, 101B & \\
5202 University Dr. & \\
Coral Gables, FL 33146, USA & \\
\\
Institute of Biology & steven.moran at unine.ch \\
University of Neuchâtel & +41 32 718 24 30 \\
Rue Emile-Argand 11, G B35 & \href{https://www.unine.ch/evolang/home/team/steven-moran.html}{Lab homepage} \\
2000 Neuchâtel, Switzerland & \\
% & & \\
% \small\url{orcid.org/0000-0002-3969-6549}
% \small\url{https://www.unine.ch/evolang/home/team/steven-moran.html} & & \\
% \small\url{https://scholar.google.com/citations?user=PpTOh08AAAAJ&hl=en} & & \\
% \small\url{https://github.com/bambooforest/} & & \\
% \small\url{https://www.linkedin.com/in/steven-moran-b59b3b3/} & & \\
% \small\url{https://twitter.com/stivits} & & \
\end{tabular}
\end{center}
\vskip 12pt
\begin{flushleft}
{\bf EMPLOYMENT}
\end{flushleft}
\begin{tabular}{lp{5.5in}}
\bf 2024-- & {\bf University of Zurich} \\
& Scientific director, Linguistic Research Infrastructure (\href{https://www.liri.uzh.ch/}{LiRI}) \\
\bf 2023-- & {\bf University of Miami} \\
& Associate professor, Department of Anthropology \\
\bf 2020--2025 & {\bf University of Neuchâtel} \\
& Assistant professor, Institute of Biology \\
& Director of the Language Evolution Lab \\
& Principal investigator of Swiss National Science Foundation project: \href{https://data.snf.ch/grants/grant/186841}{EVOPHON} \\
% PI of Swiss National Science Foundation funded project: EVOPHON.\\
% Laboratoire d'évolution du langage
\bf 2012--2020 & {\bf University of Zurich} \\
% & Postdoctoral researcher Language and Space Lab (2020). Postdoctoral researcher and instructor in the Department of Comparative Linguistics (2012--2019). Postdoctoral researcher and technical project manager for the ACQDIV project (2014--2019). \\
& Postdoc in Language and Space Lab (2020) \\
& Postdoc and instructor in Department of Comparative Linguistics (2012--2019) \\
& Postdoc and technical project manager in ERC ACQDIV (2014--2019) \\
% \bf 2013--2014 & {\bf Philipps Universit{\"a}t Marburg} \\
\bf 2013--2014 & {\bf University of Marburg} \\
% & Postdoctoral researcher and programmer in the Quantitative Language Comparison Research Unit in the Forschungszentrum Deutscher Sprachatlas. \\
& Postdoc in ERC QuantHistLing, Forschungszentrum Deutscher Sprachatlas \\
% \bf 2010--2013 & {\bf Ludwig-Maximilians-Universit{\"a}t M{\"u}nchen} \\
\bf 2010--2012 & {\bf University of Munich} \\
% & Researcher and programmer in the Quantitative Language Comparison Research Unit. \\
& Research assistant in ERC QuantHistLing \\
\bf 2005--2010 & {\bf University of Washington} \\
% & Technical project manager for Phonetics Information Base and Lexicon (2009; UW Royalty Research Fund); Research assistant on Implementing the GOLD Community of Practice: Laying the Foundations for a Linguistics Cyberinfrastructure (2008; National Science Foundation (NSF) Grant BCS--0720670); User interface designer for UW Information Technology (2007--2008); Web programmer and Computer Assisted Language Learning specialist for UW Language Learning Center (2005--2007) \\
& Instructor in Department of Linguistics (2007--2010) \\
& Technical project manager in UW RRF PHOIBLE (2009) \\
& Research assistant in NSF GOLD (2008) \\
& Research assistant at UW Information Technology (2007--2008) \\ % UX programmer
& Research assistant at UW Language Learning Center (2005--2007) \\
\bf 2001--2005 & {\bf Eastern Michigan University} \\
& Technical project manager in NSF E-MELD (2003--2005) \\
& Research assistant and editor at Linguist List (2001--2003) \\
\end{tabular}
\clearpage
% \vskip 12pt
\begin{flushleft}
{\bf EDUCATION}
\end{flushleft}
\begin{tabular}{ll}
\bf 2012 & University of Washington, Seattle \textbf{Ph.D.\ in Linguistics} \\
& Dissertation: \textit{Phonetics Information Base and Lexicon} \href{https://digital.lib.washington.edu/researchworks/handle/1773/22452}{[pdf]} \\
& Committee: Emily Bender (Co-chair), Richard Wright (Co-chair), Scott Farrar, Sharon Hargus \\
\bf 2006 & Eastern Michigan University, \textbf{M.A.\ in Linguistics} \\
& Thesis: {\it A Grammatical Sketch of Western Sisaala} \href{http://commons.emich.edu/theses/73/}{[pdf]}\\
& Committee: Verónica Grondona (Chair), Edward Garrett \\
\bf 2006 & Eastern Michigan University, \textbf{M.A.\ Certificate in Language Technology} \\
\bf 2001 & Eastern Michigan University, \textbf{B.A.\ with honors in German, Linguistics and TESOL} \\
\bf 2000 & Sprachaufenthalt, Volkshochschule, Karlsruhe, Germany \\
\bf 1999 & Austauschprogramm Deutsch in Graz, Graz, Austria \\
\end{tabular}
\vskip 18pt
\begin{flushleft}
{\bf JOURNAL PUBLICATIONS}
\end{flushleft}
% \vskip 6pt
\hangpara
{\bf In press.}\hspace{1ex}Silva, Carlos and Steven Moran. Consonant stability in Portuguese-based creoles. \textit{Diachronica}.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Moran, Steven$^*$, Elad Eisen$^*$, Dmitry Nikolaev$^*$ and Eitan Grossman. Operationalizing borrowability: phonological segments as a case study. \textit{Language}, 100(4), 671--698. $^*$Shared first authorship. \url{https://dx.doi.org/10.1353/lan.2024.a947038}.% Preprint: \url{https://www.researchgate.net/publication/380487963_Operationalizing_borrowability_phonological_segments_as_a_case_study}.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Gallot, Quentin, Cassandre Depriester, Steven Moran and Klaus Zuberbühler. A non-human primate combinatorial system for long-distance communication. \textit{iScience}, 27(11), 111172. \url{https://doi.org/10.1016/j.isci.2024.111172}.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Ekström, Axel G., Charlotte Gannon, Jens Edlund, Steven Moran$^*$ and Adriano R. Lameira$^*$. Chimpanzee utterances refute purported missing links for novel vocalizations and syllabic speech. \textit{Scientific Reports}, 14, 17135. \url{https://doi.org/10.1038/s41598-024-67005-w}. $^*$Shared senior authorship.
% Prepint: \url{https://doi.org/10.31234/osf.io/359bd}.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Benitez-Burraco, Antonio and Steven Moran. Editorial: The adaptive value of languages: non-linguistic causes of language diversity, volume II. \textit{Frontiers in Psychology}, 15. \url{https://doi.org/10.3389/fpsyg.2024.1387290}.
\vskip 6pt
\hangpara
{\bf 2023}\hspace{1ex}Lameira, Adriano and Steven Moran. Life of p: A consonant older than speech. \textit{BioEssays}, 45(4), 2200246. \url{https://doi.org/10.1002/bies.202200246}.
\hangpara
\vskip 6pt
{\bf 2023}\hspace{1ex}Moran, Steven, Shelece Easterday and Eitan Grossman. Current research in phonological typology. \textit{Linguistic Typology}, 27(2), 223--243. \url{https://doi.org/10.1515/lingty-2022-0069}.
\hangpara
\vskip 6pt
{\bf 2022}\hspace{1ex}Lester, Nicholas A.$^*$, Steven Moran$^*$, Aylin C. K{\"u}ntay, Shanley Allen, Barbara Pfeiler and Sabine Stoll. Detecting structured repetition in child-surrounding speech: Evidence from maximally diverse languages. \textit{Cognition}, 221, 104986. \url{https://doi.org/10.1016/j.cognition.2021.104986}. $^*$Shared first authorship.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}Levshina, Natalia and Steven Moran. Efficiency in human languages: corpus evidence for universal principles. \textit{Linguistics Vanguard}, 7, S3. \url{https://doi.org/10.1515/lingvan-2020-0081}.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}Moran, Steven, Nicholas A. Lester and Eitan Grossman. Inferring recent evolutionary changes in speech sounds. \textit{Philosophical Transactions of the Royal Society B: Biological Sciences}, 376: 20200198. \url{https://doi.org/10.1098/rstb.2020.0198}.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}Urban, Matthias and Steven Moran. Altitude and the distributional typology of language structure: ejectives and beyond. \textit{PLoS ONE}, 16(2): e0245522. \url{https://doi.org/10.1371/journal.pone.0245522}.
\hangpara
\vskip 6pt
{\bf 2020}\hspace{1ex}Moran, Steven, Eitan Grossman and Annemarie Verkerk. Investigating diachronic trends in phonological inventories using BDPROTO. \textit{Language Resource and Evaluation}, 55, 79--103. \url{https://doi.org/10.1007/s10579-019-09483-3}.
\hangpara
\vskip 6pt
{\bf 2019}\hspace{1ex}Blasi, Dami{\'a}n E.$^*$, Steven Moran$^*$, Scott R. Moisik, Paul Widmer, Dan Dediu and Balthasar Bickel. Human sound systems are shaped by post-Neolithic changes in bite configuration. \textit{Science}, 363, 6432. \url{http://dx.doi.org/10.1126/science.aav3218}. $^*$Shared first authorship. % \url{https://science.sciencemag.org/content/363/6432/eaav3218}.
\hangpara
\vskip 6pt
{\bf 2018}\hspace{1ex}Moran, Steven, Dami{\'a}n E. Blasi, Robert Schikowski, Aylin C. K{\"u}ntay, Barbara Pfeiler, Shanley Allen and Sabine Stoll. A universal cue for grammatical categories in the input to children: frequent frames. \textit{Cognition}, 175, 131--140. \url{https://doi.org/10.1016/j.cognition.2018.02.005}. % \url{https://www.sciencedirect.com/science/article/pii/S0010027718300362}.
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}Benitez-Burraco, Antonio and Steven Moran. Editorial: The Adaptive Value of Languages: Non-Linguistic Causes of Language Diversity. \textit{Frontiers in Psychology}, 9. \url{https://doi.org/10.3389/fpsyg.2018.01827}.
\hangpara
\vskip 6pt
{\bf 2016}\hspace{1ex}Moran, Steven. Commentary: Issues of time, tone, roots and replicability. \textit{Journal of Language Evolution}, 1(1), 73--76. \url{https://doi.org/10.1093/jole/lzv011}
\vskip 6pt
\hangpara
{\bf 2015}\hspace{1ex}Stoll, Sabine, Taras Zakharko, Steven Moran, Robert Schikowski and Balthasar Bickel. Syntactic mixing across generations in an environment of community-wide bilingualism. \textit{Frontiers in Psychology}. Special Topic: Acquisition in Contact Research, Shannessy Carmel (ed). \url{https://doi.org/10.3389/fpsyg.2015.00082}. %\url{http://journal.frontiersin.org/Journal/10.3389/fpsyg.2015.00082/abstract}
\hangpara
\vskip 6pt
{\bf 2015}\hspace{1ex}McCrae, John, Steven Moran, Sebastian Hellmann and Martin Brümmer. Multilingual Linked Open Data. \textit{Semantic Web}, 6(4), 315--317. \url{https://doi.org/10.3233/SW-150178}. \url{http://www.semantic-web-journal.net/system/files/swj1042\_0.pdf}.
\vskip 6pt
\hangpara
{\bf 2013}\hspace{1ex}Moran, Steven and Jelena Proki{\'c}. Investigating the Relatedness of the Endangered Dogon Languages. \textit{Literary And Linguistic Computing}, 28(4) 676--691. Oxford University Press. \url{https://doi.org/10.1093/llc/fqt061}
\vskip 6pt
\hangpara
{\bf 2012}\hspace{1ex}Moran, Steven, Daniel McCloy and Richard Wright. Revisiting population size vs phoneme inventory size. {\it Language}, 88(4): 877--893. \url{https://doi.org/10.1353/lan.2012.0087}. % \url{http://muse.jhu.edu/journals/language/v088/88.4.moran.html}
\vskip 6pt
\hangpara
{\bf 2012}\hspace{1ex}Cysouw, Michael, Dan Dediu and Steven Moran. Comment on ``Phonemic Diversity Supports a Serial Founder Effect Model of Language Expansion from Africa''. \textit{Science}, 335(6069):657. \url{https://doi.org/10.1126/science.1208841}.
% \url{http://www.sciencemag.org/content/335/6069/657.2.full}
% 10.1126/science.1208841.
% 10 February 2012.
\vskip 20pt
\begin{flushleft}
{\bf CONFERENCE \& WORKSHOP PROCEEDINGS (PEER-REVIEWED)}
\end{flushleft}
\hangpara
{\bf 2024}\hspace{1ex}Friedrichs, Daniel, Monica Lancheros, Sam Kirkham, Lei He, Andrew Clark, Clemens Lutz, Volker Dellwo and Steven Moran. Temporal Co-registration of Simultaneous Electromagnetic Articulography and Electroencephalography for Precise Articulatory and Neural Data Alignment. In Proceedings of Interspeech 2024, 3120--3124, Kos, Greece. \url{http://doi.org/10.21437/Interspeech.2024-1299}. % Online: \url{https://www.isca-archive.org/interspeech_2024/friedrichs24_interspeech.pdf}.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Samardžić, Tanja, Ximena Gutierrez, Christian Bentz, Steven Moran and Olga Pelloni. A Measure for Transparent Comparison of Linguistic Diversity in Multilingual NLP Data Sets. Findings of the Association for Computational Linguistics (NAACL 2024), 3367--3382, Mexico City, Mexico. \url{https://aclanthology.org/2024.findings-naacl.213/}. \url{https://doi.org/10.18653/v1/2024.findings-naacl.213}.% Preprint: \url{https://arxiv.org/abs/2403.03909}. % June 16--21, Mexico City, Mexico.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Friedrichs, Daniel, Axel G. Ekström, Sam Kirkham, and Steven Moran. Anatomical correlates of articulatory ranges of motion: An EMA study. Proceedings of FONETIK (2024), 123--128, Stockholm, Sweden. \url{https://doi.org/10.5281/zenodo.11396098}. % June 3–5, 2024
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Moran, Steven, Sam Kirkham, Daniel Friedrichs, David Strait, and Axel Ekström. Vocal tract proportions and the evolution of speech: New data to answer old questions. Proceedings of FONETIK (2024), 109--114, Stockholm, Sweden. \url{https://doi.org/10.5281/zenodo.11396092}.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Ekström, Axel G., Margarita Briseño-Jaramillo, Carla Pascual-Guàrdia, Melissa Berthet, Kayla Sward, Auriane Le Floch, Franziska Wegdell, Alban Lemasson, Julia Fischer, Adrian Soldati, Daniel Friedrichs, Serge Wich, Sonja Holmer, Alexandra B. Bosshard, Lauren Halenar-Price, Adwait Desphande, Brian M. Shearer, Steven Moran and Jens Edlund. Why only a ``great'' primate discovered speech: A progress report on evolving vocal repertoires. Proceedings of FONETIK (2024), 101--108, Stockholm, Sweden. \url{https://doi.org/10.5281/zenodo.11396090}.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Chodroff, Eleanor, Blaž Pažon, Annie Baker and Steven Moran. Phonetic Segmentation of the UCLA Phonetics Lab Archive. Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024), 12724--12733, Turin, Italy. \url{https://aclanthology.org/2024.lrec-main.1114}. % Preprint: \url{https://doi.org/10.48550/arXiv.2403.19509}.% May 20-25, Turin, Italy.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Forkel, Robert, Daniel Swanson and Steven Moran. Converting legacy data to CLDF: A FAIR exit strategy for linguistic web apps. Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024), 3978--3982, Turin, Italy. \url{https://aclanthology.org/2024.lrec-main.353}.
% May 20--25, Turin, Italy.
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Ekstr{\"o}m, Axel G., Steven Moran. What phonetics has to say about Neanderthal (\textit{H. Neanderthalensis}) speech capacities. In Proceedings of the International Conference on the Evolution of Language (EVOLANG XV), Madison, WI, USA. \url{https://evolang2024.github.io/proceedings/paper.html?nr=54}.
% May 18--21, Madison, WI, USA. https://evolang2024.github.io/proceedings/paper.html?nr=54
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Ekstr{\"o}m, Axel G., Lara Nellissen, Tatiana Bortalato, Catherine Crockford, Jens Edlund, Shelly Masi, Klaus Zuberb{\"u}hler, Adriano R. Lameira, Roman W. Wittig, Sven Grawunder and Steven Moran. Phonetic properties of chimpanzee, gorilla, and orangutan hoots tell a uniform story – and point to new frontiers. In Proceedings of the International Conference on the Evolution of Language (EVOLANG XV), Madison, WI, USA. \url{https://evolang2024.github.io/proceedings/paper.html?nr=102}.
% May 18--21, Madison, WI, USA. https://evolang2024.github.io/proceedings/paper.html?nr=102
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Everett, Caleb, Steven Moran and Axel G. Ekstr{\"o}m. The phoneme as cognitive technology. In Proceedings of the International Conference on the Evolution of Language (EVOLANG XV), Madison, WI, USA. \url{https://evolang2024.github.io/proceedings/paper.html?nr=11}.
% May 18--21, Madison, WI, USA. https://evolang2024.github.io/proceedings/paper.html?nr=11
\vskip 6pt
\hangpara
{\bf 2024}\hspace{1ex}Vaughan-Williams, Katherine, Steven Moran and Sam Kirkham. Dimensions of structure and variability in the human vocal tract. In Proceedings of the 13th International Seminar on Speech Production (ISSP 2024), 274--277, Autrans, France. \url{https://www.isca-archive.org/issp_2024/vaughanwilliams24_issp.pdf}.
% 10.21437/issp.2024-69
% May 13-17
% https://issp24.sciencesconf.org
\vskip 6pt
\hangpara
{\bf 2023}\hspace{1ex}Ekstr{\"o}m, Axel G., Steven Moran, Johan Sundberg and Adriano R. Lameira. PREQUEL: Supervised phonetic approaches to analyses of great ape quasi-vowels. In Proceedings of the 20th International Congress of Phonetic Sciences (ICPhS 2023), 3100--3104, Prague, Czech Republic. \url{https://drive.google.com/file/d/15U2l2y4_-9lyZAgmiccQYXYj9zBi_CAu/view}. Preprint: \url{https://psyarxiv.com/8aeh4/}.
\vskip 6pt
\hangpara
{\bf 2023}\hspace{1ex}Jiang, Zifan, Adrian Soldati, Isaac Schamberg, Adriano R. Lameira and Steven Moran. Automatic Sound Event Detection and Classification of Great Ape Calls Using Neural Networks. In Proceedings of the 20th International Congress of Phonetic Sciences (ICPhS 2023), 3100--3104, Prague, Czech Republic. \url{https://drive.google.com/file/d/15U2l2y4_-9lyZAgmiccQYXYj9zBi_CAu/view}. Preprint: \url{https://arxiv.org/abs/2301.02214}.
\vskip 6pt
\hangpara
{\bf 2022}\hspace{1ex}Moran, Steven, Quentin Gallot, Auriane Le Floch, Marco Maiolini, Adrian Soldati, and Klaus Zuberbühler. Linguistic laws in primate vocal communication. In A. Ravignani et al.\ (Eds.), Proceedings of the Joint Conference on Language Evolution (JCoLE), 506--513, Kanazawa, Japan. \url{https://evolang.org/jcole2022/proceedings/jcole2022_proceedings.pdf}.
\vskip 6pt
\hangpara
{\bf 2022}\hspace{1ex}Moran, Steven, Marco Maiolini and Adriano Lameira. Great ape vocal repertoires are all similar in size: now what? In A. Ravignani et al.\ (Eds.), Proceedings of the Joint Conference on Language Evolution (JCoLE), 515--516, Kanazawa, Japan. \url{https://evolang.org/jcole2022/proceedings/jcole2022_proceedings.pdf}.
\vskip 6pt
\hangpara
{\bf 2022}\hspace{1ex}Moran, Steven, Christian Bentz, Ximena Gutierrez-Vasques, Olga Sozinova and Tanja \\ Samardžić. TeDDi Sample: Text Data Diversity Sample for Language Comparison and Multilingual NLP. In Proceedings of the 13th Conference on Language Resources and Evaluation (LREC 2022), 1150--1158. \url{http://www.lrec-conf.org/proceedings/lrec2022/pdf/2022.lrec-1.123.pdf}.
\vskip 6pt
\hangpara
{\bf 2020}\hspace{1ex}Lester, Nicholas A., Balthasar Bickel, Steven Moran and Sabine Stoll. Speech Rates Differentiate Nouns and Verbs in Child-Surrounding and Child-Produced Speech: Evidence from Chintang. In M. M. Brown \& A. Kohut (Eds.), Proceedings 44th Annual Boston University Conference on Language Development (BUCLD), 280--293. Somerville, MA: Cascadilla Press. \url{http://www.lingref.com/bucld/44/BUCLD44-23.pdf}.
\vskip 6pt
\hangpara
{\bf 2020}\hspace{1ex}Grossman, Eitan, Elad Eisan, Dmitry Nikolaev and Steven Moran. SegBo: A Database of Borrowed Sounds in the World's Languages. In Proceedings of the Twelfth International Conference on Language Resources and Evaluation (LREC 2020), 5316--5322. May 13--15, Marseille, France. \url{http://www.lrec-conf.org/proceedings/lrec2020/pdf/2020.lrec-1.654.pdf}.
\vskip 6pt
\hangpara
{\bf 2020}\hspace{1ex}Jancso, Anna*, Steven Moran* and Sabine Stoll. The ACQDIV Corpus Database and Aggregation Pipeline. In Proceedings of the Twelfth International Conference on Language Resources and Evaluation (LREC 2020), 156--165. May 13--15, Marseille, France. \url{http://www.lrec-conf.org/proceedings/lrec2020/pdf/2020.lrec-1.20.pdf}. *Shared first authorship.
\vskip 6pt
\hangpara
{\bf 2020}\hspace{1ex}Grossman, Eitan, Elad Eisan, Dmitry Nikolaev and Steven Moran. Revisiting the Uniformitarian Hypothesis: Can we detect recent changes in the typological frequencies of speech sounds? In Proceedings of the 13th International Conference on the Evolution of Language (EVOLANG 2020). \url{https://brussels.evolang.org/proceedings/papers/EvoLang13_paper_182.pdf} % April 14--17, Brussels, Belgium.
\vskip 6pt
\hangpara
{\bf 2019}\hspace{1ex}Loukatou, Georgia R., Steven Moran, Dami{\'a}n E. Blasi, Sabine Stoll and Alejandrina Cristia. Is word segmentation child's play in all languages? In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, 3931--3937. July 28 -- August 2, Florence, Italy. \url{https://www.aclweb.org/anthology/P19-1383}.
\vskip 6pt
\hangpara
{\bf 2019}\hspace{1ex}Moran, Steven, Nicholas A. Lester, Heath Gordon, Aylin Küntay, Barbara Pfeiler, Shanley Allen and Sabine Stoll. Variation Sets in Maximally Diverse Languages. In Proceedings 43rd annual Boston University Conference on Language Development (BUCLD). November 2--4, Boston, USA. Cascadilla Press. \url{http://www.lingref.com/bucld/43/BUCLD43-34.pdf}
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}Moran, Steven, Danica Pajovi{\'c} and Sabine Stoll. Cross-linguistically Small World Networks are Ubiquitous in Child-directed Speech. In Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018), 4100-4105. May 7--12, Miyazaki, Japan. \url{http://www.lrec-conf.org/proceedings/lrec2018/pdf/887.pdf}
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}Marsico, Egidio, Sebastien Flavier, Annemarie Verkerk and Steven Moran. BDPROTO: A Database of Phonological Inventories from Ancient and Reconstructed Languages. In Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018), 1654--1658. May 7--12, Miyazaki, Japan. \url{http://www.lrec-conf.org/proceedings/lrec2018/pdf/534.pdf}
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}McNew, Garland, Curdin Derungs and Steven Moran. Towards faithfully visualizing global linguistic diversity. In Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018), 805--809. May 7--12, Miyazaki, Japan. \url{http://www.lrec-conf.org/proceedings/lrec2018/pdf/813.pdf}
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}Moran, Steven and Annemarie Verkerk. Differential rates of change in consonant and vowel systems. In C. Cuskley and M. Flaherty and H. Little and Luke McCrohon and A. Ravignani and T. Verhoef (eds.), The Evolution of Language: Proceedings of the 12th International Conference (EVOLANGXII). April 16--19, Toru{\'n}, Poland. \url{https://doi.org/10.12775/3991-1.077}. \url{http://evolang.org/torun/proceedings/papertemplate.html?p=98}.
\vskip 6pt
\hangpara
{\bf 2016}\hspace{1ex}Moran, Steven, Robert Schikowski, Danica Pajovi{\'c}, Cazim Hysi and Sabine Stoll. The ACQDIV Database: Min(d)ing the Ambient Language. In Proceedings of the Tenth International Conference on Language Resources and Evaluation (LREC 2016), 4423--4429. May 23--28, Portoro{\v z}, Slovenia. \url{http://www.lrec-conf.org/proceedings/lrec2016/pdf/1198\_Paper.pdf}.
\vskip 6pt
\hangpara
{\bf 2016}\hspace{1ex}McCrae, John Philip, Christian Chiarcos, Francis Bond, Philipp Cimiano, Thierry Declerck, Gerard de Melo, Jorge Gracia, Sebastian Hellmann, Bettina Klimek, Steven Moran, Petya Osenova, Antonio Pareja-Lora and Jonathan Pool. The Open Linguistics Working Group: Developing the Linguistic Linked Open Data Cloud. In Proceedings of the Tenth International Conference on Language Resources and Evaluation (LREC 2016), 2435--2441. May 23--28, Portoro{\v z}, Slovenia. \url{http://www.lrec-conf.org/proceedings/lrec2016/pdf/851\_Paper.pdf}.
\vskip 6pt
\hangpara
{\bf 2014}\hspace{1ex}Moran, Steven and Michael Cysouw. Typology with Graphs and Matrices. In Proceedings of the Third Workshop on Linked Data in Linguistics, Multilingual Knowledge Resources and Natural Language Processing, 55--60. Co-located with LREC 2014. May 27, Reykjavik, Iceland. \url{http://www.lrec-conf.org/proceedings/lrec2014/workshops/LREC2014Workshop-LDL2014\%20Proceedings.pdf}.
\vskip 6pt
\hangpara
{\bf 2014}\hspace{1ex}Goldman, Jean-Philippe, Adrian Leemann, Marie-Jos{\'e} Kolly, Ingrid Hove, Ibrahim Almajai, Volker Dellwo and Steven Moran. A Crowdsourcing Smartphone Application for Swiss German: Putting language documentation in the hands of the users. In Proceedings of the Ninth International Conference on Language Resources and Evaluation (LREC 14), Nicoletta Calzolari, Khalid Choukri, Thierry Declerck, Hrafn Loftsson, Bente Maegaard, Joseph Mariani, Asuncion Moreno, Jan Odijk and Stelios Piperidis (eds). May 26--31, Reykjavik, Iceland. \url{http://www.lrec-conf.org/proceedings/lrec2014/pdf/214_Paper.pdf}.
\vskip 6pt
\hangpara
{\bf 2013}\hspace{1ex}Moran, Steven and Martin Brümmer. Lemon-aid: using Lemon to aid quantitative historical linguistic analysis. In Proceedings of the 2nd Workshop on Linked Data in Linguistics (LDL-2013): Representing and linking lexicons, terminologies and other language data. Christian Chiarcos, Philipp Cimiano, Thierry Declerck and John P. McCrae (eds). Association for Computational Linguistics. September, 23. Pisa, Italy. \url{http://aclweb.org/anthology/W/W13/W13-5505.pdf}.
\vskip 6pt
\hangpara
{\bf 2013}\hspace{1ex}Littauer, Richard, Boris Villazon-Terrazas and Steven Moran. Linguistic Resources Enhanced with Geospatial Information. In Proceedings of the 2nd Workshop on Linked Data in Linguistics (LDL-2013): Representing and linking lexicons, terminologies and other language data. Christian Chiarcos, Philipp Cimiano, Thierry Declerck and John P. McCrae (eds). Association for Computational Linguistics. September, 23. Pisa, Italy. \url{http://aclweb.org/anthology/W/W13/W13-5508.pdf}.
\vskip 6pt
\hangpara
{\bf 2013}\hspace{1ex}List, Johann-Mattis and Steven Moran. An Open Source Toolkit for Quantitative Historical Linguistics. In {\it Proceedings of the 51st Annual Meeting of the Association for Computational Linguistics}, pg 13--18, Sofia, Bulgaria, August 4--9, 2013. \url{http://aclweb.org/anthology/P/P13/P13-4003.pdf}.
% \vskip 6pt
% \hangpara
% {\bf Frth}\hspace{1ex}Moran, Steven and Jelena Proki{\'c}. Investigating the relatedness of the endangered Dogon languages. To appear in proceedings of Digital % Humanities 2012. Hamburg, Germany.
\vskip 6pt
\hangpara
{\bf 2012}\hspace{1ex}Chiarcos, Christian, Sebastian Hellmann, Sebastian Nordhoff, Steven Moran, Richard Littauer, Judith Eckle-Kohler, Iryna Gurevych, Silvana Hartmann, Michael Matuschek and Christian M. Meyer. `The Open Linguistics Working Group'. In {\it Proceedings from LREC 2012}, pg 3603--3610, Istanbul, Turkey, May 23--25. \url{http://www.lrec-conf.org/proceedings/lrec2012/pdf/912_Paper.pdf}.
\vskip 6pt
\hangpara
{\bf 2012}\hspace{1ex}Moran, Steven, Daniel McCloy and Richard Wright. `Revisiting the population vs phoneme-inventory correlation'. In {\it Extended abstracts in eLanguage from LSA 2012}. \url{http://dx.doi.org/10.3765/exabs.v0i0.601}.
\vskip 6pt
\hangpara
{\bf 2009}\hspace{1ex}Moran, Steven. An Ontology for Accessing Transcription Systems. In {\it Proceedings from the African Language Technology Workshop at the European Association for Computational Linguistics}. Athens, Greece, March 31. \url{http://www.aclweb.org/anthology/W09-0716}. % 112--120 Association for Computational Linguistics
\vskip 6pt
\hangpara
{\bf 2008}\hspace{1ex}Farrar, Scott and Steven Moran. The e-Linguistics Toolkit. In {\it Proceedings e-Humanities --- an emerging discipline: Workshop in the 4th IEEE International Conference on e-Science}. Indianapolis, Indiana. \url{http://www.zora.uzh.ch/id/eprint/84686/1/FarrarMoran2008.pdf}
\vskip 6pt
\hangpara
{\bf 2008}\hspace{1ex}Trippel, Thorsten, Michael Maxwell, Greville Corbett, Cambell Prince, Christopher Manning, Stephen Grimes and Steven Moran. Lexicon Schemas and Related Data Models: When Standards Meet Users. In {\it Proceedings of the 6th International Conference on Language Resources and Evaluation (LREC)}. Marrakech, Morocco. \url{http://www.lrec-conf.org/proceedings/lrec2008/pdf/812_paper.pdf}.
\vskip 6pt
\hangpara
{\bf 2008}\hspace{1ex}Fox, Naomi and Steven Moran. Non-traditional Dissemination of Fieldwork: From the Field to the World. In {\it Proceedings from the 20th Northwest Linguistics Conference (NWLC)}, Steven Moran, Darren S. Tanner and Michael Scanlon (eds). Seattle, Washington. \url{https://depts.washington.edu/uwwpl/vol27/uwwpl_vol27_2008.pdf}. % 109--114
\vskip 6pt
\hangpara
{\bf 2006}\hspace{1ex}Boynton, Jessica, Steven Moran, Anthony Aristar and Helen Aristar-Dry. E-MELD and the School of Best Practices: An Ongoing Community Effort. In {\it Proceedings from Sustainable Data from Digital Fieldwork.} Sydney University Press. \url{https://ses.library.usyd.edu.au/bitstream/2123/1296/1/9FH2006.pdf}. % 87--97
\vskip 6pt
\hangpara
{\bf 2006}\hspace{1ex}Moran, Steven. From Field Methods to Best Practice: A Case Study of Western Sisaala. E-MELD School of Best Practices. \url{http://emeld.org/school/case/sisaala/index.html}
\vskip 6pt
\hangpara
{\bf 2005}\hspace{1ex}Moran, Steven. The E-MELD School of Best Practices in Digital Language Documentation. In {\it Proceedings from the Annual Meeting of the Chicago Linguistic Society}, 41(2), 71--80. Chicago Linguistic Society. \url{http://chicagolinguisticsociety.org/public/cls41-2-toc.pdf}.
% Rodney L. Edwards, Patrick J. Midtlyng, Colin L. Sprague, and Kjersti K. Stensrud
\vskip 6pt
\hangpara
{\bf 2004}\hspace{1ex}Ferrara, Marisa and Steven Moran. Review of DBMS for Linguistic Purposes. In {\it Proceedings from the E-MELD 2004: Conference on Linguistic Databases and Best Practices}. \url{http://emeld.org/workshop/2004/papers.html}
\vskip 20pt
\begin{flushleft}
{\bf BOOK}
\end{flushleft}
\hangpara
{\bf 2018}\hspace{1ex}Moran, Steven and Michael Cysouw. {\it The Unicode Cookbook for Linguists: Managing writing systems using orthography profiles}. Translation and Multilingual Natural Language Processing series in Language Science Press. \url{https://doi.org/10.5281/zenodo.1296780}. \url{http://langsci-press.org/catalog/book/176}.
\vskip 20pt
\begin{flushleft}
{\bf EDITED VOLUMES}
\end{flushleft}
\hangpara
{\bf 2024}\hspace{1ex}Benitez-Burraco, Antonio and Steven Moran (eds). The Adaptive Value of Languages: Non-Linguistic Causes of Language Diversity -- Volume II. {\it Frontiers in Psychology}. \url{https://www.frontiersin.org/research-topics/40686/the-adaptive-value-of-languages-non-linguistic-causes-of-language-diversity---volume-ii#articles} % https://osf.io/preprints/psyarxiv/h2bsy
\hangpara
\vskip 6pt
{\bf 2023}\hspace{1ex}Moran, Steven, Shelece Easterday and Eitan Grossman. Special issue on phonological typology. {\it Linguistic Typology}, 27, 2. \url{https://www.degruyter.com/journal/key/lity/27/2/html}.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}Levshina, Natalia and Steven Moran (eds). Efficiency in human languages: corpus evidence for universal principles. {\it Linguistics Vanguard}, 7, 3. \url{https://www.degruyter.com/journal/key/LINGVAN/7/s3/html}.
\hangpara
\vskip 6pt
{\bf 2018}\hspace{1ex}Benitez-Burraco, Antonio and Steven Moran (eds). The Adaptive Value of Languages: Non-Linguistic Causes of Language Diversity. {\it Frontiers in Psychology}. \url{http://journal.frontiersin.org/researchtopic/5478/the-adaptive-value-of-languages-non-linguistic-causes-of-language-diversity}
\hangpara
\vskip 6pt
{\bf 2015}\hspace{1ex}Hellmann, Sebastian, Steven Moran, Martin Brümmer and John McCrae (eds). Special Issue on Multilingual Linked Open Data (MLOD). \textit{Semantic Web}, 6(4). \url{https://content.iospress.com/journals/semantic-web/6/4}.
\vskip 6pt
\hangpara
{\bf 2008}\hspace{1ex}Moran, Steven, Darren Tanner and Michael Scanlon (eds). Proceedings from the 20th Northwest Linguistics Conference (NWLC). University of Washington Working Papers in Linguistics Vol. 27. \url{http://depts.washington.edu/uwwpl/vol27/}.
\vskip 6pt
\hangpara
{\bf 2007}\hspace{1ex}Moran, Steven (ed). University of Washington Working Papers in Linguistics Vol 26. \url{http://depts.washington.edu/uwwpl/vol26/}.
\vskip 6pt
\hangpara
{\bf 2006}\hspace{1ex}Moran, Steven (ed). University of Washington Working Papers in Linguistics Vol. 25. \url{http://depts.washington.edu/uwwpl/vol25/}.
\vskip 6pt
\hangpara
{\bf 2005}\hspace{1ex}Jinguji, Dan and Steven Moran (eds). University of Washington Working Papers in Linguistics Vol. 24. \url{http://depts.washington.edu/uwwpl/vol24/}.
\vskip 6pt
\hangpara
{\bf 2001--2005}\hspace{1ex}Moran, Steven (ed). The Linguist List. ISSN: 1068--4875. 420 issues. \url{http://linguistlist.org}.
\vskip 20pt
\begin{flushleft}
{\bf BOOK CHAPTERS}
\end{flushleft}
\hangpara
{\bf 2023}\hspace{1ex}Dediu, Dan, Jingmin Lin, Scott R. Moisik, Steven Moran. Dental fricatives: Patterning, evolution, and factors affecting a rare class of speech sounds. In F. A. Karakostis and G. Jäger (eds), \textit{Words, Bones, Genes, Tools: DFG Center for Advanced Studies, Vol.\ 4}, 143--178. Tübingen: Kerns Verlag. Online: \url{https://kernsverlag.com/wp-content/uploads/2024/01/biocultural-evolution-chapter-7.pdf}.
\vskip 6pt
\hangpara
{\bf 2022}\hspace{1ex}Moran, Steven. Managing Phonological Inventory Data in the Development of PHOIBLE. In Andrea L. Berez-Kroeker, Bradley McDonnell, Eve Koller, and Lauren B. Collister (eds), \textit{The Open Handbook of Linguistic Data Management: Open Handbooks in Linguistics}. MIT Press. \url{https://doi.org/10.7551/mitpress/12200.003.0057}.
\vskip 6pt
\hangpara
{\bf 2019}\hspace{1ex}Moran, Steven and Christian Chiarcos. Linguistic Linked Open Data and Under-Resourced Languages: From Collection to Application. In Antonio Pareja-Lora, María Blume, Barbara C. Lust, and Christian Chiarcos (eds), \textit{Development of Linguistic Linked Open Data Resources for Collaborative Data-Intensive Research in the Language Sciences}. MIT Press. \url{https://doi.org/10.7551/mitpress/10990.001.0001}.
% \url{https://mitpress.mit.edu/books/development-linguistic-linked-open-data-resources-collaborative-data-intensive-research-language}
\vskip 6pt
\hangpara
{\bf 2014}\hspace{1ex}Moran, Steven and Dami{\'a}n Blasi. Cross-linguistic comparison of complexity measures in phonological systems. In Frederick J. Newmeyer and Laurel Preston (eds), {\it Measuring Grammatical Complexity}. Oxford University Press.
\vskip 6pt
\hangpara
{\bf 2013}\hspace{1ex}Proki{\'c}, Jelena and Steven Moran. Black box approaches to genealogical classification and their shortcomings. In {\it Comparing Approaches to Measuring Linguistic Differences}, Lars Borin and Anju Saxena (eds), 429--446. Berlin, Boston: De Gruyter Mouton. \url{https://doi.org/10.1515/9783110305258.429}
\vskip 6pt
\hangpara
{\bf 2013}\hspace{1ex}Chiarcos, Christian, Steven Moran, Pablo N. Mendes, Sebastian Nordhoff, Richard Littauer. Building a Linked Open Data Cloud of Linguistic Resources: Motivations and Developments. In Iryna Gurevych and Jungi Kim (eds), {\it The People's Web Meets NLP: Collaboratively Constructed Language Resources}. Springer, Berlin, Heidelberg. \url{https://doi.org/10.1007/978-3-642-35085-6_12}.
% \url{https://link.springer.com/chapter/10.1007/978-3-642-35085-6_12} % 315--348
% http://www.ukp.tu-darmstadt.de/scientific-community/edited-book-the-peoples-web-meets-nlp
\vskip 6pt
\hangpara
{\bf 2012}\hspace{1ex}Moran, Steven. Using Linked Data to Create a Typological Knowledge Base. In {\it Linked Data in Linguistics: Representing and Connecting Language Data and Language Metadata}, Christian Chiarcos, Sebastian Nordhoff and Sebastian Hellmann (eds). Springer, Heidelberg. \url{https://doi.org/10.1007/978-3-642-28249-2_13}. \url{http://svn.aksw.org/papers/2012/LDL/ldl2012_proceedings/public/moran.pdf}.
\vskip 6pt
\hangpara
{\bf 2011}\hspace{1ex}Moran, Steven. An Ontology for Accessing Transcription Systems. In {\it Language Resources \& Evaluation: Special Issue on African Language Technology}, Guy De Pauw, Laurette Pretorius, Gilles-Maurice de Schryver and Lori Levin (eds). \url{https://doi.org/10.1007/s10579-011-9158-8}. \url{https://link.springer.com/article/10.1007/s10579-011-9158-8}.% 345--360 - Volume 45, Issue 3 Heidelberg
\vskip 6pt
\hangpara
{\bf 2010}\hspace{1ex}Boynton, Jessica, Steven Moran, Helen Aristar-Dry and Anthony Aristar. Using the E-MELD School of Best Practices to Create Lasting Digital Documentation. In {\it Language Documentation: Practice and Values}, Lenore A. Grenoble and N. Louanna Furbee (eds), 133--146. John Benjamins. \url{https://doi.org/10.1075/z.158.14boy}.
\vskip 20pt
\begin{flushleft}
{\bf RESPONSES}
\end{flushleft}
\hangpara
{\bf 2020}\hspace{1ex}Moran, Steven and Balthasar Bickel. Rejoinder to Huijbregts’s: Biting into Evolution of Language. \textit{Journal of Language Evolution}, 5(2), 184--187. \url{https://doi.org/10.1093/jole/lzaa005}.
\vskip 6pt
\hangpara
{\bf 2020} Blasi, Damián E., Steven Moran, Scott R. Moisik, Paul Widmer, Dan Dediu and Balthasar Bickel. Languages, evolution and statistics: human sound systems were shaped by changes in bite configuration. Response to Tarasov \& Uyeda (2020). \textit{bioRxiv}. \url{https://doi.org/10.1101/2020.02.27.965400}.
% \clearpage
\vskip 20pt
\begin{flushleft}
{\bf OUTREACH / MEDIA}
\end{flushleft}
% Media
% Alphaman
% http://www.euresearcher.com/14/eu-research-live
\hangpara
{\bf 2023}\hspace{1ex}Will ChatGPT change higher education? University of Miami News. \url{https://news.miami.edu/as/stories/2023/04/will-chatgpt-change-higher-education.html}.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}Contact and isolation as drivers of diversity: Anthropological factors are said to shape languages more than environmental factors. Horizons: The Swiss Research Magazine. \url{https://www.horizons-mag.ch/2021/06/03/contact-and-isolation-as-drivers-of-language-diversity/}.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}Featured Alumnus: Steve Moran. University of Washington Departmental Newsletter. \url{https://linguistics.washington.edu/news/2021/02/19/featured-alumnus-steve-moran}.
\hangpara
\vskip 6pt
{\bf 2019}\hspace{1ex}Die Ernährung verändert die Sprache. 3sat Nano TV Program. \url{https://www.3sat.de/wissen/nano/191209-sprache-nano-104.html}.
\hangpara
\vskip 6pt
{\bf 2019}\hspace{1ex}Moran, Steven and Balthasar Bickel. Softer, processed foods changed the way ancient humans spoke. \textit{The Conversation}. \url{https://theconversation.com/softer-processed-foods-changed-the-way-ancient-humans-spoke-113599}. Translated into Bahasa Indonesian by Jamiah Solehati (\url{https://theconversation.com/makanan-olahan-yang-lebih-lembut-ubah-cara-manusia-purba-berbicara-115509}).
\hangpara
\vskip 6pt {\bf 2018}\hspace{1ex}What it means to be open and community-based: The Unicode cookbook as a showcase. Interview with Sebastian Nordhoff of Language Science Press. \url{https://userblogs.fu-berlin.de/langsci-press/2018/07/11/what-it-means-to-be-open-and-community-based-the-unicode-cookbook-as-a-showcase/}.
% \clearpage
\vskip 20pt
\begin{flushleft}
{\bf PUBLISHED DATASETS AND SOFTWARE}
\end{flushleft}
\hangpara
{\bf 2023}\hspace{1ex}Linguist List. (2023). LL-MAP: Language and Location - A Map Annotation Project (Version 0.1) [Data set]. Zenodo. \url{https://zenodo.org/doi/10.5281/zenodo.10008713}.
\vskip 6pt
\hangpara
{\bf 2023}\hspace{1ex}Linguist List. (2023). MultiTree: A digital library of language relationships (Version 0.1) [Data set]. Zenodo. \url{https://zenodo.org/doi/10.5281/zenodo.10006569}.
\vskip 6pt
\hangpara
{\bf 2022}\hspace{1ex}Carlos Silva and Steven Moran. (2022). CreoPhonPt (Version 1.0) [Data set]. Zenodo. \url{https://doi.org/10.5281/zenodo.7575862}.
\vskip 6pt
\hangpara
{\bf 2020}\hspace{1ex}Grossman, Eitan, Elad Eisen, Dmitry Nikolaev, and Steven Moran. segbo-db/segbo (Version v1.0.0) [Data set]. Zenodo. \url{https://doi.org/10.5281/zenodo.3633917}. \url{https://github.com/segbo-db/segbo}.
\vskip 6pt
\hangpara
{\bf 2019}\hspace{1ex}Moran, Steven, Anna Jancso and Sabine Stoll. ACQDIV database (public) (Version 1.0.0) [Data set]. Zenodo. \url{https://doi.org/10.5281/zenodo.3558641}.
\vskip 6pt
\hangpara
{\bf 2019}\hspace{1ex}Moran, Steven and Anna Jancso. ACQDIV database aggregation pipeline (Version 1.0.0). Zenodo. \url{https://doi.org/10.5281/zenodo.3558641}. \url{https://github.com/acqdiv/acqdiv}.
\vskip 6pt
\hangpara
{\bf 2019}\hspace{1ex}Moran, Steven and Eitan Grossman. BDPROTO 1.1 (Version 1.1) [Data set]. Zenodo. \url{https://doi.org/10.5281/zenodo.3522973}. \url{https://github.com/bdproto}.
\vskip 6pt
\hangpara
{\bf 2019}\hspace{1ex}Marsico, Egidio, Sébastien Flavier and Steven Moran. BDPROTO 1.0 (Version 1.0) [Data set]. Zenodo. \url{https://doi.org/10.5281/zenodo.3521639}. \url{https://github.com/bdproto}.
\vskip 6pt
\hangpara
{\bf 2019}\hspace{1ex}Moran, Steven and Daniel McCloy (eds). PHOIBLE 2.0. Jena: Max Planck Institute for the Science of Human History. \url{https://doi.org/10.5281/zenodo.2562766}. \url{http://phoible.org}.
\vskip 6pt
\hangpara
{\bf 2017}\hspace{1ex}Moran, Steven and Robert Forkel. cldf/segments: segments 1.1.1 (Version v1.1.1). Zenodo. \url{https://doi.org/10.5281/zenodo.1051158}. \url{https://pypi.org/project/segments}.
\vskip 6pt
\hangpara
{\bf 2016}\hspace{1ex}Moran, Steven, Forkel, Robert and Jeffrey Heath (eds). Dogon and Bangime Linguistics. Jena: Max Planck Institute for the Science of Human History. \url{http://dogonlanguages.info}.
\vskip 6pt
\hangpara
{\bf 2015}\hspace{1ex}Naumann, Christfried, Moran, Steven, Segerer, Guillaume and Robert Forkel (eds). Tsammalex: A lexical database on plants and animals. Leipzig: Max Planck Institute for Evolutionary Anthropology. \url{https://doi.org/10.5281/zenodo.596403}. \url{http://tsammalex.clld.org}.
\vskip 6pt
\hangpara
{\bf 2014}\hspace{1ex}Moran, Steven, McCloy, Daniel and Richard Wright (eds). PHOIBLE Online. Leipzig: Max Planck Institute for Evolutionary Anthropology. \url{https://doi.org/10.5281/zenodo.2562767}. \url{http://phoible.org}.
\vskip 6pt
\hangpara
{\bf 2014}\hspace{1ex}Vaux, Bert, Leemann, Adrian, Wanitsch, Daniel, Moran, Steven, Grimm, Sarah, Robert, Sylvain, Zhakarko, Taras and Scherrer, Yves. US Dialect App. Previously online via Apple App Store. % Online via Apple App Store: \url{http://usdialectapp.com/download}
\clearpage
\vskip 20pt
\begin{flushleft}
{\bf ENCYLOPEDIA ARTICLE (PEER-REVIEWED)}
\end{flushleft}
\hangpara
{\bf 2019}\hspace{1ex}Moran, Steven. Phonological inventories. In \textit{Oxford Research Encyclopedia of Linguistics}. Oxford University Press. \url{http://dx.doi.org/10.1093/acrefore/9780199384655.013.112}.
\vskip 20pt
\begin{flushleft}
{\bf REVIEW ARTICLE}
\end{flushleft}
% Cyberling review of Glottolog
\hangpara
{\bf 2014}\hspace{1ex}Wichmann, S{\o}ren \& Anthony P. Grant (eds). 2012. Quantitative approaches to linguistic diversity: commemorating the centenary of the birth of Morris Swadesh. Amsterdam / Philadelphia: John Benjamins [Benjamins Current Topics 46]. x+182 pp. (ISBN 78 90 272 0265 9) in \textit{Studies in Language} 38(1), 220--233.
\vskip 20pt
\begin{flushleft}
{\bf PREPRINTS AND WORK IN PROGRESS}
\end{flushleft}
% \hangpara
% Moran, Steven $^*$, Tiena Danner $^*$, Marcia Ponce de León and Christoph Zollikofer. Interindividual vocal tract diversity influences the phonetic diversification of spoken languages. $^*$Shared first authorship. \url{https://doi.org/10.1101/2024.07.26.605254}.
% https://www.diva-portal.org/smash/record.jsf?pid=diva2%3A1886737&dswid=-7129
% https://www.diva-portal.org/smash/record.jsf?pid=diva2%3A1886739&dswid=9208
% https://www.diva-portal.org/smash/record.jsf?pid=diva2%3A1886738&dswid=6855
% https://www.diva-portal.org/smash/record.jsf?pid=diva2%3A1886740&dswid=9004
% \vskip 6pt
\hangpara
van Gijn, Rik, Alena Witzlack-Makarevich and Steven Moran. {\it Typology in Practice}. A course text book for typology using quantitative approaches.
\vskip 6pt
\hangpara
Moran, Steven. \textit{A Grammar of Isaalo (Western Sisaala)}. \url{https://github.com/bambooforest/sisaala}.
\vskip 6pt
\hangpara
Moran, Steven. \textit{A Grammatical Sketch of Toro So (Dogon)} (with accompanying French -- English -- Toro So word list).
% \vskip 6pt
% \hangpara
% Moran, Steven. \textit{Did speech sounds evolve during human evolution?} Habilitation thesis.
\vskip 6pt
\hangpara
Moran, Steven, Robert Schikowski and Sabine Stoll. ACQDIV Corpus Database User Manual. 92pp. \url{https://github.com/acqdiv/corpus_manual/blob/master/corpus_manual.pdf}
% Unpublished manuscript for ERC project: Acquisition processes in maximally diverse languages: min(d)ing the ambient language. Includes description of the longitudinal corpus data, the extract transform load (ETL) processes for making the data interoperable, and the database design.
\vskip 20pt
\begin{flushleft}
{\bf INVITED PRESENTATIONS}
\end{flushleft}
\hangpara
{\bf 2024}\hspace{1ex}`Type-ology is dead; or, The comparative method cannot tell us how languages evolve'. ISW Colloquium, Department of Linguistics, University of Bern. December 9. Bern, Switzerland. With Tiena Danner.
\vskip 6pt
\hangpara
{\bf 2022}\hspace{1ex}`EVOPHON: Evolution of phonetics and phonology'. Key speaker at the workshop ``The development and evolution of primate vocal communication''. November 25, Neuchatel, Switzerland.
\vskip 6pt
\hangpara
{\bf 2021}\hspace{1ex}`Impacts of biology and language contact on the worldwide diversity of speech sounds'. Paper presented (online) at the Sixth annual symposium of the DFG Center for Advanced Studies ``Words, Bones, Genes, Tools''. Biocultural Implications: An agenda for integrative approaches. December, 4, Tübingen, Germany.
\vskip 6pt
\hangpara
{\bf 2021}\hspace{1ex}`Human speech sounds: three evolutionary timelines'. Paper presented (online) at the Fresno State University Linguistics Colloquium. November 4, Fresno, CA, USA.
\vskip 6pt
\hangpara
{\bf 2021}\hspace{1ex}`Inferring recent evolutionary changes in speech sounds'. \textbf{Keynote} presentation (online) at the 54th Annual Meeting of the Societas Linguistica Europaea. Sep 2, Athens, Greece. With Nicholas A. Lester and Eitan Grossman.
\vskip 6pt
\hangpara
{\bf 2021}\hspace{1ex}`Human speech sounds: three evolutionary timelines'. Paper presented (online) at the Oberseminar in the Seminar für Sprachwissenschaft. July 20, University of Tübingen, Tübingen, Germany.
\vskip 6pt
\hangpara
{\bf 2021}\hspace{1ex}`Evolution of speech sounds'. Paper presented (online) at the Workshop on Learnability and Typology
on the Occasion of Klaas Seinhorst’s PhD Defence. February 18. University of Amsterdam, Amsterdam, The Netherlands.
\vskip 6pt
\hangpara
{\bf 2021}\hspace{1ex}`Investigating the evolution of speech sounds'. Paper presented (online) at the Higher Seminar in Diversity Linguistics. February 4, University of Stockholm, Stockholm, Sweden.
\vskip 6pt
\hangpara
{\bf 2020}\hspace{1ex}`How did speech evolve?'. Paper presented at the Cognitive Science Seminar, University of Neuchâtel. Nov 19, Neuchâtel, Switzerland.
\vskip 6pt
\hangpara
{\bf 2019}\hspace{1ex}`ACQDIV project, corpus database, methodological approaches using different types of entropy and statistical regressions'. Paper presented at Emergent constructions -- big data in learner language analyses, University of Basel. May 30, Basel, Switzerland. With Nicholas A. Lester.
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}`Building an evolutionary timeline of phonetic features'. Paper presented in the Department of Comparative Cognition in the Institute of Biology, University of Neuchâtel. November 29, Neuchâtel, Switzerland.
\vskip 6pt
\hangpara
{\bf 2017}\hspace{1ex}`ACQDIV PHON: Worldwide phoneme frequency predicts age of production'. Paper presented at the ESRC International Centre for Language and Communicative Development (LuCiD) research colloquium. October 3, Manchester, UK. With Sabine Stoll.
\vskip 6pt
\hangpara
{\bf 2017}\hspace{1ex}`Linked Data for Linguistic Research: Phonetics'. Paper presented at the LD4LR workshop for the Dutch CLARIAH project. February 6--7. Utrecht, The Netherlands. \url{https://www.clariah.nl/en/new/blogs/linked-data-for-linguistic-research}
\vskip 6pt
\hangpara
{\bf 2015}\hspace{1ex}`The ACQDIV project and database'. Paper presented in the Seminar Series at the Dynamique du Langage lab (DDL) of the Centre national de la recherche scientifique (CNRS). September 21. Lyon, France. With Sabine Stoll.
\vskip 6pt
\hangpara
{\bf 2015}\hspace{1ex}`Introduction to ACQDIV corpora'. Workshop: Acquisition processes in maximally diverse languages (ACQDIV). June 10--13. Kappel am Albis, Switzerland.
\vskip 6pt
\hangpara
{\bf 2015}\hspace{1ex}`Visualizing WALS data'. Workshop: Language Comparison with Linguistic Databases. Organized by the URPP Language and Space at the University of Zurich. April 30. Leipzig, Germany. With Garland McNew.
% https://www.eva.mpg.de/linguistics/conferences/2014-ws-lanclid2/program.html
\vskip 6pt
\hangpara
{\bf 2015}\hspace{1ex}`Dogon languages project'. Primera Escuela Latinoamericana de Tipolog{\'i}a y Documentaci{\'o}n Ling{\"u}{\'i}stica. Escuela Nacional de Estudios Superiores, UNAM. March 19--28. Morelia, Mexico.
\vskip 6pt
\hangpara
{\bf 2015}\hspace{1ex}`Documenting typological diversity for real: the need of language acquisition studies'. Primera Escuela Latinoamericana de Tipolog{\'i}a y Documentaci{\'o}n Ling{\"u}{\'i}stica. Escuela Nacional de Estudios Superiores, UNAM. March 19--28. Morelia, Mexico. With Dagmar Jung and Sabine Stoll.
\vskip 6pt
\hangpara
{\bf 2014}\hspace{1ex}`Studies in phonological typology with PHOIBLE'. Workshop on Language Comparison with Linguistic Databases: RefLex and Typological Databases. October 7--9. Nijmegen, The Netherlands.
% http://www.mpi.nl/events/language-comparison-with-linguistic-databases-reflex-and-typological-databases/program-abstracts
\vskip 6pt
\hangpara
{\bf 2014}\hspace{1ex}`Linguistic (Linked) Open Data: From collection to application'. \textbf{Keynote} presentation at the workshop on `Collaboration and Computing for Under-resourced Languages in the Linked Open Data Era (CCURL 2014)'. May 26. Reykjavik, Iceland. With Christian Chiarcos.
\vskip 6pt
\hangpara
{\bf 2014}\hspace{1ex}`Qualitative analysis and quantitative comparison of Dogon languages'. Paper presented in the Seminar Series at the Dynamique du Langage lab (DDL) of the Centre national de la recherche scientifique (CNRS). January 24. Lyon, France.
\vskip 6pt
\hangpara
{\bf 2013}\hspace{1ex}`Qualitative analysis and quantitative comparison of Dogon languages'. Paper presented in the Seminar Series at the Department of Linguistics, University of Stockholm. December 12. Stockholm, Sweden.
\vskip 6pt
\hangpara
{\bf 2013}\hspace{1ex}`Diversity of Language Sources: Challenges in Digitization, Interoperation and Analysis'. Paper presented at the Language Diversity Congress: Computational Issues in Studying Language Diversity. July 18--20. Groningen, The Netherlands. With Jelena Proki{\'c}.
\vskip 6pt
\hangpara
{\bf 2013}\hspace{1ex}`Obstruents and latitude: acoustic adaptation, thermal influence or spurious statistics?'. Poster presented at the Language Diversity Congress: Computational Issues in Studying Language Diversity. July 18--20. Groningen, The Netherlands. With Dami{\'a}n Blasi.
\vskip 6pt
\hangpara
{\bf 2012}\hspace{1ex}`Geolinguistic Diffusion of Language Change'. Paper presented at the Simulation of Diachrony workshop. November 5--6. Zurich, Switzerland. With Jelena Proki{\'c}.
\vskip 6pt
\hangpara
{\bf 2012}\hspace{1ex}`Research Unit: Quantitative Language Comparison'. Paper presented at the RefLex meeting (CNRS). June 5--7. Lyon, France.
\vskip 6pt
\hangpara
{\bf 2011}\hspace{1ex}`Technological infrastructure for comparative linguistics and linguistic fieldwork: some case studies'. Paper presented at the Max Planck Institute for Evolutionary Anthropology. January 27, Leipzig, Germany.
\vskip 6pt
\hangpara
{\bf 2008}\hspace{1ex}`The e-Linguistics Toolkit'. Paper presented at the Institute for Language Information and Technology (The Linguist List). December 18, Ypsilanti, Michigan. With Scott Farrar.
\vskip 6pt
\hangpara
{\bf 2006}\hspace{1ex}`From Documentation to Computation'. Paper presented at the Max Planck Institute for Evolutionary Anthropology. September 13, Leipzig, Germany.
\vskip 20pt
\begin{flushleft}
{\bf REFEREED PRESENTATIONS}
\end{flushleft}
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`Temporal Co-registration of Simultaneous Electromagnetic Articulography and Electroencephalography for Precise Articulatory and Neural Data Alignment'. Paper presented at Interspeech 2004. September 1--5, Kos, Greece. With Daniel Friedrichs (presenter), Monica Lancheros, Sam Kirkham, Lei He, Andrew Clark, Clemens Lutz and Volker Dellwo.
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`The borrowability of phonological segments: a feature-based approach'. Paper presented at the 57th annual Societas Linguistica Europaea (SLE 2024). August 21--24, Helsinki, Finland. With Dmitry Nikolaev (presenter) and Eitan Grossman. % https://societaslinguistica.eu/sle2024/schedule-2/
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`Phonemes as cognitive tools'. Paper presented at the 57th annual Societas Linguistica Europaea (SLE 2024). August 21--24, Helsinki, Finland. With Caleb Everett (presenter), Axel Ekström and Cladio Tennie. % https://societaslinguistica.eu/sle2024/schedule-2/
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`Phonetic Segmentation of the UCLA Phonetics Lab Archive'. Paper presented at the 2024 Joint International Conference on Computational Linguistics and Language Resources and Evaluation (LREC-COLING 2024). May 20-25, Turin, Italy. With Eleanor Chodroff (presenter), Pažon Blaž and Annie Baker. % https://lrec-coling-2024.org/conference-program/#may-22
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`Converting legacy data to CLDF: A FAIR exit strategy for linguistic web apps'. Poster presented at the 2024 Joint International Conference on Computational Linguistics and Language Resources and Evaluation (LREC-COLING 2024). May 20--25, Turin, Italy. With Rorbert Forkel (presenter) and Daniel Swanson. % https://lrec-coling-2024.org/conference-program/#may-22
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`Stability of manner and place of articulation in the formation of Portuguese-based creoles'. Paper presented at the Leiden Workshop on Creole Languages (WoCL). May 22, 2024, Leiden, The Netherlands. With Carlos Silva (presenter). % https://www.universiteitleiden.nl/binaries/content/assets/geesteswetenschappen/lucl/wocl-2024/silva--moran_abstract_leiden_cs_sm.pdf
% https://www.universiteitleiden.nl/en/events/2024/05/leiden-workshop-on-creole-languages-wocl
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`What phonetics has to say about Neanderthal (\textit{H. neanderthalensis}) speech capacities'. Paper presented at the International Conference on the Evolution of Language (Evolang 2024). May 18--21, Madison, WI, USA. With Axel Ekström (presenter).
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`Phonetic properties of chimpanzee, gorilla, and orangutan hoots tell a uniform story – and point to new frontiers'. Poster presented at the International Conference on the Evolution of Language (Evolang 2024). May 18--21, Madison, WI, USA. With Axel G. Ekström, Lara Nellissen, Tatiana Bortolato, Catherine Crockford, Jens Edlund, Shelly Masi, Klaus Zuberbühler, Adriano R Lameira, Roman W. Wittig and Sven Grawunder.
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`The phoneme as cognitive technology'. Poster presented at the International Conference on the Evolution of Language (Evolang 2024). May 18--21, Madison, WI, USA. With Caleb Everett and Axel Ekström.
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`Contextualizing the spatial autocorrelation for some climatic and linguistic variables'. Paper presented at the International Conference on the Evolution of Language (Evolang 2024). May 18--21, Madison, WI, USA. With Haoluan Wang and Caleb Everett (presenter).
\hangpara
\vskip 6pt
{\bf 2024}\hspace{1ex}`Dimensions of structure and variability in the human vocal tract'. Poster presented at the 13th International Seminar on Speech Production (ISSP2024). May 13--17th, Autrans, France. With Katherine Vaughan-Williams and Sam Kirkham (presenter).
\hangpara
\vskip 6pt
{\bf 2023}\hspace{1ex}`Phonological stability and inventory similarity of Portuguese-based creoles`. Paper presented at the Congresso Bienal Centro de Linguístca da Universidade do Porto. November 2--4, Porto, Portugal. With Carlos Silva and Luís Trigo. % https://clup.pt/wp-content/uploads/2023/10/Programa_CLUP23.pdf
\hangpara
\vskip 6pt
{\bf 2023}\hspace{1ex}`A Database of Tonogenetic Events (DTE) and what it can tell us about tonogenesis'. Paper presented at the 26th International Conference of Historical Linguistics (ICHL). September 4--8, Heidelberg, Germany. With Lilja Sæbø and Eitan Grossman.
\hangpara
\vskip 6pt
{\bf 2023}\hspace{1ex}`Evolution for a complex vocal communication system: The peculiar case of olive colobus monkeys'. Paper presented at The Joint Meeting of the International Primatological Society (IPS) and the Malaysian Primatological Society (IPS – MPS Joint Meeting 2023). August 19--25, (online), Kuching, Sarawak, Malaysian Borneo. With Quentin Gallot and Klaus Zuberbühler.
\hangpara
\vskip 6pt
{\bf 2023}\hspace{1ex}`PREQUEL: Supervised phonetic approaches to analyses of great ape quasi-vowels'. Poster presented at the 20th International Congress of Phonetic Sciences (ICPhS 2023). August 7--11, Prague, Czech Republic. With Axel G. Ekstr{\"o}m, Johan Sundberg and Adriano R. Lameira.
\hangpara
\vskip 6pt
{\bf 2023}\hspace{1ex}`Automatic Sound Event Detection and Classification of Great Ape Calls Using Neural Networks'. Poster presented at the 20th International Congress of Phonetic Sciences (ICPhS 2023). August 7--11, Prague, Czech Republic. With Zifan Jiang, Adrian Soldati, Isaac Schamberg and Adriano R. Lameira.
\hangpara
\vskip 6pt
{\bf 2022}\hspace{1ex}`Measuring consonant stability in Portuguese-based creoles'. Paper presented at the 14th Conference of the Association of Linguistic Typology. December 15--17, (online), Austin, Texas. With Carlos Silva.
\hangpara
\vskip 6pt
{\bf 2022}\hspace{1ex}`Linguistic laws in primate vocal communication'. Paper presented at the Joint Conference on Language Evolution (JCoLE). September 5--8, Kanazawa, Japan. With Quentin Gallot, Auriane Le Floch, Marco Maiolini, Adrian Soldati, and Klaus Zuberbühler.
\hangpara
\vskip 6pt
{\bf 2022}\hspace{1ex}`Great ape vocal repertoires are all similar in size: now what?'. Paper presented at the Joint Conference on Language Evolution (JCoLE). September 5--8, Kanazawa, Japan. With Marco Maiolini and Adriano Lameira.
\hangpara
\vskip 6pt
{\bf 2022}\hspace{1ex}`TeDDi Sample: Text Data Diversity Sample for Language Comparison and Multilingual NLP'. Paper presented at the Language Resources and Evaluation Conference (LREC 2022). June 21--23, Marseille, France. With Ximena Gutierrez-Vasques, Christian Bentz, Olga Sozinova, and Tanja Samardzic.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}`Stability drivers in the emergence of Portuguese-based creoles'. Paper presented at The Fifth Edinburgh Symposium on Historical Phonology (ESHP5). December 6--8, (online) Edinburgh, Scotland. With Carlos Silva.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}`Temporal bias: a new kind of bias for typologists to worry about'. Paper presented at the 5th Usage-Based Linguistic Conference (UBL 5). July 5--7, (online) Tel Aviv, Israel. With Eitan Grossman.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}`Defining and operationalizing `borrowability' in phonology'. Paper presented at the 5th Usage-Based Linguistic Conference (UBL 5). July 5--7, (online) Tel Aviv, Israel. With Elad Eisen, Eitan Grossman, and Dmitry Nikolaev.
\hangpara
\vskip 6pt
{\bf 2021}\hspace{1ex}`Defining and operationalizing `borrowability' in phonology'. Paper presented at the 28th Manchester Phonology Meeting. May 26--28, (online) Manchester, UK. With Elad Eisen, Dmitry Nikolaev and Eitan Grossman.
\hangpara
\vskip 6pt
{\bf 2019}\hspace{1ex}`The typology of phonological segment borrowing'. Paper presented at the
13th Conference of the Association for Linguistic Typology. September 4--6, Pavia, Italy. With Eitan Grossman, Dmitry Nikolaev, Elad Eisen, Ronén Júda, Schwartz Layla and Yoav Yosef.
\hangpara
\vskip 6pt
{\bf 2019}\hspace{1ex}`How different were phonological distributions?
The typology of phonological segment borrowing and the Uniformitarian
Assumption'. Paper presented at the 52nd Annual Meeting of the Societas Linguistica Europaea. August 21--24, Leipzig, Germany. With Eitan Grossman and Dmitry Nikolaev.
\hangpara
\vskip 6pt
{\bf 2019}\hspace{1ex}`What contact typologists want from grammatical descriptions'. Paper presented at Descriptive grammars and typology: The challenges of writing grammars of underdescribed and endangered languages. March 27--29, Helsinki, Finland. With Eitan Grossman.
\hangpara
\vskip 6pt
{\bf 2018}\hspace{1ex}`Variation sets in maximally diverse languages'. Poster presented at the 43rd Boston University Conference on Language Development (BUCLD). November 2--4, Boston, USA. With Sabine Stoll.
\hangpara
\vskip 6pt
{\bf 2018}\hspace{1ex}`Acquisition processes in maximally diverse languages: min(d)ing the ambient language'. Paper presented at the Days of Swiss Linguistics. October 12, Bern, Switzerland. With Sabine Stoll, Damian Blasi, Dagmar Jung and Jekaterina Mazara.
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}`Worldwide frequency distribution of phoneme types predicts their order of acquisition'. Paper presented at the 51st Annual Meeting of the Societas Linguistica Europaea (SLE). August 29--September 1, Tallinn, Estonia. With Sebastian Sauppe, Nicholas A. Lester and Sabine Stoll.
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}`Comparative corpus linguistics: New perspectives and applications'. Paper presented at the 51st Annual Meeting of the Societas Linguistica Europaea (SLE). August 29--September 1, Tallinn, Estonia. With Natalia Levshina and Annemarie Verkerk.
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}`Cross-linguistically Small World Networks are Ubiquitous in Child-directed Speech'. Paper presented at the Eleventh International Conference on Language Resources and Evaluation (LREC 2018). May 7--12, Miyazaki, Japan. With Danica Pajovi{\'c} and Sabine Stoll.
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}`BDPROTO: A Database of Phonological Inventories from Ancient and Reconstructed Languages'. Paper presented at the Eleventh International Conference on Language Resources and Evaluation (LREC 2018). May 7--12, Miyazaki, Japan. With Egidio Marsico, Sebastien Flavier and Annemarie Verkerk.
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}`Towards faithfully visualizing global linguistic diversity'. Paper presented at the Eleventh International Conference on Language Resources and Evaluation (LREC 2018). May 7--12, Miyazaki, Japan. With Garland McNew and Curdin Derungs.
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}`Differential rates of change in consonant and vowel systems'. Paper presented at the 12th International Conference on the Evolution of Language (EVOLANGXII). April 16--19, Toru{\'n}, Poland. With Annemarie Verkerk. % doi:10.12775/3991-1.077
\vskip 6pt
\hangpara
{\bf 2018}\hspace{1ex}`Probing the biological conditions for modern phonologies: The late emergence of labiodentals'. Paper presented at the 12th International Conference on the Evolution of Language (EVOLANGXII). April 16--19, Toru{\'n}, Poland. With Dami{\'a}n Blasi, Scott Moisik, Ani Margvelashvili, Paul Widmer, Dan Dediu and Balthasar Bickel.
\vskip 6pt
\hangpara
{\bf 2017}\hspace{1ex}`Phylogenesis of phonetic features'. Paper presented at the 12th Conference of the Association for Linguistic Typology (ALT). December 11--15, Canberra, Australia.
\vskip 6pt
\hangpara
{\bf 2017}\hspace{1ex}`Probing the biological conditions for modern phonologies: the late emergence of labiodentals'. Paper presented at the 48th annual meeting of the Australian Linguistics Society (ALS). December 4--7, Sydney, Australia. With Dami{\'a}n Blasi, Scott Moisik, Ani Margvelashvili, Paul Widmer, Dan Dediu and Balthasar Bickel.
\vskip 6pt