English Miscellaneous Function Words Fragment #
Closed-class items that don't fit a more specific Fragment file:
- Prepositions (
to_,on,in_,at_,by_,with_,from_,before,after) - Coordinating conjunctions (
and_,or_,but,nor) - Discourse particles — focus-sensitive
just_,only_ - Adverbial quantifiers (@cite{percus-2000}) —
always,usually,sometimes,never
The auxiliaries (modals + do-support + be + have + modal adverbs +
infinitival particle) live in Fragments/English/Auxiliaries.lean.
The complementizers (that, if, whether, ...) live in
Fragments/English/Complementizers.lean.
This file may be split further as topic-specific Fragment files emerge.
- form : String
- passiveAgent : Bool
Can introduce an agent in passive?
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- Fragments.English.FunctionWords.instBEqPrepEntry.beq { form := a, passiveAgent := a_1 } { form := b, passiveAgent := b_1 } = (a == b && a_1 == b_1)
- Fragments.English.FunctionWords.instBEqPrepEntry.beq x✝¹ x✝ = false
Instances For
Equations
- Fragments.English.FunctionWords.to_ = { form := "to" }
Instances For
Equations
- Fragments.English.FunctionWords.on = { form := "on" }
Instances For
Equations
- Fragments.English.FunctionWords.in_ = { form := "in" }
Instances For
Equations
- Fragments.English.FunctionWords.at_ = { form := "at" }
Instances For
Equations
- Fragments.English.FunctionWords.by_ = { form := "by", passiveAgent := true }
Instances For
Equations
- Fragments.English.FunctionWords.with_ = { form := "with" }
Instances For
Equations
- Fragments.English.FunctionWords.from_ = { form := "from" }
Instances For
Equations
- Fragments.English.FunctionWords.before = { form := "before" }
Instances For
Equations
- Fragments.English.FunctionWords.after = { form := "after" }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- p.toWord = { form := p.form, cat := UD.UPOS.ADP }
Instances For
- form : String
- coordinating : Bool
Coordinating or subordinating?
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- Fragments.English.FunctionWords.instBEqConjEntry.beq { form := a, coordinating := a_1 } { form := b, coordinating := b_1 } = (a == b && a_1 == b_1)
- Fragments.English.FunctionWords.instBEqConjEntry.beq x✝¹ x✝ = false
Instances For
Equations
- Fragments.English.FunctionWords.and_ = { form := "and" }
Instances For
Equations
- Fragments.English.FunctionWords.or_ = { form := "or" }
Instances For
Equations
- Fragments.English.FunctionWords.but = { form := "but" }
Instances For
Equations
- Fragments.English.FunctionWords.nor = { form := "nor" }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- c.toWord = { form := c.form, cat := if c.coordinating = true then UD.UPOS.CCONJ else UD.UPOS.SCONJ }
Instances For
- form : String
- nonRoothianAlts : Bool
Can it access non-Roothian alternatives?
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
- Fragments.English.FunctionWords.instBEqParticleEntry.beq x✝¹ x✝ = false
Instances For
Equations
- Fragments.English.FunctionWords.just_ = { form := "just", requiresSharedCQ := false, nonRoothianAlts := true }
Instances For
Equations
- Fragments.English.FunctionWords.only_ = { form := "only", requiresSharedCQ := true, nonRoothianAlts := false }
Instances For
Quantificational force for adverbial quantifiers.
- universal : AdvQuantForce
- existential : AdvQuantForce
- proportional : AdvQuantForce
- negative : AdvQuantForce
Instances For
Equations
- Fragments.English.FunctionWords.instDecidableEqAdvQuantForce x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
An adverbial quantifier entry: a closed-class adverb that quantifies over situations (times, events, occasions).
In @cite{percus-2000}'s framework, adverbial quantifiers take a situation pronoun that determines their domain and introduce a new λs binder over their nuclear scope. Generalization Y constrains the situation pronoun to be bound by the nearest c-commanding λ.
- form : String
- force : AdvQuantForce
Quantificational force.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- Fragments.English.FunctionWords.instBEqAdvQuantEntry.beq { form := a, force := a_1 } { form := b, force := b_1 } = (a == b && a_1 == b_1)
- Fragments.English.FunctionWords.instBEqAdvQuantEntry.beq x✝¹ x✝ = false
Instances For
Equations
- Fragments.English.FunctionWords.always = { form := "always", force := Fragments.English.FunctionWords.AdvQuantForce.universal }
Instances For
Equations
- Fragments.English.FunctionWords.usually = { form := "usually", force := Fragments.English.FunctionWords.AdvQuantForce.proportional }
Instances For
Equations
- Fragments.English.FunctionWords.sometimes = { form := "sometimes", force := Fragments.English.FunctionWords.AdvQuantForce.existential }
Instances For
Equations
- Fragments.English.FunctionWords.never = { form := "never", force := Fragments.English.FunctionWords.AdvQuantForce.negative }
Instances For
Equations
- One or more equations did not get rendered due to their size.