-
Notifications
You must be signed in to change notification settings - Fork 2
/
writing.tex
1182 lines (967 loc) · 41.1 KB
/
writing.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
\chapter{Writing system}
\label{ch:writing}
\index{Tahano Hikamu|(}
In the previous chapter, example words were given in Ayeri's script, \rayr{thno
hikmu}{Tahano Hikamu}, wherever possible. Thus, it seems advisable to include a
description of Ayeri's native writing system here as well. Literally,
\rayr{thno hikmu}{Tahano Hikamu} means `Round Script' (script round), which is
an old formation based on the word \xayr{thnF/}{tahan-}{write} that stuck. The
current word for `script' is \xayr{thnnF}{tahanan}{writing}.\footnote{Tahano
Hikamu was originally named thus because of an earlier draft for a
script\index{Box script} that never made it very far beyond the drawing board
and which was a lot more angular, see \autoref{fig:boxyhikamu}---Tahano
Hikamu was a lot more bubbly in comparison, especially early on
(\autoref{fig:th2005}). Unfortunately, there is no documentation of the Box
script\index{Box script} surviving that I know of.}
\begin{figure}[tp]\centering
\begin{minipage}{.475\linewidth}\centering
\includegraphics[width=\linewidth]{images/hinya-300dpi-clip.png}
\subcaption{Singularly attested: Box script}
\label{fig:boxy}
\end{minipage}
~
\begin{minipage}{.475\linewidth}\centering
\includegraphics[width=\linewidth]{images/tahano-300dpi-bw-clip.png}
\subcaption{Ayeri's native script: Tahano Hikamu}
\end{minipage}
\caption{Box script (undeciphered) and Tahano Hikamu}
\label{fig:boxyhikamu}
\end{figure}
As we have seen in the previous chapter, Ayeri's prosody strongly emphasizes
the syllable as a unit. Thus, it is not a surprise that Ayeri's native script,
Tahano Hikamu, is an alphasyllabary similar to the Brāhmī\index{Brāhmī scripts}
alphabets of India and Southeast Asia \parencites{salomon1996}{court1996}.
Scripts like these are
\blockcquote[376]{salomon1996}{based on the unit of the graphic
\enquote{syllalbe} [\dots], which by definition always ends with a vowel (type V,
CV, CCV, etc.). Syllables consisting of a vowel only (usually at the beginning
of a word or sentence) are written with the \emph{full} or \emph{initial vowel
signs} [\dots]. But when, as is much more frequently the case, the syllable
consists of a consonant followed by a vowel, the vowel is indicated by a
diacritic sign attached to the basic sign for the consonant}
For Tahano Hikamu the definition that a syllable consisting only of a vowel is
written with an initial vowel sign is only true under certain circumstances, as
we will see below. Moreover, Brāhmī\index{Brāhmī scripts} scripts are often characterized by
conjuncts of clustered consonants which may become quite large and sometimes
behave in an idiosyncratic way. Consonant conjuncts like Devanāgarī\index{Devanāgarī} {\FS
त्व}~\orth{tva} from {\FS त}~\orth{ta} + {\FS व}~\orth{va} or idiosyncratic
conjuncts like {\FS क्ष} \orth{kṣa} for {\FS क} \orth{ka} + {\FS ष} \orth{ṣa}
are not known in Tahano Hikamu, however, at least as far as Ayeri's spelling is
concerned. Subscript notation for consonant clusters and special diacritics
marking coda consonants like in Javanese\index{Javanese script} \citep[478--479]{kuipersmcdermott1996}
are likewise unknown to Tahano Hikamu. This does not mean, however, that final
consonants are simply omitted in writing, since closed syllalbes are reasonably
common enough in Ayeri to warrant indicating them. Thus, there is
\textcquote[476]{kuipersmcdermott1996}{a special mark to eliminate the vowel of
the previous syllable, thereby leaving a consonant in a syllable-final
position}. That is, a diacritic exists which marks the absence of an inherent
vowel, rendering the syllable consonant-only.
Another difference from Brāhmī-family\index{Brāhmī scripts} scripts is that vowel length and
diphthongs in [ɪ] are indicated by dedicated diacritics, so the long vowels are
not doubled versions of their short counterparts. Like in Kharoṣṭhī\index{Kharoṣṭhī}---another
historically important ancient script of India---initial vowels are not
represented by unique graphemes, but they are all written like post-consonantal
vowel diacritics \citep[377]{salomon1996}. In Tahano Hikamu, a character
without an inherent sound value serves as the base. For this reason, the
character is indicated in the table below as \ayr{ʔ} /Ø/; its native name is
\xayr{rnYn}{ranyan}{nothing}.\footnote{I will give the native names of
graphemes here, but will refer to them by their English names for clarity in
the running text.} Similar to a number of Brāhmī\index{Brāhmī scripts} scripts, Tahano Hikamu puts
diacritics not only below or above consonant bases, but also before them. This,
however, is not limited to vowel graphemes as in Devanāgarī\index{Devanāgarī} {\FS ि}~\orth{i} or
Javanese\index{Javanese script} \smash{\fontspec{Tuladha Jejeg}[Script=Javanese,
Scale=MatchLowercase]ꦺ}~\orth{e, é/è} \citep[478]{kuipersmcdermott1996}.
% \footnote{\citet{kuipersmcdermott1996} do not say, but it seems that both
% might be related, since they are both functionally the only prepended vowel
% diacritics and both represent a high front sound; this is just a guess,
% however.}
\section{Consonants}
\index{consonants|(}
Tahano Hikamu is mainly built on consonant bases that are modified by
diacritics. Since the vowel /a/ is so highly frequent in Ayeri, it is also the
vowel that is \fw{inherent} to every consonant grapheme if not further modified
by diacritics. Consonant letters are simply referred to as \fw{pa},
\fw{ta}, \fw{ka}, etc. \autoref{tab:thcons} displays all the main consonants.
The customary collation is---similar to the IPA table---roughly grouping the
letters according to their sound value by anteriority (front → back) and
sonority (low → high). The script is monocameral, that is, there is no
distinction between capital letters and minuscule letters as in the Latin,
Greek, Cyrillic, Georgian, and Armenian alphabet. It is also written in lines
from left to right.
% \begin{center}\itshape
% pa, ta, ka;\\
% ba, da, ga;\\
% ma, na, nga;\\
% va, sa, ha;\\
% ra, la, ya;\\
% Ø.\\
% \end{center}
\begin{table}[t]
\caption{The consonant graphemes}
\begin{tabu} to \linewidth{X[c] X[c] X[c] X[c] X[c] X[c]}
\toprule
\tableheaderfont /pa/ & /ta/ & /ka/ & /ba/ & /da/ & /ga/ \\
\rowfont{\Tagati\huge} p & t & k & b & d & g \\
\midrule
\tableheaderfont /ma/ & /na/ & /ŋa/ & /va/ & /sa/ & /ha/ \\
\rowfont{\Tagati\huge} m & n & N & v & s & h \\
\midrule
\tableheaderfont /ra/ & /la/ & /ja/ & /Ø/ \\
\rowfont{\Tagati\huge} r & l & y & ʔ \\
\bottomrule
\end{tabu}
\label{tab:thcons}
\end{table}
\ayr{ʔ}, which in Ayeri has no sound value but is used as a base for initial
vowels, may also serve as the character for /ʔa/. What is, moreover,
interesting\index{syllabification} about \ayr{N}~\orth{nga} is that even though before, /ŋ/ was
treated strictly as a coda consonant in the previous chapter, it is in fact
treated as an onset consonant in writing if a vowel is following:
\ex[lingstyle=thex]\begingl
\gla \ayr{p} $+$ \ayr{NisF} //
\glb /pa/ {} /ŋis/ //
\glft \rayr{\larger pNisF}{pangis} /paŋ.is/ `money' //
\endgl\xe
Tahano Hikamu contains a few ligatures. First of all, when two \ayr{n}
\orth{na} are in succession within a word, they will form a ligature \ayr{nn}
\orth{nana}:
\ex[lingstyle=thex]\begingl
\gla \ayr{n} $+$ \ayr{n} → \ayr{nn} //
\glb /na/ {} /na/ {} /nana/ //
\endgl\xe
This is distinct from conjuncts like in Devanāgarī\index{Devanāgarī} et al., though, since the
unmodified sound value will still be /nana/, not */nna/, so the inherent vowel
of each \ayr{n} \orth{na} is not deleted, and each \ayr{n} \orth{na} retains
the ability to be modified by diacritics. Tahano Hikamu also has a few
ligatures of the kind found in Brāhmī\index{Brāhmī scripts} scripts. The difference is that
they are not productive, but fossilized.
\pex
\a \ayr{\larger q}~\orth{kwa} ← \ayr{\larger k}~\orth{ka} +
\ayr{\larger v}~\orth{va}
\a \ayr{\larger T}~\orth{tsa} ← \ayr{\larger t}~\orth{ta} +
\ayr{\larger s}~\orth{sa}
\a \ayr{\larger x}~\orth{ksa} ← \ayr{\larger k}~\orth{ka} +
\ayr{\larger s}~\orth{sa}
\xe
These conjunct letters are, however, not normally employed by Ayeri.
\autoref{tab:thconsadd} shows all additional consonants, added to write other
languages. Individual languages may adapt the sound values slightly to fit
their own purposes.
\begin{table}[t]
\caption{Additional consonant graphemes}
\begin{tabu} to \linewidth{X[c] X[c] X[c] X[c] X[c] X[c]}
\toprule
\tableheaderfont /fa/ & /wa/ & /tsa/ & /za/ & /ʃa/ & /ʒa/ \\
\rowfont{\Tagati\huge} f & w & T & z & S & Z \\
\midrule
\tableheaderfont /ça/ & /ksa/ & /kwa/ & /xa/ & /ɣa/ \\
\rowfont{\Tagati\huge} C & x & q & X & G \\
\bottomrule
\end{tabu}
\label{tab:thconsadd}
\end{table}
\index{consonants|)}
\section{Vowels}
\index{vowels|(}
As mentioned above, vowels are written as diacritics that are added to
consonants. In principle, every consonant has two slots for vowels, a primary
one atop it, and a secondary one below it. Vowels added to consonants in
the primary slot delete their inherent /a/:
\ex[lingstyle=thex]\begingl
\gla \ayr{p} → \ayr{pe} //
\glb /pa/ {} /pe/ //
\endgl\xe
\begin{table}
\caption{Primary vowel graphemes}
\begin{tabu} to \linewidth{>{\bfseries}l X[c] X[c] X[c] X[c] X[c] X[c] X[c]}
\toprule
\tableheaderfont
& /i/
& /e/
& /a/
& /o/
& /u/
& /ə/
& /aʊ/
\\
\toprule
Diaritics
& \Tagati\huge *i
& \Tagati\huge *e
& \huge ({\Tagati *a})
& \Tagati\huge *o
& \Tagati\huge *u
& \Tagati\huge *ə
& \Tagati\huge *au
\\
\midrule
Independent
& \Tagati\huge I
& \Tagati\huge E
& \Tagati\huge A
& \Tagati\huge O
& \Tagati\huge U
& \Tagati\huge Ə
& \Tagati\huge AU
\\
\bottomrule
\end{tabu}
\label{tab:thvowstop}
\end{table}
\autoref{tab:thvowstop} gives the primary vowel signs. Of the vowel signs given
there, only \ayr{*ə}~\orth{ə} is not used in Ayeri. \ayr{*au}~\orth{au} is the
only diphthong for which a dedicated grapheme exists, even though its
occurrence is rather limited. The independent vowel graphemes are used at the
beginning of words or inside words when there is no other way to spell the
vowel, which is occasionally the case for secondary vowels. Secondary vowels
are vowels that are not parts of diphthongs (even though another language might
use them to spell diphthongs that are not covered by default), but follow the
vowel of a syllable directly. They are attached underneath a consonant base,
for example:
\ex[lingstyle=thex]\begingl
\gla \ayr{y} → \ayr{ye} → \ayr{ye\_a} //
\glb /ja/ {} /je/ {} /jea/ //
\endgl\xe
In fact, the principle that every consonant base with its diacritics represents
one syllable is slightly violated here, which is also the reason why secondary
vowels very occasionally need to be spelled as independent vowels, for example
when the secondary vowel is long, as in the word \xayr{ruAAnF}{ruān}{duty}:
\ex[lingstyle=thex]\label{ex:rwaa}\begingl
\gla \ayr{ru} → \ayr{ruAA} \quad (\,\ayr{ruu\_a}) //
\glb /ru/ {} /rwaː/ \quad \excl{}/ruːa/ //
\endgl\xe
Example (\ref{ex:rwaa}) uses a diacritic, \ayr{*aa}, to indicate length. If
\ayr{*aa} is put directly under \rayr{ru}{ru} (the \ayr{*\_a} diacritic moves
down where it is not in the way), the syllable will incorrectly spell /ruːa/
instead of the intended /ruaː/. This is because diacritics modify consonants
and primary vowels, but there is no way to modify a secondary vowel directly.
\autoref{tab:thvowsbot} gives a list of secondary vowels corresponding to that
of primary vowels above. The vowels as well are just referred to by their sound
value; `primary' and `secondary', `superscript' and `subscript' or `upper' and
`lower' may be chosen to disambiguate\index{ambiguity} their positions; the native names may use
\xayr{Irj}{iray}{high} and \xayr{Ejr}{eyra}{low} to disambiguate\index{ambiguity}, so \rayr{E
Irj}{e iray} denotes the superscript \orth{e} diacritic while \rayr{E Ejr}{e
eyra} denotes its subscript counterpart.
\begin{table}
\caption{Secondary vowel graphemes}
\begin{tabu} to \linewidth{X[c] X[c] X[c] X[c] X[c] X[c] X[c]}
\toprule
\tableheaderfont /i/ & /e/ & /a/ & /o/ & /u/ & /ə/ & /aʊ/ \\
\rowfont{\Tagati\huge} *\_i & *\_e & *\_a & *\_o & *\_u & *\_ə & *\_au \\
\bottomrule
\end{tabu}
\label{tab:thvowsbot}
\end{table}
As a further exception, those consonant bases with an ascender
(\ayr{k}~\orth{ka}, \ayr{d}~\orth{da}, \ayr{C}~/ça/) move the primary vowel to
the secondary slot below the consonant by default while indicating the vacancy
of the primary slot at the top with a dot. This is done to avoid crossing the
ascender of the consonant with a vowel diacritic:
\ex[lingstyle=thex]\begingl
\gla \ayr{k} → \ayr{k\_i} → \ayr{ki} //
\glb /ka/ {} /ka.i/ {} /ki/ //
\endgl\xe
If the primary vowel slot were not silenced by the \ayr{*\_F} diacritic, it
could reasonably be assumed that the consonant is not losing its inherent /a/
and the vowel below the consonant indicates a secondary vowel, spelling /CaV/.
If, however, a secondary vowel is \emph{actually} added, primary and secondary
vowels will be assigned the regular primary and secondary slots, respectively,
again (\ref{ex:kie}). This condition also holds true for subscript diacritics
(\ref{ex:kii}).
\pex[lingstyle=thex]
\a\label{ex:kie}\begingl
\gla \ayr{ki} → \ayr{ki\_e} //
\glb /ki/ {} /ki.e/ //
\endgl
\a\label{ex:kii}\begingl
\gla \ayr{ki} → \ayr{kii} //
\glb /ki/ {} /kiː/ //
\endgl
\xe
The order of secondary vowels and subscript diacritics is iconic insofar as
it follows the order of sounds in the syllable. Thus, secondary vowels appear
below the consonant-doubling diacritic, \ayr{*F*}, while they appear above the
syllable-final homorganic nasal diacritic, \ayr{*\_M}:
\pex[lingstyle=thex]\label{ex:subscrord}
\a\begingl
\gla \ayr{pFp} → \ayr{pFpe\_a} //
\glb /ppa/ → /ppea/ //
\endgl
\a\begingl
\gla \ayr{peM} → \ayr{pe\_aM} //
\glb /peN/ → /peaN/ //
\endgl
\xe
\index{vowels|)}
\section{Diacritics}
\index{diacritics|(}
We have already encountered a few diacritics, though Tahano Hikamu comes with a
lot more. Some of these diacrtics even undergo non-trivial positioning and
repositioning. As vowels are primarily expressed as superscripts, diacritics
are primarily realized as subscripts, so in the following, I will first
describe subscript diacritics; then prepended diacritics, which Ayeri also has
a number of, both as graphemes in their own right and as allographs of other
subscript diacritics; and lastly, superscript diacritics.
\subsection{Subscript diacritics}
%\begin{sidewaysfigure}[p]
\afterpage{%
\clearpage%
\begin{landscape}\centering
\begin{table}[p]
\caption{Subscript diacritics}
\begin{tabu} to \linewidth {>{\Tagati\huge}X[1] X[8l] X[18l] X[10l]}
\toprule
\tableheaderfont
& Native name
& Function
& Example
\\
\toprule
% \tablesubheaderfont\multicolumn{4}{c}{L~a~r~g~e~{ }~d~i~a~c~r~i~t~i~c~s}\\
% \midrule
*aa
& \xayr{tupsti}{tupasati}{long-maker}
& Lengthens the primary vowel of the syllable
& \rayr{p}{pa} → \rayr{paa}{pā}
\\
\midrule
*Y
& \xayr{y Ejr}{ya eyra}{low ya}
& \orth{ya} following another consonant, also across syllables. Marks
palatalization of \ayr{t}~\orth{ta}, \ayr{d}~\orth{da},
\ayr{k}~\orth{ka}, \ayr{g}~\orth{ga} and \ayr{y}~\orth{ya} in
Ayeri.
& \rayr{Ar}{ara} → \rayr{ArY}{arya}; \rayr{t}{ta} → \rayr{tY}{ca}
\\
\midrule
*J
& \xayr{riNy}{ringaya}{raiser}
& Palatalizes a consonant (not used in Ayeri)
& \rayr{t}{ta} → \ayr{tJ} /tʲa/, /ʧa/
\\
\midrule
*H
& \xayr{UlNy}{ulangaya}{breather}
& Aspiration or frication of a consonant (not used in Ayeri)
& \rayr{t}{ta} → \ayr{tH} /tʰa/, {\addfontfeature{RawFeature=+mgrk}/θa/}
\\
\midrule
*\hspace{-.25em}ˀ
& \xayr{rjpaay Ejr}{raypāya eyra}{low~stopper}
& Glottal stop coda or glottalization of a consonant (consonant letters
with ascenders; not used in Ayeri)
& \rayr{k}{ka} → \ayr{kQ} /kaʔ/; \rayr{d}{da} → \ayr{dQ} /d’a/
\\
\midrule
% \tablesubheaderfont\multicolumn4{c}{S~m~a~l~l~{ }~d~i~a~c~r~i~t~i~c~s}\\
% \midrule
*F
& \xayr{goMdy}{gondaya}{extinguisher}
& Deletes the inherent /a/ of a consonant, e.g. in consonant clusters
or closed syllables
& \rayr{pr}{para} → \rayr{pFr}{pra}, \rayr{prF}{par}
\\
\midrule
*M
& \xayr{vinaati}{vināti}{nasalizer}
& Indicates a homorganic nasal or nasalizes the vowel, depending on the
language
& \rayr{pd}{pada} → \rayr{pMd}{panda} /panda/ or /pãda/
\\
\midrule
*F*
& \xayr{kusNisaati}{kusangisāti}{duplicator}
& Indicates a geminated or otherwise double consonant
& \rayr{pl}{pala} → \rayr{plFl}{palla}
\\
\bottomrule
\end{tabu}
\label{tab:thdiabot}
\end{table}
\end{landscape}
\clearpage%
}%
%\end{sidewaysfigure}
\autoref{tab:thdiabot} shows the bottom-attaching diacritics. The `large
diacritics' (\ayr{*aa} through \ayr{*\hspace{-.25em}ˀ\hspace{.5em}}) cause the
secondary slot of consonants to move down below the diacritic. `Small
diacritics' (\ayr{*F} through \ayr{*F*}) can attach in this place as well as
secondary vowels, as does the homorganic nasal diacritic \ayr{*M} in this
diacritic-fraught example:
\ex[lingstyle=thex]\label{ex:caampuluy}\begingl
\gla \ayr{tYaanF} $+$ \ayr{puluj} → \ayr{tYaaMpuluj} //
\glb {/ˈʧaːn/} {} {/puˈlʊɪ/} {} {/ˌʧaːmpuˈlʊɪ/} //
% \glc \xayr{tYaanF}{cān}{love} {} \xayr{puluj}{puluy}{opposite} {}
% \xayr{tYaaMpuluj}{cāmpuluy}{heterosexual} //
\glft \xayr{\larger tYaaMpuluj}{cāmpuluy}{heterosexual} //
\endgl\xe
It also needs to be noted that diacritics like \ayr{*Y} are applied
progressively to words as a whole, not stopping at morpheme and syllable
boundaries, so even though \tayr{toryeng}{she sleeps} may be composed of
\xayr{torF/}{tor-}{sleep} + \rayr{/yeNF}{-yeng} (=\TsgF{}.\Aarg{}) and
syllabifies\index{syllabification} as /tor.ˈjeŋ/, the spelling is not *\ayr{torF\zwsp{}yeNF} as one
might expect, but \ayr{torYeNF}.
Even though the primary position for small diacritics is underneath consonants,
the diacritic deleting the inherent vowel, \ayr{*F}, very commonly also appears
after a consonant letter at the end of words:
\ex[everygla=\Tagati\Large,everyglb=\itshape]\begingl
\gla y @ nimFreN\thafterdot{} pNn\thafterdot{}
nraanFyen. //
\glb Ya nimreng pangan narānyena. //
\glc ya= nim-reng pangan-Ø narān-ye-na //
\glc \LocT{}= appear=\TsgI{}.\Aarg{} end-\Top{} word-\Pl{}-\Gen{} //
\glft `It appears at the end of words.' //
\endgl\xe
This strategy is advantageous in that Tahano Hikamu leaves very little space
between individual words: \ayr{y nimFreN\thafterdot{} pNn\thafterdot{}
nraanFyen.} With the dot after the final consonant, word boundaries are more
visible.
\subsection{Prepended diacritics}
Example (\ref{ex:caampuluy}) leads us directly to the next class of
diacritics---those that are prepended to the consonant letter, either because
they are simply placed there or because of allography. Let us first list those
diacritics that appear in front of consonants obligatorily
(\autoref{tab:thdiapreobl}).
\begin{table}[tp]
\caption{Obligatorily prepended diacritics}
\begin{tabu} to \linewidth{>{\Tagati\huge}X[1] X[8l] X[16l] X[12l]}
\toprule
\tableheaderfont
& Native name
& Function
& Example
\\
\toprule
*j
& \xayr{leMtMkusNF}{lentan\-kusang}{double-\allowbreak{}sound}
& Makes a diphthong with /ɪ/
& \rayr{pe}{pe} → \rayr{pej}{pey}
\\
\midrule
*\_:
& \xayr{tilmy}{tilamaya}{changer}
& Marks raised vowels (i.e. umlaut; not used in Ayeri)
& \rayr{po}{po} → \ayr{po\_:}~/pø/
\\
\midrule
*R
& \xayr{hiymy}{hiyamaya}{roller}
& Marks retroflex consonants (not used in Ayeri)% \footnotemark
& \rayr{t}{ta} → \ayr{tR}~/ʈa/
\\
\bottomrule
\end{tabu}
\label{tab:thdiapreobl}
\end{table}
% \footnotetext{In a Tahano Hikamu orthography I devised for English once,
% \ayr{*R} was used for /ɚ/, as in the \textsc{nurse} vowel in American
% English: \rayr{nRsF}{nurse}.}
\begin{table}[tp]
\caption{Allographically prepended diacritics}
\begin{tabu} to \linewidth{>{\Tagati\huge}X[1] X[8l] X[16l] X[12l]}
\toprule
\tableheaderfont
& Native name
& Function
& Example
\\
\toprule
ː*
& \xayr{tupsti mrinF}{tupasati marin}{anterior long-maker}
& Lengthens the primary vowel of the syllable
& \rayr{sY}{sya} → \rayr{sYaa}{syā},\newline
\rayr{n}{na} → \rayr{naa}{nā}
\\
\midrule
ʲ*
& \xayr{y mrinF}{ya marin}{anterior ya}
& \orth{ya} following another consonant, also across syllables.
& \rayr{n}{na} → \rayr{nY}{nya}
\\
& \xayr{riNy mrinF}{ringaya marin}{anterior raiser}
& Also used as an allograph for the palatalization proper diacritic.
& \ayr{sH}~/sʰa/ → \ayr{sHY}~/sʰʲa/
\\
\midrule
ʰ*
& \xayr{UlNy mrinF}{ulangaya marin}{anterior breather}
& (Pre-)Aspiration or frication of a consonant (not used in Ayeri)
& \rayr{N}{nga} → \ayr{NH} /ŋʰa/;\newline
\rayr{t}{ta} → \ayr{ʰt}~/ʰta/
\\
\bottomrule
\end{tabu}
\label{tab:thdiapreallo}
\end{table}
As \autoref{tab:thdiapreobl} shows, the only obligatorily prepended diacritic
that Ayeri uses is the one that marks diphthongs, \ayr{*j}.\index{diphthongs}
However, \ayr{*j} changes into \ayr{y}~\orth{ya} proper when a vowel follows,
but stays \ayr{*j} when a \ayr{y}~\orth{ya} follows:
\pex
\a \xayr{\larger hdj}{haday}{hero} →
\ayr{\larger hdyNF} (*\ayr{\larger hdjANF}) \fw{hadayang}
`the hero' (hero-\Aarg{})
\a \xayr{\larger tipuj}{tipuy}{grass} →
\ayr{\larger tipujy} (*\ayr{\larger tipuyY}) \fw{tipuyya} `in
the grass' (grass-\Loc{})
\xe
Besides \ayr{*j}, there are also a number of diacritics that are prepended to
consonants, but as context-sensitive allographs (\autoref{tab:thdiapreallo}).
The selection of the variant diacritics is not random or up to the aesthetic
eye of the writer (even though the device itself is certainly a matter of
aesthetics), but it is governed by rules. The prepended forms listed in
\autoref{tab:thdiapreallo} are thus triggered
\begin{enumerate}
\item when there is no stem or bowl for the regular subscript diacritic to
attach to, which is the case for \ayr{n}~\orth{na}, \ayr{N}~\orth{nga},
\ayr{v}~\orth{va}, and \ayr{w}~\orth{wa}:
\begin{multicols}{2}
\pex[lingstyle=thex,]\label{ex:stemless}
\a\begingl
\gla \ayr{n} → \ayr{naa} //
\glb /na/ {} /naː/ //
\endgl
\a\begingl
\gla \ayr{N} → \ayr{Naa} //
\glb /ŋa/ {} /ŋaː/ //
\endgl
\a\begingl
\gla \ayr{v} → \ayr{vaa} //
\glb /va/ {} /vaː/ //
\endgl
\a\begingl
\gla \ayr{w} → \ayr{waa} //
\glb /wa/ {} /waː/ //
\endgl
\xe
\end{multicols}
\item when a large subscript diacritic would be added after another large
subscript diacritic---this position can only be occupied once, so
further large subscripts take their prepended form:
\ex[lingstyle=thex,everygla=\normalsize,everyglb=\upshape\Large,
aboveglcskip=0.5em,numoffset=\leftmargin]\label{ex:stacking}
\begingl
\gla {} {$+$ \ayr{*H}} {} {$+$ \ayr{*Y}} {} {$+$ \ayr{*i}} {}
{$+$ \ayr{*aa}} {} //
\glb \ayr{t} → \ayr{tH} → \ayr{tHY} → \ayr{tHYi} →
\ayr{tHYii} //
\glc /ta/ {} /tʰa/ {} /tʰja/ {} /tʰji/ {} /tʰjiː/ //
\endgl\xe
The order of diacritics follows the logic of the respective
language's phoneme inventory, so if there are, for example,
retroflex consonants and both dental and retroflex consonants can be
aspirated, retroflexion would be marked first, then aspiration. If
there is a palatalization contrast on top of this, the diacritic would
be added after aspiration.
When adding large diacritics to stemless consonants, they are prepended
from the beginning, as we saw in (\ref{ex:stemless}), and just like in
(\ref{ex:stacking}), this principle continues:
\ex[lingstyle=thex,everygla=\normalsize,everyglb=\upshape\Large,
aboveglcskip=0.5em,numoffset=\leftmargin]
\begingl
\gla {} {$+$ \ayr{*Y}} {} {$+$ \ayr{*aa}} {} {$+$ \ayr{*j}}
{} //
\glb \ayr{n} → \ayr{nY} → \ayr{nYaa} → \ayr{nYaaj} //
\glc /na/ {} /nja/ {} /njaː/ {} /njaːɪ/ //
\endgl\xe
\item with consonants directly following \ayr{n}~\orth{na}, to avoid a clash
with its swash:
\ex[lingstyle=thex,numoffset=\leftmargin]
\begingl
\gla \ayr{n} $+$ \ayr{paa} → \ayr{npaa} \quad
(*\,\ayr{n\zwsp{}paa}) //
\glb /na/ {} /paː/ {} /napaː/ {} {} //
\endgl\xe
An exception to this exception occurs, however, when the consonant is
not directly following. In this case, no reordering happens, only
\ayr{n}~\orth{na} \emph{may} reduce its swash in size to accommodate
the following prepended diacritic:
% \footnote{The font used here is designed so that the reduced combination
% looks nicer, but if unreduced, \ayr{n}~\orth{na}'s swash is not so long
% as to cross the descender of \ayr{*j} either in this particular case.}
\pex[lingstyle=thex,numoffset=\leftmargin]
\begingl
\gla \ayr{n} $+$ \ayr{pj} → \ayr{npj} \quad
(\ques{}\ayr{n\zwsp{}pj}) //
\glb /na/ {} /paɪ/ {} /napaɪ/ {} {} //
\endgl\xe
\item in other cases where a clash of subscript diacritics needs to be avoided:
\ex[lingstyle=thex,numoffset=\leftmargin]
\begingl
\gla \ayr{di} $+$ \ayr{paa} → \ayr{diːp} \quad
(*\,\ayr{dipaa}) //
\glb /di/ {} /paː/ {} /dipaː/ {} {} //
\endgl\xe
Alternatively, the following solution is permissible:
\ex[lingstyle=thex,numoffset=\leftmargin]%
\begingl
\gla \ayr{di} $+$ \ayr{paa} →
% Due to negligence when coding the Tahano Hikamu font, I did
% not build in a way to manually put a diacritic on top of ⟨ka⟩
% and ⟨da⟩, thus I need to put it on the letter with LaTeX
% commands, which is very clumsy. Younger self: shame on you!
\ayr{d\hspace{-.3em}\raisebox{1.5ex}{\zwsp i}\hspace{.3em}%
paa} //
\glb /di/ {} /paː/ {} /dipaː/ //
\endgl\xe
When two long syllables follow each other, as in
\tayr{bāmā}{mom-and-dad}, one of the length diacritics should
definitely be pulled to the front, as in (\ref{ex:bama}).
\ex[lingstyle=thex,everyglb=\upshape\Large,aboveglcskip=0.5em,
numoffset=\leftmargin]\label{ex:bama}
\begingl
\gla {} \ayr{baa} $+$ \ayr{maa} → \ayr{baaːm} \quad
(\ques{}\ayr{baamaa}) //
\glb {\normalsize or:\quad} \ayr{baa} $+$ \ayr{maa} →
\ayr{ːbmaa} //
\glc {} /baː/ {} /maː/ {} /baːmaː/ //
\endgl
\xe
\end{enumerate}
Generally, prepended diacritics apply only to a single consonant grapheme, not
a whole consonant cluster\index{consonants!clusters} as such. Thus, for instance, in words like
\tayr{pray}{smooth} \ayr{*j} appears before \ayr{r}~\orth{ra}, not before
\ayr{p}~\orth{pa}, since \ayr{r}~\orth{ra} is the closest consonant before the
syllable nucleus which we are modifying by adding the \ayr{*j}. Since in the
case of \fw{pray} the inherent vowel of \ayr{p}~\orth{pa} is silent, it
receives a diacritic \ayr{*F} to mark this fact:
\ex[lingstyle=thex]\label{ex:clusterjsplit}
\begingl
\gla \ayr{pFrj} \quad (*\,\ayr{jpFr}) //
\glb /praɪ/ //
\endgl
\xe
What (\ref{ex:clusterjsplit}) shows is that essentially, /praɪ/ is split into
/p/ + /raɪ/ for purposes of spelling, rather than /pr/ + /aɪ/. If necessary, it
is also possible this way to distinguish, for instance, \ayr{tRs}~/ʈsa/ from
\ayr{tsR}~/tʂa/. It would be up to the respective language's orthography to
decide whether either combination spells /ʈʂa/ or whether the \ayr{*R}
diacritic is needed on both con\-so\-nants---that is, \ayr{tRsR}---to spell the
retroflex affricate.
\subsection{Superscript diacritics}
Ayeri's standard position for diacritics is below consonants, but sometimes it
is nicer to put them on top, especially for the letter \ayr{n}~\orth{na} due to
its swash, as well as for \ayr{v}~\orth{va} since the space below its flag is
empty otherwise, thus not providing much of a visual connection. The only
diacritic that is normally attaching to the top of consonants is that for the
glottal stop---we have already encountered its subscript allograph earlier.
Since Ayeri's phoneme inventory does not possess a phonemic glottal stop or
glottalization, this diacritic is not used in Ayeri. The list of superscript
diacritics is given in \autoref{tab:thdiatop}.
\begin{table}[tp]
\caption{Superscript diacritics}
\begin{tabu} to \linewidth{>{\Tagati\huge}X[1] X[8l] X[16l] X[12l]}
\toprule
\tableheaderfont
& Native name
& Function
& Example
\\
\toprule
*\_F
& \xayr{goMdy liNF}{gondaya ling}{upper extinguisher}
& Deletes inherent /a/ of consonant, e.g. in consonant clusters or
closed syllables
& \rayr{vr}{vara} → \rayr{v\_Fr}{vra}
\\
\midrule
*\_M
& \xayr{vinaati liNF}{vināti ling}{upper nasalizer}
& Indicates a homorganic nasal or nasalizes the vowel, depending on
language/context
& \rayr{nd}{naka} → \rayr{nMk}{nanka} /naŋka/ or /nãka/
\\
\midrule
*̔
& \xayr{kusNisaati liNF}{kusangisāti ling}{upper duplicator}
& Indicates a geminated or otherwise double consonant
& \rayr{pn}{pana} → \rayr{pnFn}{panna}
\\
\midrule
*Q
& \xayr{rjpaay}{raypāya}{stopper}
& Glottal stop coda or glottalization of a consonant (not used in Ayeri)
& \rayr{t}{ta} → \ayr{tQ} /taʔ/;\newline
\rayr{s}{sa} → \ayr{sQ} /s’a/
\\
\bottomrule
\end{tabu}
\label{tab:thdiatop}
\end{table}
At times, it may be necessary to attach both a superscript diacritic and a
vowel sign above a consonant, compare (\ref{ex:subscrord2}). In this case, the
consonant-modifying diacritic is placed first and the vowel diacritic on top of
it---this is exactly equivalent to the rule exemplified for subscript
diacritics in (\ref{ex:subscrord}).
\pex[lingstyle=thex]\label{ex:subscrord2}
\a\begingl
\gla \ayr{v̔} → \ayr{v̔e} //
\glb /vva/ → /vve/ //
\endgl
\a\begingl
\gla \ayr{v̔} → \ayr{v̔\_M} //
\glb /vva/ → /vvaN/ //
\endgl
\xe
\index{diacritics|)}
\section{Numerals}
\index{numerals|(}
Ayeri uses a duodecimal number system, that is, a system based on the powers of
of 12, which is a typological rarity.\footnote{And one possibly
overrepresented by invented languages due to its rarity in natural languages.}
There is a digit for zero, so the system is positional, like the Hindu--Arabic
digits used by the Latin alphabet. The numerals for the numbers from 1 to 12
are shown in \autoref{tab:thnum}.
\begin{table}[t]
\caption{The numerals}
\begin{tabu} to \linewidth{X[c] X[c] X[c] X[c] X[c] X[c]}
\toprule
\tableheaderfont 1 & 2 & 3 & 4 & 5 & 6 \\
\rowfont{\Tagati\huge} 1 & 2 & 3 & 4 & 5 & 6 \\
\midrule
\tableheaderfont 7 & 8 & 9 & \ten & \elv & 10 \\
\rowfont{\Tagati\huge} 7 & 8 & 9 & ¹ & ² & 10 \\
\bottomrule
\end{tabu}
\label{tab:thnum}
\end{table}
% How are the various mathematical operations indicated, especially the basic
% ones: addition, subtraction, multiplication, division, equality?
\index{numerals|)}
\section{Punctuation and abbreviations}
\index{punctuation|(}
Tahano Hikamu's system of manipulating the sound of syllables is very
sophisticated, so it comes as no surprise that it is also host of a large
number of punctuation marks. \autoref{tab:thpunctcom} lists the ones commonly
encountered, \autoref{tab:thpunctuncom} the ones not so commonly encountered.
\begin{table}[tp]
\caption{Common punctuation marks}
\begin{tabu} to \linewidth{>{\Tagati\huge}X[1.5] X[8.5l] X[15.5l] X[11.5l]}
\toprule
\tableheaderfont
& Native name
& Function
& Example
\\
\toprule
.
& \xayr{dnF}{dan}{dot}
& Full stop
& \xayr{sryaaNF.}{Sarayāng.}{He left.}
\\
\midrule
/
& \xayr{dnF/dnF}{dan-dan}{little dot}
& A separator for small things, like clitics and abbreviations;
divides the constituents of reduplication
& \xayr{Ad/nN}{ada-nanga}{this house}; %\newline
\xayr{5/pd}{5:pd}{5~hrs}; %\newline
\xayr{dnF/dnF}{dan-dan}{dot-dot, little dot}
\\
\midrule
–
& \xayr{puMtaanF}{puntān}{dash}
& General sign for a longer pause, equivalent to a dash,
colon, semicolon, brackets
& \xayr{ynF – sru!}{Yan---saru!}{Yan---go!}
\\
\midrule
?
& \xayr{dMpFrMtnF}{dam\-pran\-tan}{question point}
& Marks questions
& \xayr{mnisu?}{Manisu?}{Hello?}
\\
\midrule
!
& \xayr{dMbhaanF}{dam\-ba\-hān}{shouting point}
& Marks exclamations; strong exclamations may be marked by the \ayr{‼}
variant.
& \xayr{mnisu!}{Manisu!}{Hello!}; %\newline
\xayr{yi‼}{Yi!}{Urgh!}
\\
\bottomrule
\end{tabu}
\label{tab:thpunctcom}
\end{table}
\ayr{.}~\orth{.} does not look very much like a dot or a point, but it is
derived from a sign that looks like two circles stacked on top of each other,
similar to \ayr{/}~\orth{-} (see \autoref{fig:th2005}). There is no mark for a
comma as such, so \ayr{/}~\orth{-} or \ayr{–}~\orth{--} cannot be
used in this way. Instead of a comma, a wide word space is used to separate
syntactic units. A long dash \ayr{—}~\orth{---} is also sometimes found at the
end of paragraphs or texts to mark their end. The strong
exclamation mark \ayr{‼} may appear in its exclamatory function at the end
of a line, but does not necessarily indicate strong emphatic force in this
case, but just an emphatic statement.
\begin{table}[tp]
\caption{Less common punctuation marks}
\begin{tabu} to \linewidth{>{\Tagati\huge}X[1.5] X[8.5l] X[15.5l] X[11.5l]}
\toprule
\tableheaderfont
& Native name
& Function
& Example
\\
\toprule
“*”
& \xayr{dnraanF}{danarān}{speaking point}
& Quotation marks
& \xayr{nryaaNF “mnisu!”}{Narayāng \enquote{Manisu!}}{He says,
\enquote{Hello!}}
\\
\midrule