-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGRAMMAR.tex
3909 lines (3304 loc) · 228 KB
/
GRAMMAR.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[a4paper, 12pt, twoside, openright, final]{book}
\usepackage[margin=2cm]{geometry}
\usepackage{fontspec}
\usepackage{unicode-math}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{array, tabularx, multirow}
\usepackage{longtable}
\usepackage{float}
\usepackage{tabularray}
\usepackage{graphicx}
\usepackage{wasysym}
\usepackage{xcolor}
\usepackage{amsmath}
\usepackage[hidelinks]{hyperref}
\usepackage{tikz}
\usepackage[linguistics]{forest}
\forestset{qtree/.style={for tree={parent anchor=south,
child anchor=north,align=center,inner sep=1pt}}}
%\definecolor{bgcolor}{HTML}{2D2A2E}
%\definecolor{fgcolor}{HTML}{FAFCFC}
%\pagecolor{bgcolor}
%\color{fgcolor}
\setmainfont[Numbers=OldStyle]{Minion 3}
\setmathfont{latinmodern-math.otf}
\setmathfont[range=\mathit]{Minion 3 Italic}
%% TODO: Remove this and fix overfull boxes.
%% TODO: Switch to the book class at this point.
\hfuzz=10000pt
%\geometry{showframe}
%% Normalise to NFC.
\XeTeXinputnormalization=1
%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Environment and Layout
%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ExplSyntaxOn
\makeatletter
\edef \tableofcontents {
\noexpand \chapter \noexpand* {
Contents
\noexpand\@mkboth { Contents } { Contents }
}
\noexpand\@starttoc{toc}
}
\cs_generate_variant:Nn \seq_set_split_keep_spaces:Nnn { Nnx }
\def \dlabelstyle #1 {
\def\descriptionlabel ##1 {\hspace\labelsep \normalfont #1 ##1}
}
\cs_new:Npn \__two_cols:nnnnn #1 #2 #3 #4 #5 {
\ifvmode\else\unskip\par\fi
\noindent\leavevmode
\hbox to \hsize {
\hbox to #3 { \vtop {#1} }
\hskip #4
\hbox to #5 { \vtop {#2} }
} \par
}
\NewDocumentCommand \TwoCols {
D[]{.475\hsize}
D[]{.475\hsize}
D[]{0pt plus 1fill}
+m
+m
} {
\__two_cols:nnnnn{#4}{#5}{#1}{#3}{#2}
}
\cs_new:Npn \__gloss_insert_table_header: {
%% Generating columns doesn’t seem to work, so this hack will do. If you
%% need a gloss with more columns than this, I suggest you pause and take
%% a moment to reflect on your life choices.
\begin {tabular} { @{} *{100}l }
}
\cs_new:Npn \__gloss_table_start: {
\ifvmode\else\unskip\par\fi
\addvspace { 8pt }
%\vtop{\iffalse}\fi
\noindent
}
\cs_new:Npn \__gloss_table_end: {
\end {tabular}
\ifvmode\else\par\fi
\addvspace { 8pt }
%\iffalse{\fi}
\everypar { \setbox\z@\lastbox \everypar{} }
}
%% Rescan a token list.
\cs_new:Npn \__gloss_rescan:n #1 {
{ \tl_rescan:nn {} { #1 } }
}
%% Format a single line of a gloss.
%%
%% The line number must be stored in \g_tempb_int.
%%
%% This takes the line #1 and formats it, inserting the contents of #2
%% at the start of each line, and #3 at the beginning of each column.
%% #3 can be a macro that takes one argument, in which case it will be
%% passed the contents of the column.
\cs_new:Npn \__gloss_format_line:nnn #1 #2 #3 {
#2
\seq_set_split:Nnn \l_tmpa_seq { | } { #1 }
\bool_set_true:N \l_tmpa_bool
\seq_map_inline:Nn \l_tmpa_seq {
\bool_if:NF \l_tmpa_bool { & }
\bool_set_false:N \l_tmpa_bool
#3 { \__gloss_rescan:n {##1} }
}
}
%% Format a gloss.
%%
%% This iterates over all lines in #1 and calls #2 on it.
\cs_new:Npn \__gloss_format:nn #1 #2 {
\int_gset:Nn \g_tmpb_int { 1 }
\tl_map_inline:nn { #1 } {
\tl_if_blank:nF { ##1 } {
%% Insert \cr or table header if this is the first line. We
%% need to emit this here, as otherwise, TeX will encounter
%% unexpandable tokens before the formatter (#2) is executed,
%% which will start the cell before any actual content has
%% been inserted; this means we can no longer tell TeX to
%% \omit the cell header, which causes \multicolumn to break
%% horribly.
%%
%% By emitting the table header here, we ensure that instead,
%% the formatter is the first thing TeX gets to see after the
%% initial table header and after every \cr.
\int_compare:nNnTF { \g_tmpb_int } > { 1 } { \\ } { \__gloss_insert_table_header: }
#2 { ##1 }
\int_gincr:N \g_tmpb_int
}
}
}
%% Two lines means object language + gloss.
\cs_new:Npn \__gloss_two_lines:n #1 {
\cs_gset:Npn \__formatter:n ##1 {
\__gloss_format_line:nnn { ##1 } {} {
\int_compare:nNnT { \g_tmpb_int } = { 1 } { \itshape }
}
}
\__gloss_format:nn { #1 } { \__formatter:n }
}
%% Full gloss (text, object language, pronunciation, gloss, and translation).
\cs_new:Npn \__gloss_five_lines:n #1 {
\cs_gset:Npn \__formatter_i:n ##1 { \multicolumn {100} {@{}l} {\itshape\bfseries\__gloss_rescan:n {##1}} }
\cs_gset:Npn \__formatter_ii:n ##1 { \__gloss_format_line:nnn {##1} {} {\itshape} }
\cs_gset:Npn \__formatter_iii:n ##1 { \__gloss_format_line:nnn {##1} {} {} }
\cs_gset:Npn \__formatter_iv:n ##1 { \__gloss_format_line:nnn {##1} {} {} }
\cs_gset:Npn \__formatter_v:n ##1 { \multicolumn {100} {@{}l} {\__gloss_rescan:n {##1}} }
\__gloss_format:nn { #1 } {
\cs:w __formatter_ \int_to_roman:n \g_tmpb_int :n \cs_end:
}
}
%% Full gloss w/o IPA (text, object language, gloss, and translation).
\cs_new:Npn \__gloss_four_lines:n #1 {
\cs_gset:Npn \__formatter_i:n ##1 { \multicolumn {100} {@{}l} {\itshape\bfseries \__gloss_rescan:n {##1} } }
\cs_gset:Npn \__formatter_ii:n ##1 { \__gloss_format_line:nnn {##1} {} {\itshape} }
\cs_gset:Npn \__formatter_iii:n ##1 { \__gloss_format_line:nnn {##1} {} {} }
\cs_gset:Npn \__formatter_iv:n ##1 { \multicolumn {100} {@{}l} {\__gloss_rescan:n {##1}} }
\__gloss_format:nn { #1 } {
\cs:w __formatter_ \int_to_roman:n \g_tmpb_int :n \cs_end:
}
}
\NewDocumentCommand \gloss {
> { \exp_args:Nx \SplitList { \iow_char:N \^^M } } +v
} {
\__gloss_table_start:
%% Count lines.
\int_gset:Nn \g_tmpa_int { 0 }
\tl_map_inline:nn { #1 } {
\tl_if_blank:nF { ##1 } {
\int_gincr:N \g_tmpa_int
}
}
%% Dispatch the appropriate number of lines.
\int_case:nnF { \g_tmpa_int } {
2 { \__gloss_two_lines:n { #1 } }
4 { \__gloss_four_lines:n { #1 } }
5 { \__gloss_five_lines:n { #1 } }
}
%% Any other line count is an error.
{
\msg_new:nnn { gloss } { too-many-lines } {
Too~many~lines~in~gloss:~expected~2,~got~\int_use:N \g_tmpa_int
}
\msg_error:nn { gloss } { too-many-lines }
}
%% Close the table.
\__gloss_table_end:
}
%% Process two words. Used by \multigloss.
\cs_new:Npn \__uf_multigloss_word:nn #1 #2 {
\allowbreak
\hbox {
\begin{tabular}{@{}l}
\itshape \tl_rescan:nn {} {#1} \\
\noalign{\vskip-6pt}
\tl_rescan:nn {} {#2} \\
\end{tabular}
}
\space
}
%% Process two lines. Used by \multigloss.
\cs_new:Npn \__uf_multigloss:NN #1 #2 {
\ifvmode\noindent\leavevmode\fi
%% Split the lines into words.
\seq_set_split_keep_spaces:Nnx \l_tmpa_seq { | } { #1 }
\seq_set_split_keep_spaces:Nnx \l_tmpb_seq { | } { #2 }
%% Iterate over each word in the two lines.
\seq_mapthread_function:NNN \l_tmpa_seq \l_tmpb_seq \__uf_multigloss_word:nn
}
%% Typeset two-line glosses across multiple lines.
\NewDocumentCommand \multigloss {
> { \exp_args:Nx \SplitList { \iow_char:N \^^M } } +v
} {
\ifvmode\else\unskip\par\fi
\begingroup
\linespread { 1.5 } \selectfont
\raggedright
\begin{sloppypar}
%% Iterate over each line, two lines at a time.
\bool_gset_true:N \g_tmpa_bool
\tl_map_inline:nn { #1 } {
%% Ignore empty lines entirely.
\tl_if_blank:nF { ##1 } {
\bool_if:NTF \g_tmpa_bool {
\tl_gset:Nn \g_tmpa_tl { ##1 }
} {
\tl_gset:Nn \g_tmpb_tl { ##1 }
\__uf_multigloss:NN \g_tmpa_tl \g_tmpb_tl
}
%% Flip.
\bool_gset_inverse:N \g_tmpa_bool
}
}
\end{sloppypar}
\endgroup
}
\renewenvironment {verse} {
\ifvmode\else\unskip\par\fi
\begingroup
\obeylines
\obeyspaces
\parindent0pt
\parskip0pt
} {
\par
\endgroup
}
\def \footnoterule {
\kern -3\p@
\hrule \@width .4\columnwidth
\kern 2.6\p@
}
\def \@makefntext #1 {
\setlength \parindent { 1em }
\noindent {
\mbox {
\llap { {}\textsuperscript{\@thefnmark} \kern.5pt }
} { #1 }
}
}
\newlength{\EnumItemSep} \EnumItemSep-3pt
\newenvironment { enum } [1] [0] {
\vspace { -.5em }
\settowidth \leftmargini { 99.\hskip\labelsep }
\begin { enumerate }
\setcounter { enumi } { #1 }
\itemsep \EnumItemSep
} {
\end { enumerate }
\vspace { -.5em }
}
\newenvironment { dlist } [1] [{}] {
\vspace { -.5em }
\begingroup
\def\descriptionlabel ##1 {\hspace\labelsep \normalfont #1 ##1}
\settowidth \leftmargini { 99.\hskip\labelsep }
\begin { description }
\itemsep \EnumItemSep
} {
\end { description }
\endgroup
\vspace { -.5em }
}
\def\pfabbr{{\normalfont\scshape pf\space}}
\def\pf#1{\pfabbr\textit{#1}}
\cs_new:Npn \items {
\ifvmode\else\unskip\par\fi
\addvspace\medskipamount
\begingroup
\itemize\kern-\topsep
\itemsep0pt
}
\cs_new:Npn \enditems {
\enditemize\kern-\topsep
\endgroup
\addvspace\medskipamount
}
\cs_new:Npn \__uf_no_indent: {
\global \everypar { \setbox\z@\lastbox \everypar{} }
}
\cs_new:Npn \examples {
\ifvmode\else\unskip\par\fi
\begingroup
\def \labelitemi { \(\diamond\) }
\items
}
\cs_new:Npn \endexamples {
\enditems
\endgroup
\__uf_no_indent:
}
%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Settings and Utility
%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def \UF { \bfseries \itshape }
\let \nf \normalfont
\def \textnf #1 {{\nf #1}}
\def \d {ḍ}
\def \D {Ḍ}
\def \b {ḅ}
\def \B {Ḅ}
\def \L {\textsuperscript{L}}
\def \N {\textsuperscript{N}}
\long \def \s #1 {{\normalfont\scshape #1 }}
\let \w \textit
\let \b \textbf
\let \Sl \textbackslash
\let \Sub \textsubscript
\let \Sup \textsuperscript
\def \Bar #1 { \(\overline{\mathrm{#1}}\) }
\def \parheading #1 { \noindent \textbf{#1} }
\let\MC\multicolumn
\newbox\BoxA
\newbox\BoxB
\def \Item #1 {
\item [ \textsc{\textbf{#1}} ]
}
\def \Paragraph #1 {
\ifvmode\else\unskip\par\fi
\addvspace \bigskipamount
\noindent \leavevmode \ignorespaces \textbf{#1} \par
\everypar { \setbox 0 \lastbox \everypar {} }
\nobreak
}
\frenchspacing
\raggedbottom
\AtBeginDocument {
\def \today {
\int_value:w \day \space
\int_case:nn { \month } {
{ 1 } { January }
{ 2 } { February }
{ 3 } { March }
{ 4 } { April }
{ 5 } { May }
{ 6 } { June }
{ 7 } { July }
{ 8 } { August }
{ 9 } { September }
{ 10 } { October }
{ 11 } { November }
{ 12 } { December }
} \space
\int_value:w \year
}
}
\def \ps@ultrafrench {
\let \@oddfoot \@empty
\let \@evenfoot \@empty
\let \@mkboth \markboth
\def \@evenhead { \thepage \hfil \leftmark }
\def \@oddhead { \rightmark \hfil \thepage }
\def \chaptermark ##1 {
\markboth {
\thechapter \quad ##1
} { }
}
\def \sectionmark ##1 {
\markright {
\thesection \quad ##1
}
}
}
%% Override this to set the pagestyle to 'empty'.
\def \chapter {
\cleardoublepage
\thispagestyle { empty }
\global \@topnum \z@
\@afterindentfalse
\secdef \@chapter \@schapter
}
\pagestyle{ultrafrench}
\makeatother
\ExplSyntaxOff
%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Document
%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{A Comprehensive Diachronic Grammar of Modern ULTRAFRENCH}
\author{Ætérnal, Annwan, Agma Schwa}
\date{\today}
\begin{document}
\makeatletter
\thispagestyle{empty}
\begin{titlepage}
\null\vfil
\vskip 60\p@
\centering
\large
{\LARGE \@title \par}%
\vskip1em
{\LARGE \w{Ŷrávér Réy’ác’hraúníc’hâ Rzaúsdâ Át’hebhaú Raúl} \par}%
\vskip 1em
{\Large \@author \par}%
\vskip .5em
\today \par
\vfil\null
\end{titlepage}
\makeatother
\setcounter{page}{1}
\thispagestyle{empty}
\tableofcontents
\chapter{Phonology and Evolution from Modern Pseudo-French}\label{sec:phonology}
\thispagestyle{empty}
{\def\arraystretch{1.25}\setlength{\tabcolsep}{.4em}
\noindent\begin{tabular}{@{}l|l|l|l|l|ll@{\quad}l|l|l}
& Labial & Coronal & Palatal & Velar & Glottal && & Front & Back \\ \cline{1-6} \cline{8-10}
Stop & b, bʱ & d & & & && Close & i ĩ ĩ̃ i̥ y ẙ & u ũ ũ̃ u̥ \\ \cline{1-6} \cline{8-10}
Nasal & & n & & & && Near-close & ʏ̃ ʏ̃̃ & \\ \cline{1-6} \cline{8-10}
Fricative & ɸ β & s z, θ ð & ɕ ʑ, (ç) & x & h && Close-mid & e ẽ ẽ̃ e̥ & o o̥ \\ \cline{1-6} \cline{8-10}
Fric. (ʁ-coloured) & βʶ & sʶ zʶ, ɮ̃ʶ & ɕʶ ʑʶ & & && Mid & \multicolumn{2}{c}{ə ə̥} \\\cline{1-6} \cline{8-10}
Trill & & & & ʀ & && Open-mid & ɛ ɛ̃ ɛ̃̃ & ɔ̃ ɔ̃̃ \\ \cline{1-6} \cline{8-10}
Approximant & ʋ̃ & & ɥ ɥ̃, j̊ & ɰ ɰ̃ & && Near-open & \multicolumn{2}{c}{ɐ ɐ̥} \\ \cline{1-6} \cline{8-10}
Lateral Fricative & & ɮ̃ & ʎ̝̃ & & && Open & & ɑ̃ ɑ̃̃ \\
\end{tabular}}\bigskip
\parheading{Legend}\par\noindent
Ṽ = nasalised vowel, Ṽ̃ = nasal vowel, V = any vowel (or, in conjunction with Ṽ/Ṽ̃, oral vowel)\\
N = nasal consonant, C̃ = nasalised consonant (e.g. /ɰ̃/, but not true nasals), C = any consonant.\medskip
\def\scalpha{\kern-2pt\raisebox{2pt}{\Sub α}}
%% NOTE: In case the changes below and the ones listed
%% in the Lexurgy file differ, the latter are authoritative,
%% as I may forget to update these here sometimes.
\section{Sound Changes}
\TwoCols[.5\hsize][.45\hsize][0pt]{
\parheading{Preliminary Changes}
\begin{enum}
\item g, w > ɰ ⟨r⟩
\item œ, œ̃, ø > y, ʏ̃, ʏ̃
\item ɔ > o
\item u > v / \_o
\item y > j / \_(\#)V
\item V\scalpha > $\emptyset$ / \_\#V\scalpha
\item lj, lɥ > ʎ
\item j > ɥ ⟨y’⟩
\item ɰ > ɥ / \_i
\item ʁʁ > ʀ
\item sʁ, ʃʁ, zʁ, ʒʁ > sʶ, ʃʶ, zʶ, ʒʶ
\item vʁ > vʶ
\item ʁ > ɰ
\item C > $\emptyset$ / \#\_C
\item C > $\emptyset$ / C\_\#
\item k > x ⟨c’h⟩
\item ʃ, ʃʶ, ʒ, ʒʶ > ɕ, ɕʶ, ʑ, ʑʶ
\item nt > nθ
\item t > ḍ [d] (‘hard /d/’)
\item p > ḅ [b] (‘hard /b/’)
\item f, v, vʶ > ɸ ⟨f⟩, β ⟨b’h⟩, βʶ ⟨v́⟩
\end{enum}
\parheading{Simplification}
\begin{enum}[21]
\item d, ḍ, b, ḅ > $\emptyset$ / \_s
\end{enum}
}{
\parheading{Great Nasal Shift}
\begin{enum}[22]
\item Ṽl > ɰ̃ ⟨w⟩
\item V > Ṽ̃ / [NC̃ɥɰ]\_N\#
\item V, Ṽ > Ṽ, Ṽ̃ / \_[NC̃ɥɰ], [NC̃ɥɰ]\_
\item ə̃, ə̃̃, ã, ã̃, õ, õ̃ > ɛ̃, ɛ̃̃, ɑ̃, ɑ̃̃, ɔ̃, ɔ̃̃
\item N, C̃ > $\emptyset$ / V\_\#
\item ɲ, ŋ > n
\item V, Ṽ > $\emptyset$ / N \_ N
\item m, l, ʎ > ʋ̃ ⟨v⟩, ɮ̃ ⟨l⟩, ʎ̝̃ ⟨ḷ⟩
\item ɮ̃ɰ, ɰɮ̃ > ɮ̃ʶ ⟨ł⟩
\end{enum}
\parheading{Intervocalic Lenition (/ V\_V is implied)}
\begin{enum}[31]
\item x, s, z > h
\item ɕ, ɮ̃, ʎ̝̃ > j̊ ⟨c̣⟩, ɥ̃, ɰ̃
\item nθ > n
\item d, ḍ, b, ḅ > ð ⟨d’h⟩, θ ⟨t’h⟩, β, bʱ ⟨bh⟩
\item ɸ > β / V\_V
\end{enum}
\parheading{Late Changes\footnotemark}
\begin{enum}[36]
\item C[+stop, -alveolar]C\scalpha > C\scalpha
\item C[+stop]C\scalpha[+stop] > C\scalpha
\item h > $\emptyset$ / hV\_
\item ə > $\emptyset$ / C\_C
\item V[-nasalised, -nasal] > ə̥ / \_\#
\item ɰɰ > ʀ
\item eɛ̃ > ẽ
\end{enum}
}\medskip
\footnotetext{The start of this section is essentially also the start of Early Modern UF.}
\section{Pronunciation, Allophony, and Stress}\label{subsec:pronunciation-allophony-and-stress}
There is not a lot of allophony in UF, save that /x/ is realised as [χ] around back vowels and [ɕ] elsewhere, e.g.
\w{c’húr} /xũɰ/ ‘to shrink’ is pronounced [χũˑˠ]. Furthermore, /h/ is [ç] before variants of /i/ and /y/, and [h] elsewhere.
The vast majority PF words are stressed on the last syllable of the root, e.g. \w{ad’hór} ‘to love’ /aˈðɔ̃ɰ/, but \w{b’had’hóré}
‘you (\s{pl}) love’ /βaˈðɔ̃.ɰɛ̃/. The stress is not indicated in writing, neither in actual texts, nor in this
grammar or in dictionaries. The main exception to this are names, which are generally stressed on the first syllable,
and receive secondary stress on the last syllable,\footnote{That is, unless the name ends in an obvious suffix, in which case the last
syllable before any such suffixes receives secondary stress; however, this is generally quite rare.} e.g. \w{Daúvníc’h} /ˈdɔ̃ʋ̃ˌnĩx/.
The only exception to this rule are certain particles and irregular verbs, some of which have irregular stress; for instance,
the forms of \w{eḍ} ‘to be’ are all stressed on the first syllable. Any such words that deviate from the norm will be pointed
out in this grammar and in dictionaries.
Oral vowels before the stressed syllable are often somewhat muted or reduced, albeit still audible, and stressed vowels are lengthened if they
are nasalised, e.g. the pronunciation of \w{ad’hór}, which we just transcribed as /aˈðɔ̃ɰ/, is actually closer to [ɐ̯ˈðɔ̃ˑɰ].
Word-final voiceless \w{ẹ} is always /ə̥/. Finally, non-back vowels that are followed by /ɰ/ or /ɰ̃/ are retracted, e.g. \w{y’ẹ́rẹ́}, the future
stem of \w{y’ẹ́} ‘forbid’, is phonemically /ɥẽˈɰẽ/, but pronounced [ɥɘ̃ˈɰẽ].
Oral vowels have a nasalised and nasal counterpart. /i/ and /u/ do not vary in quality when na\-sa\-lis\-ed.
/a/ is normally [ɐ], but becomes [ɑ] when nasalised or nasal. Similarly, /e/ becomes [ɛ],
/y/ becomes [ʏ], and /o/ becomes [ɔ]. Note that nasalised [ẽ] exists, but it’s
rare. The quality never changes when going from nasalised to nasal. The schwa has no nasal(lised) counterpart. Lastly, oral vowel
also have voiceless counterparts, whose quality is the same as that of the base vowel.
The difference between nasalised vowels and nasal vowels is that the former are merely coarticulated with nasalisation, whereas
the latter are completely and utterly \textit{in the nose}—no air escapes through the mouth when a nasal vowel is articulated, and all
the air flows just through the nose. Middle UF and some modern dialects also distinguish between sinistral and dextral nasal
vowels,\footnote{Sinistral nasal vowels are articulated with the left nostril, and dextral nasal vowels with the right nostril.}
but this distinction is no longer present in the modern standard language.
Initial /ɰ/ is sometimes elided after words that end with /ɰ/.
\section{Orthography}
The spelling of most UF sounds is indicated above; the less exotic consonants are spelt as
one might expect. In addition, UF employs a variety of diacritics—though some only in grammatical
material—to differentiate its many sounds with an otherwise unsatisfactory array of symbols.
\subsection{Consonants}
As one might expect, /b, d, n, ɸ, s, z, h/ are spelt ⟨b, d, n, f, s, z, h⟩, respectively.
Several fricatives are spelt with an apostrophe followed by a ⟨h⟩, viz. /x/ ⟨c’h⟩, /θ/ ⟨t’h⟩, /ð/ ⟨d’h⟩,
and /β/ ⟨b’h⟩. Apostrophes are also often used to mark shortened forms or that a vowel has been deleted, e.g. \w{t’hé},
the optative negation particle, is shortened to \w{t’h’} before vowels.
Conventional letters are used for rather unconventional sounds, mostly for diachronic reasons:
/l/ does not exist in UF, so ⟨l⟩ is either /ɮ̃/ or /ʎ̝̃/, ⟨v⟩ is /ʋ̃/, ⟨j⟩ is /ʑ/, ⟨c⟩ is /ɕ/, ⟨r⟩ is /ɰ/, ⟨w⟩ is /ɰ̃/. The vowel
/y/ is spelt ⟨y⟩, and its consonantal equivalent /ɥ/ as well as nasalised /ɥ̃/ are spelt with an apostrophe, that is
⟨y’⟩ and ⟨ý’⟩. The ʁ-fricated fricatives /βʶ, ɮ̃ʶ, sʶ, ɕʶ, ʑʶ, zʶ/
are spelt ⟨v́, ł, ś, ć, ȷ́, ź⟩, respectively.
Double consonant letters indicate a lengthened consonant; these are rare, but they can occur in any position. The only
exception to this is ⟨rr⟩, which is not /ɰː/, but rather /ʀ/. UF does not have phonemic vowel length (though recall
that phonetic lengthening occurs in some situations), so a double vowel letter is always pronounced as two separate vowels.
\subsection{Hard \textit{ḅ} and \textit{ḍ}}
The ‘hard’ voiced \w{ḅ}, \w{ḍ} which are pronounced exactly like their regular counterparts, are normally also spelt ⟨b⟩ and
⟨d⟩. However, a dot below is commonly used in dictionaries and grammatical material to distinguish between the two
as they differ from one another in how they mutate.
In Early Modern UF (and Middle UF before it), such as in the writings of renowned poet and writer \s{Jac’h Yý’is Bèrtrá (J.\,Y.\,B.)
Snet’h}, \w{ḅ} and \w{ḍ} sometimes retain their diachronic spellings of ⟨p(h)⟩ and ⟨t⟩—and \w{bh} is sometimes spelt
⟨p’h⟩ instead—though this is not consistent and often not applied word-internally or between vowels in general—even across multiple
words—where these sounds were already voiced even at the time.
For instance, Snet’h commonly writes e.g. \w{naut} ‘our’ for \w{nauḍ}, but e.g. \w{labraúc} ‘they came up to’ for \w{laḅraúc}, and not
\w{lapraúc} or \w{laphraúc}, is found in the very same passage. This style is often imitated by writers who want to seem archaic, but failing to
understand the pronunciation of the time, they tend to use ⟨t⟩ and ⟨p(h)⟩ everywhere, even word-internally.
\subsection{\textit{rrr}}
The sequence ⟨rrr⟩ could be /ʀɰ/ or /ɰʀ/. In grammatical material, this is disambiguated by writing either \w{rr-r}, e.g.
\w{férr-rásvát’h} ‘a long, deep sleep’, or \w{r-rr}, respectively, but in actual text, both are written \w{rrr}.
\subsection{Vowels}
The vowels are mostly spelt as one might expect; nasalised vowels are indicated by an acute, and nasal vowels by a circumflex.
The variants of /i, y, u, a, e/ are spelt with ⟨i, y, u, a, e⟩ as their base letters. Nasal /ẽ/ and /ẽ̃/ as well as Schwa are
indicated by adding a dot below the ⟨e⟩ in grammars and dictionaries only.
Oral /ɛ/ is rare and is spelt ⟨è⟩. Word-initially and word-finally, a grave indicates that the vowel is voiceless. Word-final
/ə/ is always voiceless.\footnote{Thus, a word-final ⟨e⟩
can be /e/, such as in \w{vvaúríhe} /ʋ̃ːɔ̃ɰĩˈhe/ ‘to remember’, or /ə̥/, such as in \w{dale} /daɮ̃ə̥/ ‘table’. As a rule of thumb, it is
usually /e/ at the end of verb stems—but not verb forms in general—and /ə̥/ elsewhere. Fortunately they are differentiated by a
dot below in dictionaries and in this grammar: \w{vvaúríhe} vs \w{ḍalẹ}.}
\subsection{/o/}
The vowel /o/ is spelt ⟨au⟩ or ⟨o⟩ for diachronic reasons; when ⟨au⟩ is accented, the acute or circumflex is added only to the
⟨u⟩.\footnote{The diphthong /au/ is spelt ⟨äu⟩, ⟨aü⟩, or with accents on both vowels.} Generally speaking, there is no consistent
rule as to which one is used in what circumstances, though ⟨au⟩ usually preferred (especially word-initially)—even if the
PF root was spelt with ⟨o⟩—except word-finally and after ⟨w⟩. As an exception to the exception, in verb affixes, \w{au} is quite
common word-finally. This notwithstanding, the sequence ⟨wau⟩ does not exist in UF.
The distinction between ⟨au⟩ and ⟨o⟩ sometimes used contrastively: e.g. \w{faúr} may mean ‘force’ or ‘form’; thus, when the
intended meaning is not obvious from context, the latter is usually spelt \w{fór} instead, e.g. \w{av́ár sb’haúr} ‘to have force’
as opposed to \w{av́ár sb’hór} ‘to have form’. However, \w{aḍrá faúr} ‘to take shape’, an idiom, is never spelt *\w{aḍrá fór}.
Lastly, note that ⟨áu⟩, which is rare, but occurs e.g. in the superlative case, is pronounced /ɑ̃u/.
\subsection{Dot Below}
A dot below or above a letter is commonly to indicate
a variety of different things, depending on the letter:
\begin{items}\itemsep .5ex plus .1ex minus .1ex\relax
\item a dot below in \w{ḅ}, \w{ḍ} indicates that they are the ‘hard’ variants of the letter, which are pronounced
the same, but lenited differently;
\item a dot below in \w{ḷ} indicates that it is palatal /ʎ̝̃/ instead of alveolar /ɮ̃/;
\item a dot below in \w{ẹ} indicates that it is a schwa;
\item a dot below in \w{ẹ̀} indicates that it is /e̥/;
\item a dot below nasalised \w{ẹ́}, \w{ệ} indicates that they are /ẽ/, /ẽ̃/ instead of /ɛ̃/, /ɛ̃̃/;
\item a dot below in \w{c̣} indicates that it is lenited /j̊/.
\end{items}
\noindent Thus, in non-grammatical writing, the following are indistinguishable:
\begin{items}\itemsep .5ex plus .1ex minus .1ex\relax
\item \w{l} can be palatal /ʎ̝̃/ or alveolar /ɮ̃/;
\item \w{e} can be a schwa, or /e/;
\item \w{é}, \w{ê} can be /ɛ̃/, /ɛ̃̃/ or /ẽ/, /ẽ̃/;
\item \w{c} can be /ɕ/ or /j̊/.
\end{items}
\subsection{Other Punctuation Marks}\label{subsec:other-punct}
\noindent Elided initial /ɰ/ is indicated by omitting the \w{r} in writing and attaching the word to the previous one with a hyphen,
e.g. \w{-vá} ‘alas’.
UF seldom uses hyphens to separate or join words and instead prefers to spell them as one word instead; an exception
to this is that, starting in the late Early Modern UF period, affixes that end with a vowel are typically separated
from the word they are attached to with a hyphen if that word starts with (a variant of) the same vowel. For example,
the \s{def nom sg} of \w{el} ‘wing’ is \w{láel}, but the plural is \w{lé-el}, with \w{léel} only found in archaic
writing.
In poetry, as well as in the northern dialect, adjacent vowels may be contracted; an apostrophe is often used if both vowels are oral, e.g. \w{d’ec̣} for
\w{de-ec̣} \s{part pl} of ‘sin’, or \w{’ab’héy} ‘to the bees’. A grave and double grave are used instead to signify contracted
nasalised and nasal vowels, respectively, e.g. \w{lèl} for \w{lé-el}; coalescence is often inconsistent, e.g. both \w{làb’há}
and \w{lȁb’há} are found for \w{lá-áb’há} ‘the child’. Modern dialects that coalesce e.g. \w{lá-áb’há} often simply spell it
\w{lâb’há} instead.
\section{Lenition and Nasalisation}
Certain morphological elements subject surrounding context to lenition or nasalisation. Nasalisation affects vowels,
which become more nasal (that is, (voiceless) oral vowels become nasalised, and nasalised vowels become nasal; nasal
vowels are unaffected), as well as \w{ḍ}, which becomes \w{n}, unless it would directly be preceded by another \w{n}, in
which case it is simply deleted.
Lenition is more complicated; it affects only consonants and causes a softening similar to what happened diachronically
between vowels. All ʁ-fricated consonants simply lose their ʁ-frication, and a number of other consonants are also
affected by lenition (note the difference between \w{ḅ, ḍ} and \w{b, d} here):
\begin{table}[H]
\centering
\itshape
\begin{tabular}{r|lll|l|l|ll|l|l|l|l|l|l|l|l|l}
\bf Consonant & c’h & s & z & sw & c & b & f & ḅ & d & ḍ & v́ & ł & ś & ć & ȷ́ & ź \\\hline
\bf Lenited & \multicolumn{3}{c|}{h} & ź & c̣ & \multicolumn{2}{c|}{b’h} & bh & d’h & t’h & v & l & s & c & j & z \\
\end{tabular}
\nf
\caption{Consonants Affected by Lenition}\label{tab:lenition}
\end{table}
\noindent Note that double consonants are typically unaffected by morphological lenition, e.g. \w{dír} ‘to say’,
whose subjunctive stem is \w{díss}, forms \w{aúdíssâ} (rougly ‘we should have said’), not *\w{aúdíhhâ}.
\subsection{Glossing}
To simplify glosses, cases are assumed to be definite and singular unless otherwise stated, and verb forms are
assumed to be indicative, present tense, and active, unless otherwise stated.
\section{Diachrony and Derivation}\label{subsec:diachrony-and-derivation}
The PF infinitive endings (\w{-ir} etc.) became progressively more vestigial in Middle UF and were eventually
often dropped completely in derivation, e.g. \w{auḍé} ‘obtain’ from earlier *\w{auḅḍénír}, later resulting in
a need for new infinitive affixes to be formed to distinguish infinitives from the base form, thus giving
rise to e.g. \w{dauḍé} ‘to obtain’.
The suffix \w{-t’he}, \s{fut} \w{-ḍe}, \s{subj} \w{-t’hes}, is a productive derivational suffix that can be used to turn a
noun ‘X’ into a verb that roughly means ‘to use X’, e.g. \w{ac} ‘axe’ $\to$ \w{act’he} ‘to cut with an axe’.
The prefix \w{raú(b’hc’h)-} can be prepended to the stem of a verb to turn it into a causative, e.g. \w{raúb’hc’had’hór}
‘cause someone to love’. The \w{-b’hc’h-} is dropped if the word starts with a consonant, in which case it also
lenites, e.g. \w{raúd’hír} ‘make someone say’.
The suffix \w{-aû} can be appended to any verb that expresses an action with a result to denote that result, e.g.
\w{iý’ývî} ‘illuminate’ $\to$ \w{iý’ývîaû} ‘illumination’.
The suffix \w{-(é)raû} can be appended to a noun to denote a profession, specifically someone who regularly engages in
creating or constructing the noun in question, e.g. \w{ḍalẹ} ‘table’ $\to$ \w{ḍaléraû} ‘carpenter’. The \w{é} is retained
if the noun ends with a consonant; it replaces word-final \w{ẹ}, and is dropped itself if the word ends with any other vowel,
to which a level if nasalisation is added if possible.
\chapter{Nouns}\label{sec:accidence}
This chapter covers nouns in the broad sense, i.e. nouns substantive, adjectives, adverbs, numerals, and pronouns.
\section{Declension}\label{subsubsec:declension}
UF has 2 declensions: a definite declension and an indefinite declension. UF has no adpositions—a fact for which is
compensates with a vast array of cases—no gender distinction in nouns, and no morphologically separate articles—the old
PF articles have been incorporated into the noun.
The table below shows the most common cases of the definite and indefinite declensions. Cases are divided into primary,
secondary, and locative cases (see below).
Some of the case prefixes cause lenition or nasalisation in the initial consonant of the noun, e.g. \w{ḍalẹ} ‘table’ to
\s{def acc sg} \w{s’thalẹ}. Unlike verbal affixes, case prefixes never coalesce with the stem.
% Some ‘semi-secret’ or rather fairly irrelevant diachronic notes are given in comments, for anyone interested.
% Note: indef pl had a hypercorrected ‘s’ in PF ‘ces’, hence no lenition
\noindent\begin{longtable}{l|>{\it}l|>{\it}lll|>{\it}l|>{\it}l}
Definite &\nf Sg&\nf Pl && Indefinite &\nf Sg&\nf Pl\\\cline{1-3}\cline{5-7}
\endhead
Absolutive & $\emptyset$ & l- && Absolutive & $\emptyset$-\N & $\emptyset$-\L \\
Nominative & lá-\L & lé-\L && Nominative & ŷn-\N & ý-\L \\
Vocative & $\emptyset$-\L & $\emptyset$-\N && Vocative & / & / \\
Partitive & dy-\L & dẹ-\L && Partitive & dŷn-\N & dý-\L \\
Accusative & i-\L & sý-\L && Accusative & s-\L & s- \\
Genitive & á-\L & abh-\L && Genitive & sý-\N & sý-\L \\
Dative & as-\L & a-\L && Dative & an-\N & an-\L \\
Instructive & ráh-\L & ráh- && Instructive & rút’hýn-\N & rút’hýz- \\\cline{1-3}\cline{5-7}
Essive & ḅáł- & ḅá- && Essive & ḅárýn- & ḅárý- \\
Abessive & sá-\L & sá-\N && Abessive & sáhýn- & sáhý- \\
Translative & cáj- & cájvâ- && Translative & cájŷn- & cájvý- \\ % change(ments)
Considerative & słá- & słé- && Considerative & sý’óýn- & sý’óý- \\
Causal & ah-\N & áh-\N && Causal & ahýn- & áhý- \\ % ‘à cause de’ / ‘ensemble’ both give ah-/áh-
Instrumental & b’hel- & b’he- && Instrumental & b’he(hý)(n)- & b’heh- \\
Comitative & réd’h- & ré-\L && Comitative & rén- & réd’hý- \\ % près de
Contrative & c’haú-\L & c’haú- && Contrative & c’haút’hýn- & c’haút’hý- \\\cline{1-3}\cline{5-7} % contre
Illative & ádá- & ádé- && Illative & ádŷn- & ádŷ- \\
Inessive & dwá- & dwé- && Inessive & dáhŷn- & dáhŷ- \\
Elative & órd- & aúr- && Elative & órdŷn- & aúrŷ- \\
Allative & b’hé-\L & b’hér- && Allative & b’hŷn-\N & b’hý-\L \\
Ablative & rê(d)- & rês- && Ablative & rêdýn- & rêdý- \\
Postlative & réh-\L & réh- && Postlative & réhýn-\N & réhyl- \\ % reculer
Postessive & déry’ & dér- && Postessive & déry’ýn- & déry’ý- \\
Antessive & ab’há- & ab’h- && Antessive & ab’hŷn- & ab’hŷ- \\ % avant
Superlative & áu-\footnote{Recall that \w{áu} /ɑ̃u/ is not the same as \w{aú} /ɔ̃/.}
& áud’h- && Superessive & án- & ád’hý- \\ % en haut de (in UF, /ɑ̃o/ > /ɑ̃u/)
Superessive & sýr- & dẹ(h)-\L && Superessive & dẹhýn- & sýrŷ- \\
Interessive & aḍá- & aḍé- && Interessive & aḍŷn- & aḍŷ- \\
Circumlative & ḍúr-\L(d’h)- & ḍúr- && Circumlative & ḍúrýn- & ḍúrŷ- \\ % autour de
Circumessive & auḍúr-\L(d’h)- & auḍúr- && Circumlative & auḍúrýn- & auḍúrŷ- \\ % autour de
Circumablative & rêt’húr-\L(d’h)- & rêt’húr- && Circumlative & rêt’húrýn- & rêt’húrŷ- \\ % loin de autour de
Perlative & lý’aú-\L(d’h)- & lý’aú- && Perlative & lý’ýn- & lý’ý- \\ % le long de
\noalign{\medskip}
\caption{UF Declension.}\label{tab:table-uf-declension}
\end{longtable}
\noindent The table below shows the paradigm of \w{ḍale} ‘table’ in its definite and indefinite forms; this, of course,
is a rather extreme example, as the initial \w{ḍ} means that it is subject to both lenition and nasalisation.
\noindent\begin{longtable}{l|>{\it}l|>{\it}lll|>{\it}l|>{\it}l}
Definite &\nf Sg&\nf Pl && Indefinite&\nf Sg&\nf Pl\\\cline{1-3}\cline{5-7}
\endhead
Absolutive & ḍalẹ & lḍalẹ && Absolutive & ḍalẹ́ & ḍalẹ \\
Nominative & lát’halẹ & lét’halẹ && Nominative & ŷnalẹ & ýt’halẹ \\
Vocative & t’halẹ & nalẹ && Vocative & / & / \\
Partitive & dyt’halẹ & dẹt’halẹ && Partitive & dŷnalẹ & dýt’halẹ \\
Accusative & it’halẹ & sýt’halẹ && Accusative & st’halẹ & sḍalẹ \\
Genitive & át’halẹ & abht’halẹ && Genitive & sýnalẹ & sýt’halẹ \\
Dative & ast’halẹ & at’halẹ && Dative & analẹ & ant’halẹ \\
Instructive & ráht’halẹ & ráhḍalẹ && Instructive & rút’hýnalẹ & rút’hýzḍalẹ \\\cline{1-3}\cline{5-7}
Essive & ḅáłḍalẹ & ḅáḍalẹ && Essive & ḅárýnḍale & ḅárýḍale \\
Abessive & sát’halẹ & sánalẹ && Abessive & sáhýnḍale & sáhýḍale \\
Translative & cájḍalẹ & cájvâḍalẹ && Translative & cájŷnḍalẹ & cájvýḍalẹ \\
Considerative & słáḍalẹ & słéḍalẹ && Considerative & sý’óýnḍalẹ & sý’óýḍalẹ \\
Causal & ahnalẹ & áhnalẹ && Causal & ahýnḍalẹ & áhýḍalẹ \\
Instrumental & b’helḍalẹ & b’heḍalẹ && Instrumental & b’hehýḍalẹ & b’hehḍalẹ \\
Comitative & réd’hḍalẹ & rét’halẹ && Comitative & rénḍalẹ & réd’hýḍalẹ \\ % près de
Contrative & c’haút’halẹ & c’haúḍalẹ && Contrative & c’haút’hýnḍalẹ & c’haút’hýḍalẹ \\\cline{1-3}\cline{5-7}
Illative & ádáḍalẹ & ádéḍalẹ && Illative & ádŷnḍalẹ & ádŷḍalẹ \\
Inessive & dwáḍalẹ & dwéḍalẹ && Inessive & dáhŷnḍalẹ & dáhŷḍalẹ \\
Elative & órdḍalẹ & aúrḍalẹ && Elative & órdŷnḍalẹ & aúrŷḍalẹ \\
Allative & b’hét’halẹ & b’hérḍalẹ && Allative & b’hŷnalẹ & b’hýt’halẹ \\
Ablative & rêḍalẹ & rêsḍalẹ && Ablative & rêdýnḍalẹ & rêdýḍalẹ \\
Postlative & réht’halẹ & réhḍalẹ && Postlative & réhýnalẹ & réhylḍalẹ \\
Postessive & déry’ḍalẹ & dérḍalẹ && Postessive & déry’ýnḍalẹ & déry’ýḍalẹ \\
Antessive & ab’háḍalẹ & ab’hḍalẹ && Antessive & ab’hŷnḍalẹ & ab’hŷḍalẹ \\
Superlative & áuḍalẹ & áud’hḍalẹ && Superessive & ánḍalẹ & ád’hýḍalẹ \\
Superessive & sýrḍalẹ & dẹt’halẹ && Superessive & dẹhýnḍalẹ & sýrŷḍalẹ \\
Interessive & aḍáḍalẹ & aḍéḍalẹ && Interessive & aḍŷnḍalẹ & aḍŷḍalẹ \\
Circumlative & ḍúrt’halẹ & ḍúrḍalẹ && Circumlative & ḍúrýnḍalẹ & ḍúrŷḍalẹ \\
Circumessive & auḍúrt’halẹ & auḍúrḍalẹ && Circumessive & auḍúrýnḍalẹ & auḍúrŷḍalẹ \\
Circumablative & rêt’húrt’halẹ & rêt’húrḍalẹ && Circumablative & rêt’húrýnḍalẹ & rêt’húrŷḍalẹ \\
Perlative & lý’aút’halẹ & lý’aúḍalẹ && Perlative & lý’ýnḍalẹ & lý’ýḍalẹ \\
\noalign{\medskip}
\caption{Paradigm of \w{ḍalẹ}.}\label{tab:vocalic-declension}
\end{longtable}
%% Add ALL THE LOCATIVES. E.g. Circumessive/lative/ablative (circumablative -> e.g. take off a jacket,
%% peel a fruit [from the PEEL’S point of view], e.g. unfurl). Antessive/antelative/anteablative
\section{Primary Cases}
In UF grammar, the term \w{cyḍ révy’ẹ́â} ‘primary case’ refers to the cases that are commonly used to mark complements
of verbs, i.e. the \s{abs, nom, acc, part, gen, dat}.
\subsection{Absolutive}
The \s{abs} is the base form of the noun, with the \s{abs def} being identical to the uninflected root, which is also
used as the citation form. It is used mainly in contexts where no case marking is otherwise assigned to noun.
\Paragraph{Verbs of Being and Becoming}
The \s{abs} is used for the subject and predicate noun of predicative sentences,
i.e. ‘X’ and ‘Y’ in ‘X is Y’, the subject of a sentence whose predicate is an adjective verb, and the subject of a verb
that carries a sense of being or becoming:
\begin{examples}
\item \w{Aúsó ḍe \b{ráhó}.} ‘We are all fish.’
\item \w{\b{Ráhó} sausc’hýr.} ‘The fish is dark.’
\item \w{\b{Aú} sdẹb’hní cájŷnárb.} ‘The man turned into a tree.’
\item \w{\b{Aý’èc’hsád} lẹy’abhá.} ‘He called himself Alexandre.’
\end{examples}
Note that this use can lead to ambiguity, e.g. \w{vaût’há se ráhó} could mean ‘a mountain is a fish’ or ‘a fish is a
mountain’ (word order, is irrelevant here). However, if the nouns have different number or the subject is gendered,
this is disambiguated since the verb will agree with the subject, e.g. \w{\b{Cár} le ráhó} ‘Charles is a fish’, as opposed to
\w{Cár se \b{ráhó}} ‘a/the fish is Charles’.
\Paragraph{Modifiers}
Additionally, the \s{abs} turns nouns into modifier nouns. The modifier is generally placed after the noun it modifies,
though this is only mandatory if ambiguity would arise otherwise.
\begin{examples}
\item \w{abhárḍihyl \b{lývy’ér}} ‘of light particles’
\item \w{ḍaléraû \b{véḍ} âférér} ‘made by a master carpenter’
\item \w{lásásc’hríḍ \b{raúl}} ‘the Sanskrit language’
\end{examples}
\Paragraph{Interjections}
The \s{abs} is also used in ‘sentences’ without a verb, such as interjections.
\begin{examples}
\item \w{\b{Faúrḍ} ry’élâ !} ‘A cruel fate!’
\end{examples}
\subsection{Nominative}
The \s{nom} is one of the most common cases in UF; its main and really only use is to mark the subject of an active sentence
\begin{examples}
\item \w{Seb’h dwásẹ \b{lá}raúb’hẹ.} ‘The robot was here.’
\item \w{Lasẹhérélé au \b{lá}b’haúré au \b{lá}haul.} ‘The Sun and the North Wind were quarreling.’
\end{examples}
The \s{indef nom sg} \w{ŷn-} prefix and some other forms nasalise nouns; as a reminder, this means that in
nouns starting with \w{ḍ}, the \w{ḍ} is deleted, e.g. \w{ŷnalẹ} ‘a table’; it causes nasalisation in words
that start with a vowel e.g. \w{ehyó} ‘shield’ to \w{ŷnéhyó} ‘a shield’. As lenition, nasalisation too is
blocked in rarer forms, e.g. \s{indef iness} \w{dáhŷnḍalẹ} ‘on a table’.
\subsection{Vocative}
The vocative is a rare case that is used to address someone or something, e.g. \w{C̣ár!} ‘O Charles!’. The vocative
only occurs in the definite and usually with proper nouns.\footnote{The indefinite \s{voc}
does not exist, as that would be nonsense.} Note that the vocative is not marked by an affix, but
rather by mutation only, e.g. \w{C̣ár} from \w{Cár}.
\subsection{Accusative and Partitive}
These two cases, while often different in meaning, are almost identical in grammatical purpose: Their main use is to
mark the direct object of a verb. While some verbs, e.g. \w{ub’hrá} ‘to be able to’ always take a \s{part}, and others
always take an \s{acc}, the difference between the two, in most contexts, is one of semantics. There is hardly a grammatical
construction that admits the \s{acc} in which the \s{part} would be ungrammatical, and vice versa.
To elaborate, the \s{acc} indicates that an action is being or has been performed in its entirety or to completion. Consequently,
\s{pres ant} forms, which are mainly perfective, generally take the \s{acc}, whereas \s{pret} forms, which are mainly imperfective,
generally take the \s{part}. As most conversations generally concern matters that are relevant to the present and thus still incomplete,
the \s{part} ends up being the commoner of the two cases.
\begin{examples}
\item \w{Jlí \b{s}liv́uhé.} ‘I peruse a book.’
\item \w{Jlí \b{dŷn}liv́uhé.} ‘I read from a book.’ or ‘I am reading a book.’
\item \w{Jlíé \b{i}liv́uhé.} ‘I’ve read the book (to completion).’
\item \w{Jlíá \b{dy}liv́uhé.} ‘I was reading (from) the book.’
\end{examples}
The \s{acc/part} are also used in a construction known as the \s{aci/pci} (see §~\ref{subsec:aci-pci}).
\subsection{Genitive}
The \s{gen} case is chiefly used to indicate possession or belonging, as well as with certain verbs.
\Paragraph{Possession}
The possessor can precede or follow its possessee. Typically,
the \s{gen} directly follows the possessee, but if the possessee is qualified with adjectives, then the adjectives must follow the
possessee immediately, lest they end up qualify the genitive instead, and thus, the genitive is placed either before the
noun, or after any adjectives.
\begin{examples}
\item \w{ḅárḍẹ sásy’élâ \b{á}raúl} ‘an essential part of the language’
\item \w{c’haúnéhás \b{á}rráḍraúc ausc’hýrâ} ‘knowledge of the dark side’
\item \w{\b{vaú} ḍalẹ} ‘my table’
\end{examples}
\Paragraph{Comparison}
In comparisons, usually, but not always, involving adjectives, the \s{gen} marks the standard of comparison (see §~\ref{subsec:comparison}).
\begin{examples}
\item \w{aûlẹrá \b{á}raúvá} ‘no bigger than the moon’
\item \w{Sẹh láisḍrár svaût lybhárdyt’há ihaúb’héc’h \b{á}y’aúý’á dẹrêfihasjú.}\\‘This tale shows that often persuation
is more efficient than violence.’
\item \w{Rá vy’í \b{daú}.} ‘I am as tall as you.’
\item \w{\b{Áy’ér} dŷncẹaû syb’hér.} ‘It is as hot as yesterday.’
\end{examples}
\Paragraph{Objects}
The \s{gen} is also used to mark the object of certain verbs.
\begin{examples}
\item \w{Lẹc’hlýr \b{sý}rjẹ.} ‘He sells comic books.’
\item \w{\b{Daú} jady’ŷ.} ‘I bid you farewell.’
\item \w{Ssívý’érá \b{sýn}árb.} ‘It was similar to a tree.’
\item \w{vâhâ \b{sý}faúr} ‘lacking strength’
\item \w{c’haúḅlérâ \b{sý}válfèzâ} ‘to be complacent in the presence of evildoers’
\end{examples}
\subsection{Dative}
The \s{dat} case is used to indicate the indirect object of most ditransitive verbs. Some verbs may instead govern a different case,
such as the allative. Unlike most other cases, there actually are dative affixes (see §~\ref{subsubsec:dative-affixes})
that are usually, but not always, used in place of separate pronouns.
\Paragraph{Indirect Objects}
The \s{dat} is used with a large number of ditransitive verbs.
\begin{examples}
\item \w{Dyvérs jféré \b{as}aú.} ‘I thanked the man.’
\item \w{Jv́ár\b{b’hẹ} sufb’h vaú.} ‘I owe you my life.’
\item \w{Jdónẹ́\b{ḷẹ} iárb.} ‘I bestow upon him a tree.’
\end{examples}
\Paragraph{Beneficiary}
Another use of the dative is to indicate a beneficiary or recipient in a more general sense.
\begin{examples}