Italian Determiners (Quantifiers) #
Quantifier lexicon with syntactic and semantic properties. Each entry
extends Syntax.Determiner.Quantifier (the marked-determiner base: form,
numberRestriction, selectsMass) and adds gender agreement plus the
typological metadata labels (qforce/monotonicity/strength) from
Semantics/Quantification/Lexicon.lean.
Italian quantifiers agree in gender and/or number with their NP:
- ogni (every): invariant, singular
- qualche (some): invariant, singular
- nessuno/nessuna (no): gender-variable, singular, negative concord
- tutti/tutte (all): gender-variable, plural
- alcuni/alcune (some): gender-variable, plural
- molti/molte (many): gender-variable, plural
- pochi/poche (few): gender-variable, plural
Italian quantifier entry: the marked Quantifier base + gender + the
B&C typological metadata labels.
- form : String
- numberRestriction : Option Number
- selectsMass : Bool
- qforce : Quantification.Lexicon.QForce
Quantificational force (typological label).
- monotonicity : Quantification.Lexicon.Monotonicity
Monotonicity (typological label).
- strength : Quantification.Lexicon.Strength
Weak/strong (B&C Table II).
- gender : Option Gender
Gender agreement (none = invariant)
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
ogni — every (invariant, singular, universal).
Equations
- Italian.Determiners.ogni = { form := "ogni", numberRestriction := some Number.singular, qforce := Quantification.Lexicon.QForce.universal, strength := Quantification.Lexicon.Strength.strong }
Instances For
qualche — some (invariant, singular, existential).
Equations
- Italian.Determiners.qualche = { form := "qualche", numberRestriction := some Number.singular, qforce := Quantification.Lexicon.QForce.existential }
Instances For
nessuno — no one (masculine, singular, negative concord).
Equations
- One or more equations did not get rendered due to their size.
Instances For
nessuna — no one (feminine, singular, negative concord).
Equations
- One or more equations did not get rendered due to their size.
Instances For
tutti — all (masculine, plural, universal).
Equations
- One or more equations did not get rendered due to their size.
Instances For
tutte — all (feminine, plural, universal).
Equations
- One or more equations did not get rendered due to their size.
Instances For
alcuni — some (masculine, plural, existential).
Equations
- Italian.Determiners.alcuni = { form := "alcuni", numberRestriction := some Number.plural, qforce := Quantification.Lexicon.QForce.existential, gender := some Gender.masculine }
Instances For
alcune — some (feminine, plural, existential).
Equations
- Italian.Determiners.alcune = { form := "alcune", numberRestriction := some Number.plural, qforce := Quantification.Lexicon.QForce.existential, gender := some Gender.feminine }
Instances For
molti — many (masculine, plural, proportional).
Equations
- Italian.Determiners.molti = { form := "molti", numberRestriction := some Number.plural, qforce := Quantification.Lexicon.QForce.proportional, gender := some Gender.masculine }
Instances For
molte — many (feminine, plural, proportional).
Equations
- Italian.Determiners.molte = { form := "molte", numberRestriction := some Number.plural, qforce := Quantification.Lexicon.QForce.proportional, gender := some Gender.feminine }
Instances For
pochi — few (masculine, plural, proportional, decreasing).
Equations
- One or more equations did not get rendered due to their size.
Instances For
poche — few (feminine, plural, proportional, decreasing).
Equations
- One or more equations did not get rendered due to their size.
Instances For
All Italian quantifier entries.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Lookup by form.
Equations
- Italian.Determiners.lookup form = List.find? (fun (q : Italian.Determiners.ItalianQuantifierEntry) => q.form == form) Italian.Determiners.allQuantifiers
Instances For
ogni is universal, increasing, and strong.
nessuno is negative and decreasing.
tutti is universal, increasing, and strong.
qualche is existential and increasing.
pochi is proportional and decreasing.
Gender agreement: nessuno/nessuna are masculine/feminine forms of the same quantifier.
Gender agreement: tutti/tutte are masculine/feminine forms of the same quantifier.