File size: 4,686 Bytes
4a08ba7 | 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 | ---
title: "Dedua"
author: "Jordan Schuster"
bibliography: ded.bib
output: html_document
---
Last Updated: 2020-06-02
# Background
**Language Family:** Trans-New Guinea, Main Section, Central and Western, Huon-Finisterre, Huon, Eastern
* Dedua is spoken in the Morobe province of Papua New Guinea.
# Phonology
## Consonants
* Based on the comparison with other languages in the same language family, @McEvoy2005 concludes that voiceless stops in syllable codas are neutralized and realized as glottal stops (p. 269). Thus, the phonemic status of the glottal stop is called into question. However, I have opted to treat it as a phoneme here because this seems to be the common practice found in the literature.
```{r echo=FALSE, message=FALSE, warning=FALSE, results = 'asis'}
library(dplyr)
library(knitr)
library(kableExtra)
consonants <- read.table(textConnection('
"Manner of Articulation" Labial Alveolar Alveopalatal Palatal Velar Glottal
Stops "p b" "t d" "" "" "k kp ɡ ɡb" "ʔ"
Affricates "" "" "dʑ" "" "" ""
Fricatives "f" "s" "" "" "" ""
Nasals "m" "n" "" "" "ŋ" ""
Trills "" "r" "" "" "" ""
Approximants "w" "" "" "j" "" ""
'), TRUE)
kable(consonants, col.names = c("Manner of Articulation", "Labial", "Alveolar", "Alveopalatal", "Palatal", "Velar", "Glottal"), align = 'c') %>%
kable_styling("bordered") %>%
add_header_above(c("", "Place of Articulation" = 6)) %>%
column_spec(1, bold = TRUE) %>%
footnote(general = "Note: For phonemes that share a cell, those on the left are voiceless and those on the right are voiced. /kp/ and /ɡb/ are labiovelar stops.", general_title = "")
```
## Vowels
* According to @McEvoy2005, the diphthongs listed below are always interpreted as complex nuclei (p. 270).
```{r echo=FALSE, message=FALSE, warning=FALSE, results = 'asis'}
vowels <- read.table(textConnection('
Front Central Back
High "i" "" "u"
Mid "e" "" "o"
Low "" "a" ""
'), TRUE)
kable(vowels, align = 'c') %>%
kable_styling("bordered") %>%
column_spec(1, bold = TRUE)
diphthongs <- read.table(textConnection('
Diphthongs
"/ei/, /eu/, /ai/, /au/, /oi/, /ou/"
'), TRUE)
kable(diphthongs, align = 'c') %>%
kable_styling("bordered")
```
# Alphabet
```{r echo=FALSE, message=FALSE, warning=FALSE, results = 'asis'}
alphabet <- read.table(textConnection('
Grapheme Phoneme Comment
"a" "/a/" ""
"b" "/b/" ""
"c" "/ʔ/" "syllable-finally"
"d" "/d/" ""
"e" "/e/" ""
"f" "/f/" ""
"g" "/ɡ/" ""
"h" "/ʔ/" "syllable-initially"
"i" "/i/" ""
"k" "/k/" ""
"m" "/m/" ""
"n" "/n/" ""
"o" "/o/" ""
"p" "/p/" ""
"r" "/r/" ""
"s" "/s/" ""
"t" "/t/" ""
"u" "/u/" ""
"w" "/w/" ""
"y" "/j/" ""
**Digraph** "" ""
"dz" "/dʑ/" ""
"gb" "/ɡb/" ""
"kp" "/kp/" ""
"ng" "/ŋ/" ""
'), TRUE)
kable(alphabet, align = 'c') %>%
kable_styling("bordered")
```
# Syllable Structure
* Syllables in Dedua consist of the following structures [@ceder_dedua_2003, p. 3]:
- V
- VV
- VC
- CV
- CVV
- CVC
- CVVC
* Glottal stops and /ŋ/ are the only phonemes that appear in syllable codas [@McEvoy2005, p. 268]. This makes for the inference that complex consonants are always realized as such rather than two separate phonemes.
# Lenition Rules
* /ʔ/ becomes [h] syllable-initially [@ceder_dedua_2003, p. 3].
# Misc. Rules
* /r/ varies freely with [l] intervocalically [@ceder_dedua_2003, p. 3].
* /w/ varies freely with [v] (ibid.).
* In syllable coda position, the velar nasal undergoes assimilation to the place of articulation of the following consonant if present. This assimilation is reflected in written Dedua [@McEvoy2005, p. 268]; however, it has been accounted for in the rules to reflect /ŋ/ as underlying.
# References
|