connectives
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Cadey Ratio 2020-05-25 21:57:15 -04:00
parent 57c1196f4a
commit 1eb4601481
10 changed files with 99 additions and 0 deletions

View File

@ -0,0 +1,41 @@
## Connectives
Connectives exist to link noun phrases and verbs together into larger
noun phrases and verbs. They can also be used to link together sentences. There
are four simple connectives: `fa` (OR), `fe` (AND), `fi` (connective question),
`fo` (if-and-only-if) and `fu` (whether-or-not).
### OR
```
ro au madsa lo spalo fa lo hafto?
Do you want to eat an apple or an egg?
```
### AND
```
ro au madsa lo spalo fe lo hafto?
Do you want to eat an apple and an egg?
```
### If and Only If
```
ro 'amwo mi fo mi madsa hafto?
Do you love me if I eat eggs?
```
### Whether or Not
```
mi 'amwo ro. fu ro madsa hafto.
I love you, whether or not you eat eggs.
```
### Connective Question
```
ro au madsa lo spalo fi lo hafto?
Do you want to eat apples and/or eggs?
```

View File

@ -21,6 +21,7 @@
- [Modality](./03_nouns_verbs/modality.md)
- [Explicitly Ending Noun Phrases](./03_nouns_verbs/explicitly-ending-noun-phrases.md)
- [Color Words](./03_nouns_verbs/colors.md)
- [Connectives](./03_nouns_verbs/connectives.md)
- [Sentence Structure Semantics](./04_sentence/index.md)
- [Independent Clause Structure](./04_sentence/independent-clause-structure.md)
- [Questions](./04_sentence/questions.md)

View File

@ -26,6 +26,7 @@ intro/index.md
03_nouns_verbs/modality.md
03_nouns_verbs/explicitly-ending-noun-phrases.md
03_nouns_verbs/colors.md
03_nouns_verbs/connectives.md
04_sentence/index.md
04_sentence/independent-clause-structure.md

View File

@ -109,6 +109,12 @@ in { rootWords =
, ./particles/qa.dhall
, ./particles/qo.dhall
, ./particles/qe.dhall
, ./particles/ko.dhall
, ./particles/fa.dhall
, ./particles/fe.dhall
, ./particles/fi.dhall
, ./particles/fo.dhall
, ./particles/fu.dhall
, ./particles/xi.dhall
, ./particles/hoi.dhall
, ./particles/joi.dhall

8
words/particles/fa.dhall Normal file
View File

@ -0,0 +1,8 @@
let ParticleWord = ../types/ParticleWord.dhall
in ParticleWord::{
, word = "fa"
, gloss = "or"
, definition = "logical or"
, family = "FA"
}

8
words/particles/fe.dhall Normal file
View File

@ -0,0 +1,8 @@
let ParticleWord = ../types/ParticleWord.dhall
in ParticleWord::{
, word = "fe"
, gloss = "and"
, definition = "logical and"
, family = "FA"
}

8
words/particles/fi.dhall Normal file
View File

@ -0,0 +1,8 @@
let ParticleWord = ../types/ParticleWord.dhall
in ParticleWord::{
, word = "fi"
, gloss = "connective question"
, definition = "which connective?"
, family = "FA"
}

8
words/particles/fo.dhall Normal file
View File

@ -0,0 +1,8 @@
let ParticleWord = ../types/ParticleWord.dhall
in ParticleWord::{
, word = "fo"
, gloss = "if-and-only-if"
, definition = "connects two units with the if-and-only-if connotation"
, family = "FA"
}

9
words/particles/fu.dhall Normal file
View File

@ -0,0 +1,9 @@
let ParticleWord = ../types/ParticleWord.dhall
in ParticleWord::{
, word = "fu"
, gloss = "whether-or-not"
, definition =
"logical connective of two units with the wehther or not connotation"
, family = "FA"
}

9
words/particles/ko.dhall Normal file
View File

@ -0,0 +1,9 @@
let ParticleWord = ../types/ParticleWord.dhall
in ParticleWord::{
, word = "ko"
, gloss = "end of noun phrase"
, definition =
"explicitly ends a noun phrase when the grammar is otherwise ambiguous"
, family = "KO"
}