The aboutness account of projection #
[RS24b]'s mechanism for non-anaphoric presupposition:
sentences refer to event types (EventPhase); event types have inherent
ontological preconditions; and "John stopped" and "John didn't stop" refer
to the same event type — negation affects the claim about the event, not
which event is referenced. Preconditions therefore project, because they
are tied to event reference rather than to the polarity-dependent claim.
Main declarations #
EventSentence— a sentence as event reference (aboutness) plus a polarity-dependent claim (assertion); itspresuppositionis the precondition of the referenced event type, so projection through negation (presupposition_projects) holds by construction while assertions flip (assertion_differs).EntailmentRelation— precondition vs consequence vs concomitant; only preconditions project by pragmatic default (projects).
The paper's verb-class instances (CoS predicates, factives, selectional
restrictions), aspectual classification, and suppression conditions live in
Studies/RobertsSimons2024.lean.
A sentence that refers to an event type and makes a polarity-dependent claim about it.
- eventType : EventPhase W
The event type this sentence is about
- polarity : Features.Polarity
The polarity of the claim
Instances For
The aboutness of a sentence: the event type it refers to, independent of polarity.
Instances For
The claim made: affirmed sentences assert the consequence obtains, negated ones that it doesn't.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The presupposition comes from aboutness, not from the assertion: it is the precondition of the referenced event type.
Equations
Instances For
An affirmative sentence about an event type.
Equations
- Semantics.Presupposition.Aboutness.affirmative e = { eventType := e, polarity := Features.Polarity.positive }
Instances For
A negative sentence about an event type.
Equations
- Semantics.Presupposition.Aboutness.negative e = { eventType := e, polarity := Features.Polarity.negative }
Instances For
Presuppositions project through negation: derived from aboutness, which affirmation and negation share.
Assertions flip with polarity while presuppositions stay constant.
Entailment classification #
Classification of entailment relations between a sentence and its implied content: only preconditions project ([RS24b] §2.1 diagnostics: "ψ, which is part of what allowed for φ" and the counterfactual "if not-ψ, φ would not have been possible").
- precondition : EntailmentRelation
Temporally prior, enables the event. Projects by pragmatic default.
- consequence : EntailmentRelation
Temporally posterior, results from the event. At-issue.
- concomitant : EntailmentRelation
Mereological part or co-occurring state. At-issue. Example: "Jane shouted" entails "Jane made sound" — the sound-making is part of the shouting, not a precondition for it.
Instances For
Equations
- Semantics.Presupposition.Aboutness.instDecidableEqEntailmentRelation 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
Only precondition entailments project by pragmatic default.