-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathprogramme.html
More file actions
1055 lines (903 loc) · 48.8 KB
/
programme.html
File metadata and controls
1055 lines (903 loc) · 48.8 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
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
<!DOCTYPE HTML>
<!--
Strongly Typed by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>SyntaxFest 2025 | Programme</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<style>
table {
border-collapse: collapse;
margin: 20px auto;
background-color: #fff;
border: 2px solid #dee2e6;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
table-layout: fixed;
width: 1400px;
}
strong {
font-weight: 600;
color: #464646;
}
table a {
font-weight: 600;
color: #464646;
}
th, td {
/*border: 1px solid #dee2e6;
padding: 10px;
text-align: center;*/
font-size: 15px; /* Smaller but readable */
line-height: 1.4; /* Tighter line spacing */
padding: 4px 6px; /* Compact padding */
word-wrap: break-word; /* Breaks long words */
white-space: normal; /* Allows wrapping */
vertical-align: top; /* Aligns text to the top */
font-family: Arial, sans-serif; /* Clear, compact font */
text-align: center;
}
table th {
text-align: center;
background-color: #f2f2f2;
color: #343a40;
}
table, th, td {
border: 1px solid rgb(136, 136, 136);
border-collapse: collapse;
}
h3 {
background-color: rgb(224, 224, 224);
padding: 10px;
margin-top: 10px;
border-radius: 5px;
}
.highlight {
background-color: #f8f9fa;
font-size: small;
}
.special {
background-color: #f0f0f0;
}
.ataglance_table {
width: 100%;
padding: 2px 4px !important;
table-layout: auto;
}
</style>
</head>
<body class="no-sidebar is-preload">
<div id="page-wrapper">
<!-- Header -->
<section id="header">
<div class="container">
<!-- Nav -->
<nav id="nav" style="font-size: 22px;">
<ul>
<li><a href="index.html"><span>Home</span></a></li>
<li class="has-dropdown">
<a href="calls.html"><span>Calls</span></a>
<ul class="dropotron">
<li style="white-space: nowrap;"><a href="cfp_tlt.html" style="display: block;">TLT</a></li>
<li style="white-space: nowrap;"><a href="cfp_depling.html" style="display: block;">DepLing</a></li>
<li style="white-space: nowrap;"><a href="cfp_udw.html" style="display: block;">UDW</a></li>
<li style="white-space: nowrap;"><a href="cfp_iwpt.html" style="display: block;">IWPT</a></li>
<li style="white-space: nowrap;"><a href="cfp_quasy.html" style="display: block;">QUASY</a></li>
</ul>
</li>
<li><a href="committees.html"><span>Committees</span></a></li>
<li class="has-dropdown">
<a href="programme.html"><span>Programme</span></a>
<ul class="dropotron">
<li style="white-space: nowrap;"><a href="programme.html" style="display: block;">Schedule</a></li>
<li style="white-space: nowrap;"><a href="keynotes.html" style="display: block;">Keynote Speakers</a></li>
<li style="white-space: nowrap;"><a href="author_instructions.html" style="display: block;">Author Instructions</a></li>
<li style="white-space: nowrap;"><a href="social_events.html" style="display: block;">Social Events</a></li>
<li style="white-space: nowrap;"><a href="photo_highlights.html" style="display: block;">Photo Highlights</a></li>
</ul>
</li>
<li><a href="registration.html"><span>Registration</span></a></li>
<li class="has-dropdown">
<a href="venue.html"><span>Location</span></a>
<ul class="dropotron">
<li style="white-space: nowrap;"><a href="venue.html" style="display: block;">Venue</a></li>
<li style="white-space: nowrap;"><a href="lunch.html" style="display: block;">Lunch</a></li>
<li style="white-space: nowrap;"><a href="travel.html" style="display: block;">Travel</a></li>
<li style="white-space: nowrap;"><a href="accommodation.html" style="display: block;">Accommodation</a></li>
<li style="white-space: nowrap;"><a href="Slovenia.html" style="display: block;">Slovenia</a></li>
<li style="white-space: nowrap;"><a href="recommendations.html" style="display: block;">Recommendations</a></li>
<li style="white-space: nowrap;"><a href="visa.html" style="display: block;">Visa</a></li>
</ul>
</li>
<li><a href="https://syntaxfest.github.io/" target="_blank"><span>Past events</span></a></li>
</ul>
</nav>
</div>
</section>
<!-- Main -->
<section id="main">
<div class="container">
<div id="content">
<!-- Post -->
<article class="box post">
<header>
<h2>Programme at a Glance</h2>
</header>
<p>SyntaxFest 2025 is a <b>3.5-day event</b>, running from Tuesday afternoon, August 26, to Friday, August 29, 2025. On Tuesday morning, we kick off with two <b>pre-conference workshops</b> organized by the <a href="https://unidive.lisn.upsaclay.fr/doku.php?id=start" target="_blank"> UniDive COST Action</a>, which will run in parallel.</p>
<div style="overflow: auto;">
<table border="1" cellspacing="0" cellpadding="6" class="ataglance_table">
<tr>
<th></th>
<th style="font-size: small;">Tuesday,<br><small>August 26, 2025</small></th>
<th style="font-size: small;">Wednesday,<br><small>August 27, 2025</small></th>
<th style="font-size: small;">Thursday,<br><small>August 28, 2025</small></th>
<th style="font-size: small;">Friday,<br><small>August 29, 2025</small></th>
</tr>
<tr>
<td class="highlight"><b>AM Slot 1</b></td>
<td style="background-color:#daf1f1; text-align:center; font-size: small;"><b>UniDive</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>UDW</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>DepLing</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>TLT</b></td>
</tr>
<tr>
<td class="highlight"><b>AM Slot 2</b></td>
<td style="background-color:#daf1f1; text-align:center; font-size: small;"><b>UniDive</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>UDW</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>DepLing</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>QUASY</b></td>
</tr>
<tr>
<td class="highlight"><b>PM Slot 1</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>IWPT</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>UDW</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>TLT</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>QUASY</b></td>
</tr>
<tr>
<td class="highlight"><b>PM Slot 2</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>IWPT</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>Joint posters</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>Joint posters</b></td>
<td style="background-color:#F3E2C7; text-align:center; font-size: small;"><b>Joint posters</b></td>
</tr>
<tr>
<td class="highlight"><b>Evening</b></td>
<td style="background-color:#E0E0E0; text-align:center; font-size: small;"><b>Welcome Reception</b></td>
<td style="background-color:#E0E0E0; text-align:center; font-size: small;"><b>Ljubljana Tour</b></td>
<td style="background-color:#E0E0E0; text-align:center; font-size: small;"><b>Conference Dinner</b></td>
<td style="background-color:#E0E0E0; text-align:center; font-size: small;"><b>NUK Visit</b></td>
</tr>
</table>
</div>
<header style="margin-top: 70px;" id="Top">
<h2>Detailed Schedule</h2>
</header>
<div>
Below is the <strong>preliminary</strong> detailed schedule of the conference. Note that the programme is subject to change before the start of the event. All times are CEST.
<br>All presentation sessions will be held in the Red Hall at the conference venue, with the poster sessions taking place in the lobby area in front of the Red Hall.
<br><br><strong>Last program update:</strong> 19.08.2025.
<br><strong>Instructions for the presenters</strong> can be found <a href="author_instructions.html" target="_blank">here</a>.
<!--<br>A <strong>pdf version</strong> of the programme can be found <a href="Programme_pdf.pdf" target="_blank">here</a>.-->
<br><br>Full <strong>SyntaxFest 2025 proceedings</strong> are now available in the <a href="https://aclanthology.org/venues/syntaxfest/" target="_blank">ACL Anthology</a>.
<br>The <strong>Conference Guide</strong> booklet with the schedule and abstracts is available <a href="booklet/SyntaxFest+2025.pdf" target="_blank">here</a>.
<h3 style="margin-top: 50px;">Jump to:</h3>
<ul>
<li><a href="#Tue"><strong>Day 1: Tuesday, August 26, 2025</strong></a></li>
<li><a href="#Wed"><strong>Day 2: Wednesday, August 27, 2025</strong></a></li>
<li><a href="#Thu"><strong>Day 3: Thursday, August 28, 2025</strong></a></li>
<li><a href="#Fri"><strong>Day 4: Friday, August 29, 2025</strong></a></li>
</ul>
</div>
<div style="overflow: auto;">
<h3 style="text-align: center;" id="Tue">Day 1: Tuesday, August 26, 2025</h3>
<table style="width: 100%;">
<!--<tr>
<th style="width: 20%;"></th>
<th colspan="2">Tuesday<br>Aug 26</th>
</tr>-->
<tr>
<td style="width: 20%;" class="highlight"><strong>08:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Registration Desk Opens</strong></td>
</tr>
<tr>
<td style="width: 20%;" class="highlight"><strong>08:45 – 09:00</strong></td>
<td style="background-color:#daf1f1;" colspan="2">
[08:45-09:00]<br>
<strong>UniDive Welcome & Opening</strong><br>
Location: Red Hall <br>
Chair: Agata Savary
</td>
</tr>
<tr>
<td class="highlight"><strong>09:00 – 10:30</strong></td>
<td style="background-color:#daf1f1;">
[9:00-10:30]<br>
<u><a href="https://unidive.lisn.upsaclay.fr/doku.php?id=other-events:msp" target="_blank"><strong>UniDive Shared Task on Morphosyntactic parsing</strong></a></u><br>
Location: Red Hall
</td>
<td style="background-color:#daf1f1;">
[9:00-10:30]<br>
<u><a href="https://ud-turkic.github.io/udtw25/" target="_blank"><strong>UniDive Turkic UD Workshop</strong></a></u><br>
Location: Grey Hall
</td>
</tr>
<tr>
<td class="highlight"><strong>10:30 – 11:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Coffee Break</strong></td>
</tr>
<tr>
<td class="highlight"><strong>11:00 – 12:30</strong></td>
<td style="background-color:#daf1f1;">
[11:00-12:30]<br>
<u><a href="https://unidive.lisn.upsaclay.fr/doku.php?id=other-events:msp" target="_blank"><strong>UniDive Shared Task on Morphosyntactic parsing</strong></a></u><br>
Location: Red Hall
</td>
<td style="background-color:#daf1f1;">
[11:00-13:00]<br>
<u><a href="https://ud-turkic.github.io/udtw25/" target="_blank"><strong>UniDive Turkic UD Workshop</strong></a></u><br>
Location: Grey Hall
</td>
</tr>
<tr>
<td class="highlight"><strong>12:30 – 14:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Lunch</strong> (Cafeteria)</td>
</tr>
<tr>
<td class="highlight" rowspan="2"><strong>14:00 – 15:20</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Conference Opening</strong> <br>
Chair: Kaja Dobrovoljc <br><br>
<ul>
<li>
[14:00-14:30]<br>
Kaja Dobrovoljc, Local Organising Committee<br>
Mojca Schlamberger Brezar, Faculty of Arts, University of Ljubljana<br>
Marko Robnik-Šikonja, Faculty of Computer and Information Science, University of Ljubljana<br>
Gosse Bouma, Programme Chairs<br>
</li>
</ul>
</td>
</tr>
<tr>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 1 – IWPT</strong><br>
Chair: Stephan Oepen <br><br>
<ul>
<li>
[14:30-15:20]<br>
🎤<strong>KEYNOTE: Isabel Papadimitriou (Harvard University)</strong><br>
<u><a href="keynotes.html#IWPT" target="_blank">What can we learn from language models?</a></u> <br>
<u><a href="https://www.youtube.com/watch?v=nB7BeOuHi_I" target="_blank" style="font-weight: normal;">[Video link]</a></u>
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>15:20 – 15:50</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Coffee Break</strong></td>
</tr>
<tr>
<td class="highlight"><strong>15:50 – 17:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 2 – IWPT</strong><br>
Chair: Miryam de Lhoneux <br><br>
<ul>
<li>
[15:50-16:10]<br>
<a href="https://aclanthology.org/2025.iwpt-1.2/" target="_blank"><strong>Step-by-step Instructions and a Simple Tabular Output Format Improve the Dependency Parsing Accuracy of LLMs</strong></a> <br>
Hiroshi Matsuda, Chunpeng Ma, Masayuki Asahara
</li>
<li>
[16:10-16:30]<br>
<a href="https://aclanthology.org/2025.iwpt-1.1/" target="_blank"><strong>An Efficient Parser for Bounded-Order Product-Free Lambek Categorial Grammar via Term Graph</strong></a> [Remote]<br>
Jinman Zhao, Gerald Penn
</li>
<li>
[16:30-16:50]<br>
<a href="https://aclanthology.org/2025.iwpt-1.5/" target="_blank"><strong>Crosslingual Dependency Parsing of Hawaiian and Cook Islands Māori using Universal Dependencies</strong></a> <br>
Gabriel H. Gilbert, Rolando Coto-Solano, Sally Akevai Nicholas, Lauren Houchens, Sabrina Barton, Trinity Pryor
</li>
<li>
[16:50-17:10]<br>
<a href="https://aclanthology.org/2025.iwpt-1.3/" target="_blank"><strong>CCG Revisited: A Multilingual Empirical Study of the Kuhlmann-Satta Algorithm</strong></a> <br>
Paul He, Gerald Penn
</li>
<li>
[17:10-17:30]<br>
<a href="https://aclanthology.org/2025.iwpt-1.4/" target="_blank"><strong>High-Accuracy Transition-Based Constituency Parsing</strong></a> <br>
John Bauer, Christopher D Manning
</li>
<!--<li>
[17:15-17:30]<br>
<strong>ProsodyBERT: Multi-Task Learning for Extrametricality Detection in Parallel Prose</strong> <br>
Wenjie Hua, Taiyu Wang
</li>-->
</ul>
</td>
</tr>
<tr>
<td class="highlight" rowspan="2"><strong>17:30 – 20:00</strong></td>
<td colspan="2" style="background-color:#E0E0E0;"><strong>Group Photo</strong> (Staircase)</td>
</tr>
<tr>
<td colspan="2" style="background-color:#E0E0E0;"><u><a href="social_events.html#Welcome" target="_blank"><strong>Welcome Reception</strong></a></u></td>
</tr>
</table>
<div style="text-align: right; font-size: larger;">
<a href="#Top"><strong>↑ Back to top</strong></a>
</div>
<h3 style="text-align: center; margin-top: 80px;" id="Wed">Day 2: Wednesday, August 27, 2025</h3>
<table style="width: 100%;">
<tr>
<td style="width: 20%;" class="highlight"><strong>08:30</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Registration Desk Opens</strong></td>
</tr>
<tr>
<td class="highlight"><strong>09:00 – 10:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 3 – UDW</strong><br>
Chair: Gosse Bouma <br><br>
<ul>
<li>
[9:00-9:50]<br>
🎤<strong>KEYNOTE: Miryam de Lhoneux (KU Leuven)</strong><br>
<u><a href="keynotes.html#UDW" target="_blank">Typologically informed NLP evaluation</a></u> <br>
<u><a href="https://www.youtube.com/watch?v=sv8XnAYMQvQ&t=1s" target="_blank" style="font-weight: normal;">[Video link]</a></u>
</li>
<li>
[9:50-10:10]<br>
<a href="https://aclanthology.org/2025.udw-1.9/" target="_blank"><strong>TreEn: A Multilingual Treebank Project on Environmental Discourse</strong></a><br>
Adriana Silvina Pagano, Patricia Chiril, Elisa Chierchiello, Cristina Bosco
</li>
<li>
[10-10-10:30]<br>
<a href="https://aclanthology.org/2025.udw-1.5/" target="_blank"><strong>Crossing Dialectal Boundaries: Building a Treebank for the Dialect of Lesbos through Knowledge Transfer from Standard Modern Greek</strong></a><br>
Stavros Bompolas, Stella Markantonatou, Angela Ralli, Antonios Anastasopoulos
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>10:30 – 11:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Coffee Break</strong></td>
</tr>
<tr>
<td class="highlight"><strong>11:00 – 12:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 4 – UDW</strong><br>
Chair: Bruno Guillaume <br><br>
<ul>
<li>
[11:00-11:15]<br>
<a href="https://aclanthology.org/2025.udw-1.8/" target="_blank"><strong>Negation in Universal Dependencies</strong></a><br>
Jamie Yates Findlay, Dag Trygve Truslew Haug
</li>
<li>
[11:15-11:30]<br>
<a href="https://aclanthology.org/2025.udw-1.7/" target="_blank"><strong>A UD Treebank for Bohairic Coptic</strong></a><br>
Amir Zeldes, Nina Speransky, Nicholas E. Wagner, Caroline T. Schroeder
</li>
<li>
[11:30-11:45]<br>
<a href="https://aclanthology.org/2025.udw-1.2/" target="_blank"><strong>Annotation of Relative Forms in the Egyptian-UJaen Treebank</strong></a><br>
Roberto A. Diaz Hernandez, Daniel Zeman
</li>
<li>
[11:45-12:00]<br>
<a href="https://arxiv.org/abs/2504.02768" target="_blank"><strong>MultiBLiMP 1.0: A Massively Multilingual Benchmark of Linguistic Minimal Pairs</strong></a><br>
Jaap Jumelet, Leonie Weissweiler, Arianna Bisazza
</li>
<li>
[12:00-12:15]<br>
<a href="https://aclanthology.org/2025.udw-1.4/" target="_blank"><strong>Universal Dependencies for Suansu</strong></a><br>
Jessica K. Ivani, Kira Tulchynska
</li>
<li>
[12:15-12:30]<br>
<a href="https://aclanthology.org/2025.udw-1.10/" target="_blank"><strong>Building UD Cairo for Old English in the Classroom</strong></a><br>
Lauren Levine, Junghyun Min, Amir Zeldes
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>12:30 – 14:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Lunch</strong> (Cafeteria)</td>
</tr>
<tr>
<td class="highlight"><strong>14:00 – 15:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 5 – UDW</strong><br>
Chair: Dag Haug <br><br>
<ul>
<li>
[14:00-14:15]<br>
<a href="https://aclanthology.org/2025.udw-1.20/" target="_blank"><strong>ShUD: the First Shanghainese Universal Dependency Treebank</strong></a> [Remote]<br>
Qizhen Yang
</li>
<li>
[14:20-14:35]<br>
<a href="https://aclanthology.org/2025.udw-1.14/" target="_blank"><strong>Parallel Universal Dependencies Treebanks for Turkic Languages</strong></a><br>
Arofat Akhundjanova, Furkan Akkurt, Bermet Chontaeva, Soudabeh Eslami, Cagri Coltekin
</li>
<li>
[14:35-14:50]<br>
<a href="https://aclanthology.org/2025.udw-1.15/" target="_blank"><strong>Towards better annotation practices for symmetrical voice in Universal Dependencies</strong></a><br>
Andrew Thomas Dyer, Colleen Alena O'Brien
</li>
<li>
[14:50-15:10]<br>
<a href="https://aclanthology.org/2025.udw-1.17/" target="_blank"><strong>Annotating Second Language in Universal Dependencies: a Review of Current Practices and Directions for Harmonized Guidelines</strong></a><br>
Arianna Masciolini, Aleksandrs Berdicevskis, Maria Irena Szawerna, Elena Volodina
</li>
<li>
[15:10-15:30]<br>
<a href="https://aclanthology.org/2025.udw-1.1/" target="_blank"><strong>Reference and Modification in Universal Dependencies</strong></a><br>
Joakim Nivre, William Croft
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>15:30 – 16:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Coffee Break</strong></td>
</tr>
<tr>
<td class="highlight"><strong>16:00 – 17:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 6: Joint Poster Session A</strong><br>
Chair: Cagri Coltekin<br><br>
[16:00-16:30]<br>
<strong>Lightning talks (2 min per poster)</strong><br>
Location: Red Hall<br><br>
[16:30-17:30]<br>
<strong>Poster Session</strong><br>
Location: Lobby<br><br>
<ul>
<li>
<a href="https://aclanthology.org/2025.udw-1.3/" target="_blank"><strong>UD Treebanks for Esperanto as a natural language</strong></a><br>
Masanori Oya
</li>
<li>
<a href="https://aclanthology.org/2025.udw-1.6/" target="_blank"><strong>UD-English-CHILDES: A Collected Resource of Gold and Silver Universal Dependencies Trees for Child Language Interactions</strong></a><br>
Xiulin Yang, Zhuoxuan Ju, Lanni Bu, Zoey Liu, Nathan Schneider
</li>
<li>
<a href="https://aclanthology.org/2025.udw-1.11/" target="_blank"><strong>Universal Dependencies for Sindhi</strong></a><br>
John Bauer, Sakeena Shah, Muhammad Shaheer, Mir Afzal Ahmed Talpur, Zubair Sanjrani, Sarwat Qureshi, SHAFI M PIRZADA, Christopher D Manning, Mutee U Rahman
</li>
<li>
<a href="https://aclanthology.org/2025.udw-1.12/" target="_blank"><strong>Universal Dependencies Treebank for Khoekhoe (KDT)</strong></a><br>
Kira Tulchynska, Sylvanus Job, Alena Witzlack-Makarevich
</li>
<li>
<a href="https://aclanthology.org/2025.udw-1.16/" target="_blank"><strong>Extending the Enhanced Universal Dependencies – addressing subjects in pro-drop languages</strong></a><br>
Magali Sanches Duran, Elvis A. de Souza, Maria das Graças Volpe Nunes, Adriana Silvina Pagano, Thiago A. S. Pardo
</li>
<li>
<a href="https://aclanthology.org/2025.udw-1.18/" target="_blank"><strong>Developing a Universal Dependencies Treebank for Alaskan Gwich’in</strong></a><br>
Matthew Kirk Andrews, Cagri Coltekin
</li>
<li>
<a href="https://aclanthology.org/2025.udw-1.19/" target="_blank"><strong>Quid verbumst? Applying a definition of word to Latin in Universal Dependencies</strong></a><br>
Flavio Massimiliano Cecchini
</li>
<li>
<a href="https://aclanthology.org/2025.depling-1.5/" target="_blank"><strong>Introducing KIParla Forest: seeds for a UD annotation of interactional syntax</strong></a><br>
Ludovica Pannitto, Eleonora Zucchini, Silvia Ballarè, Cristina Bosco, Caterina Mauri, Manuela Sanguinetti
</li>
<li>
<a href="https://aclanthology.org/2025.depling-1.16/" target="_blank"><strong>Word Order Variation in Spoken and Written Corpora: A Cross-Linguistic Study of SVO and Alternative Orders</strong></a><br>
Nives Hüll, Kaja Dobrovoljc
</li>
<li>
<a href="https://aclanthology.org/2025.depling-1.9/" target="_blank"><strong>A morpheme-based treebank for Gbaya, an Ubanguian language of Central Africa</strong></a><br>
Roulon-Doko Paulette, Sylvain Kahane, Bruno Guillaume
</li>
<li>
<a href="https://aclanthology.org/2025.depling-1.12/" target="_blank"><strong>UD Annotation of Experience Clauses in Tigrinya</strong></a><br>
Michael Gasser, Nazareth Amlesom Kifle
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>18:00 – 19:30</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><u><a href="social_events.html#TourLjubljana" target="_blank"><strong>Guided Tour of Ljubljana</strong></a></u></td>
</tr>
</table>
<div style="text-align: right; font-size: larger;">
<a href="#Top"><strong>↑ Back to top</strong></a>
</div>
<h3 style="text-align: center; margin-top: 80px;" id="Thu">Day 3: Thursday, August 28, 2025</h3>
<table style="width: 100%;">
<tr>
<td style="width: 20%;" class="highlight"><strong>08:30</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Registration Desk Opens</strong></td>
</tr>
<tr>
<td class="highlight"><strong>09:00 – 10:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 7 – DepLing</strong><br>
Chair: Joakim Nivre <br><br>
<ul>
<li>
[9:00-9:50]<br>
🎤<strong>KEYNOTE: Dan Zeman (Charles University, Prague)</strong><br>
<u><a href="keynotes.html#DepLing" target="_blank">Auxiliaries across Languages and Frameworks</a></u> <br>
<u><a href="https://www.youtube.com/watch?v=NPscoUxMBx0" target="_blank" style="font-weight: normal;">[Video link]</a></u>
</li>
<li>
[9:50-10:10]<br>
<a href="https://aclanthology.org/2025.depling-1.13/" target="_blank"><strong>A corpus-driven description of OV order in Archaic Chinese</strong></a><br>
Qishen WU, Santiago Herrera, Pierre Magistry, Sylvain Kahane
</li>
<li>
[10:10-10:30]<br>
<a href="https://aclanthology.org/2025.depling-1.15/" target="_blank"><strong>Periphrastic Verb Forms in Universal Dependencies</strong></a><br>
Lenka Krippnerová, Daniel Zeman
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>10:30 – 11:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Coffee Break</strong></td>
</tr>
<tr>
<td class="highlight"><strong>11:00 – 12:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 8 – DepLing</strong><br>
Chair: Bruno Guillaume <br><br>
<ul>
<li>
[11:00-11:15]<br>
<a href="https://aclanthology.org/2025.depling-1.2/" target="_blank"><strong>Tracing Syntactic Complexity: Exploring the Evolution of Average Dependency Length Across Three Centuries of Scientific English</strong></a><br>
Marie-Pauline Krielke, Diego Alves, Luigi Talamo
</li>
<li>
[11:15-11:30]<br>
<a href="https://aclanthology.org/2025.depling-1.3/" target="_blank"><strong>Modeling Syntactic Dependencies in Southern Dutch Dialects</strong></a><br>
Loic De Langhe, Jasper Degraeuwe, Melissa Farasyn, Veronique Hoste
</li>
<li>
[11:30-11:45]<br>
<a href="https://aclanthology.org/2025.depling-1.4/" target="_blank"><strong>Assessing the Agreement Competence of Large Language Models</strong></a><br>
Alba Táboas García, Leo Wanner
</li>
<li>
[11:45-12:00]<br>
<a href="https://aclanthology.org/2025.depling-1.8/" target="_blank"><strong>Genre Variation in Dependency Types: A Two-Level Genre Analysis Using the Czech National Corpus</strong></a><br>
Xinying Chen, Miroslav Kubát
</li>
<li>
[12:00-12:15]<br>
<a href="https://aclanthology.org/2025.depling-1.11/" target="_blank"><strong>Distance and Projectivity as Predictors of Sentence Acceptability in Free Word Order Languages</strong></a><br>
Kirill Chuprinko, Artem Novozhilov, Arthur Stepanov
</li>
<li>
[12:15-12:30]<br>
<a href="https://aclanthology.org/2025.depling-1.6/" target="_blank"><strong>Head-initial and head-Final coordinate structures in two annotation schemes of dependency grammar</strong></a><br>
Timothy John Osborne, Chenchen Song
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>12:30 – 14:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Lunch</strong> (Cafeteria)</td>
</tr>
<tr>
<td class="highlight"><strong>14:00 – 15:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 9 – TLT</strong><br>
Chair: Heike Zinsmeister <br><br>
<ul>
<li>
[14:00-14:50]<br>
🎤<strong>KEYNOTE: Amir Zeldes (Georgetown University)</strong><br>
<u><a href="keynotes.html#TLT" target="_blank">Subject prominence revisited: What makes entities salient?</a></u> <br>
<u><a href="https://www.youtube.com/watch?v=ur8PHtyM8f0" target="_blank" style="font-weight: normal;">[Video link]</a></u>
</li>
<li>
[14:50-15:10]<br>
<a href="https://aclanthology.org/2025.tlt-1.17/" target="_blank"><strong>Legal-CGEL: Analyzing Legal Text in the CGELBank Framework</strong></a> [Remote]<br>
Brandon Waldon, Micaela Wells, Devika Tiwari, Meru Gopalan, Nathan Schneider
</li>
<li>
[15:10-15:30]<br>
<a href="https://aclanthology.org/2025.tlt-1.18/" target="_blank"><strong>Status of morphosyntactic features Illustration with written and spoken French UD treebanks</strong></a><br>
Sylvain Kahane, Bruno Guillaume, Léna Brun, Simeng Song
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>15:30 – 16:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Coffee Break</strong></td>
</tr>
<tr>
<td class="highlight"><strong>16:00 – 17:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 10: Joint Poster Session B</strong><br>
Chair: Stefanie Dipper<br><br>
[16:00-16:30]<br>
<strong>Lightning talks (2 min per poster)</strong><br>
Location: Red Hall<br><br>
[16:30-17:30]<br>
<strong>Poster Session</strong><br>
Location: Lobby<br><br>
<ul>
<li>
<a href="https://aclanthology.org/2025.tlt-1.2/" target="_blank"><strong>Universal Dependencies for the Alemannic Alsatian Dialects </strong></a><br>
Barbara Hoff, Nathanaël Beiner, Delphine Bernhard
</li>
<li>
<a href="https://aclanthology.org/2025.tlt-1.3/" target="_blank"><strong>Expanding the Universal Dependencies Ancient Hebrew Treebank with Constituency Data </strong></a><br>
Daniel G. Swanson
</li>
<li>
<a href="https://aclanthology.org/2025.tlt-1.4/" target="_blank"><strong>Graph Databases for Fast Queries in UD Treebanks </strong></a><br>
Niklas Deworetzki, Peter Ljunglöf
</li>
<li>
<strong>Segmentation of Sino-origin words to enhance the representation of Korean and Japanese in S/UD-format treebanks </strong><br>
Raoul Blin, Jinnam Choi
</li>
<li>
<a href="https://aclanthology.org/2025.tlt-1.11/" target="_blank"><strong>A New Hebrew Universal Dependency Treebank: The First Treebank of Post-Rabbinic Historical Hebrew </strong></a><br>
Rachel Tal, Shlomit Fuchs, Orly Albeck, Elisheva Brauner, Yitzchak Lindenbaum, Ephraim Meiri, Avi Shmidman
</li>
<li>
<a href="https://aclanthology.org/2025.tlt-1.16/" target="_blank"><strong>Universal Dependency Treebank for a low-resource Dardic Language: Torwali </strong></a><br>
Naeem Uddin, Daniel Zeman
</li>
<li>
<a href="https://aclanthology.org/2025.tlt-1.12/" target="_blank"><strong>Syntax of referents of relative markers: Evidence from a corpus of learner English</strong></a><br>
Izabela Czerniak, Debopam Das
</li>
<li>
<a href="https://aclanthology.org/2025.depling-1.1/" target="_blank"><strong>A Typology of Non-Projective Patterns in Unas's and Teti's Pyramid Texts</strong></a><br>
Roberto A. Diaz Hernandez
</li>
<li>
<strong>Dependency Analysis of Chinese Comparative Sentences </strong><br>
Zexin Liu
</li>
<li>
<a href="https://aclanthology.org/2025.depling-1.10/" target="_blank"><strong>Dative alternations in less-researched syntactic patterns of standard Croatian </strong></a><br>
Matea Andrea Birtić, Siniša Runjaić, Robert Sviben
</li>
<li>
<strong>A Quantitative Study of Subject-Predicate-Object Word Class Composition in vernacular Chinese Based on Dependency Grammar </strong><br>
Bingli Liu, Yiyi Zhao
</li>
<li>
<a href="https://aclanthology.org/2025.quasy-1.14/" target="_blank"><strong>Syntactic units and their length distributions: A case study in Czech </strong></a><br>
Michaela Nogolová, Michaela Koščová, Jan Macutek, Radek Cech
</li>
<li>
<a href="https://aclanthology.org/2025.quasy-1.8/" target="_blank"><strong>Modeling the Law of Abbreviation in Classical, Modern, and ChatGPT-Generated Chinese: A Power-Law Analysis of Structural Economy </strong></a><br>
Jianwei Yan, Heng Chen
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>19:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><u><a href="social_events.html#Dinner" target="_blank"><strong>Conference Dinner</strong></a></u></td>
</tr>
</table>
<div style="text-align: right; font-size: larger;">
<a href="#Top"><strong>↑ Back to top</strong></a>
</div>
<h3 style="text-align: center; margin-top: 80px;" id="Fri">Day 4: Friday, August 29, 2025</h3>
<table style="width: 100%;">
<tr>
<td style="width: 20%;" class="highlight"><strong>08:30</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Registration Desk Opens</strong></td>
</tr>
<tr>
<td class="highlight"><strong>09:00 – 10:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 11 – TLT</strong><br>
Chair: Amir Zeldes <br><br>
<ul>
<li>
[9:00-9:20]<br>
<a href="https://aclanthology.org/2025.tlt-1.15/" target="_blank"><strong>ComparaTree: A Multi-Level Comparative Treebank Analysis Tool</strong></a><br>
Luka Terčon, Kaja Dobrovoljc
</li>
<li>
[9:20-9:40]<br>
<a href="https://aclanthology.org/2025.tlt-1.10/" target="_blank"><strong>Metaphorical Heads and Literal Dependents: Syntactic Properties of Metaphors in German</strong></a><br>
Stefanie Dipper
</li>
<li>
[9:40-10:00]<br>
<a href="https://aclanthology.org/2025.tlt-1.9/" target="_blank"><strong>Automatic Evaluation of Linguistic Validity in Japanese CCG Treebanks</strong></a><br>
Asa Tomita, Hitomi Yanaka, Daisuke Bekki
</li>
<li>
[10:00-10:15]<br>
<a href="https://aclanthology.org/2025.tlt-1.1/" target="_blank"><strong>Annotation of Chinese Light Verb Constructions within UMR</strong></a> [Remote]<br>
Jingyi Li, Jin Zhao, Nianwen Xue, Shili Ge
</li>
<li>
[10:15-10:30]<br>
<a href="https://aclanthology.org/2025.tlt-1.5/" target="_blank"><strong>STARK: A Toolkit for Dependency (Sub)Tree Extraction and Analysis</strong></a><br>
Luka Krsnik, Kaja Dobrovoljc
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>10:30 – 11:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Coffee Break</strong></td>
</tr>
<tr>
<td class="highlight"><strong>11:00 – 12:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 12 – QUASY</strong><br>
Chair: Xinying Chen <br><br>
<ul>
<li>
[11:00-11:50]<br>
🎤<strong>KEYNOTE: Xiaofei Lu (The Pennsylvania State University)</strong><br>
<u><a href="keynotes.html#QUASY" target="_blank">The rhetorical and pragmatic functions of syntactically complex structures in academic and second language writing</a></u>
<u><a href="https://www.youtube.com/watch?v=V7Z9QPYM-BM" target="_blank" style="font-weight: normal;">[Video link]</a></u>
</li>
<li>
[11:50-12:10]<br>
<a href="https://aclanthology.org/2025.quasy-1.12/" target="_blank"><strong>On the Flatness, Non-linearity, and Branching Direction of Natural Language and Random Constituency Trees: Analyzing Structural Variation within and across Languages</strong></a><br>
Taiga Ishii, Yusuke Miyao
</li>
<li>
[12:10-12:30]<br>
<a href="https://aclanthology.org/2025.quasy-1.5/" target="_blank"><strong>Extraction of Contrastive Rules from Syntactic Treebanks: A Case Study in Romance Languages</strong></a><br>
Santiago Herrera, Ioana-Madalina Silai, Bruno Guillaume, Sylvain Kahane
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>12:30 – 14:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Lunch</strong> (Cafeteria)</td>
</tr>
<tr>
<td class="highlight"><strong>14:00 – 15:30</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 13 – QUASY</strong><br>
Chair: Jianwei Yan <br><br>
<ul>
<li>
[14:00-14:15]<br>
<a href="https://aclanthology.org/2025.quasy-1.6/" target="_blank"><strong>A Quantitative Study of Syntactic Complexity across Genres: Dependency Distance in English and Chinese</strong></a><br>
Yaqin Wang
</li>
<li>
[14:15-14:30]<br>
<a href="https://aclanthology.org/2025.quasy-1.7/" target="_blank"><strong>Syntactic Complexity in L2 Reading: A Comparison of Adapted and Original Czech Texts</strong></a><br>
Žaneta Stiborská, Michaela Nogolová, Xinying Chen, Miroslav Kubát
</li>
<li>
[14:30-14:45]<br>
<a href="https://aclanthology.org/2025.quasy-1.13/" target="_blank"><strong>First Insights into the Syntax of Slovene Student Writing: A Statistical Analysis of Šolar 3.0 vs. Učbeniki 1.0</strong></a><br>
Tina Munda, Špela Arhar Holdt
</li>
<li>
[14:45-15:00]<br>
<a href="https://aclanthology.org/2025.quasy-1.1/" target="_blank"><strong>Subject-Verb Agreement Alternations in Spanish Pseudopartitive Constructions: A Corpus Study</strong></a><br>
Marina Cerebrinsky
</li>
<li>
[15:00-15:15]<br>
<a href="https://aclanthology.org/2025.quasy-1.9/" target="_blank"><strong>A Computational Method for Analyzing Syntactic Profiles: The Case of the ELEXIS-WSD Parallel Sense-Annotated Corpus</strong></a><br>
Jaka Čibej
</li>
<li>
[15:15-15:30]<br>
<strong>Syntactic Complexity and News Credibility in Czech Media</strong><br>
Miroslav Kubát, Xinying Chen, Michaela Nogolová, Michal Místecký
</li>
</ul>
</td>
</tr>
<tr>
<td class="highlight"><strong>15:30 – 16:00</strong></td>
<td style="background-color:#E0E0E0;" colspan="2"><strong>Coffee Break</strong></td>
</tr>
<tr>
<td class="highlight"><strong>16:00 – 17:20</strong></td>
<td colspan="2" style="background-color:#F3E2C7; text-align: left;">
<strong>Session 14: Joint Poster Session C</strong><br>
Chair: Miroslav Kubát<br><br>
[16:00-16:20]<br>
<strong>Lightning talks (2 min per poster)</strong><br>
Location: Red Hall<br><br>
[16:20-17:20]<br>
<strong>Poster Session</strong><br>
Location: Lobby<br><br>
<ul>
<li>
<a href="https://aclanthology.org/2025.quasy-1.2/" target="_blank"><strong>Degree centrality as a measure of robustness of dependency structures of the sentences in a large-scale learner corpus of English </strong></a><br>
Masanori Oya
</li>
<li>
<a href="https://aclanthology.org/2025.quasy-1.4/" target="_blank"><strong>Application of Existing Readability Methods to the Ukrainian Language: A Comprehensive Study </strong></a><br>
Serhii D Prykhodchenko, Oksana Yu. Prykhodchenko
</li>
<li>
<a href="https://aclanthology.org/2025.quasy-1.10/" target="_blank"><strong>The Interplay of Noun Phrase Complexity and Modification Type in Scientific Writing </strong></a><br>
Isabell Landwehr
</li>
<li>
<a href="https://aclanthology.org/2025.quasy-1.11/" target="_blank"><strong>Predictability Effects of Spanish-English Code-Switching: A Directionality and Part of Speech Analysis </strong></a><br>
Josh Higdon, Valeria Pagliai, Zoey Liu
</li>
<li>
<a href="https://aclanthology.org/2025.quasy-1.15/" target="_blank"><strong>Do Multilingual Transformers Encode Paninian Grammatical Relations? A Layer-wise Probing Study </strong></a><br>
Akshit Kumar, Dipti Sharma, Parameswari Krishnamurthy
</li>
<li>
<a href="https://aclanthology.org/2025.tlt-1.6/" target="_blank"><strong>«Are you Afraid of Ghosts?» A Proposal for Busting Predicate Ellipsis in Universal Dependencies </strong></a><br>
Claudia Corbetta, Federica Iurescia, Marco Carlo Passarotti
</li>
<li>
<a href="https://aclanthology.org/2025.tlt-1.8/" target="_blank"><strong>Case Syncretism in Kasavakan Puyuma: A Field Data Analysis of Noun Phrase Markers </strong></a><br>
Deborah Watty, Yung-Jui Yao, Jens N. Watty
</li>
<li>