Ellipsis as catena-targeting #
[Osb19]'s central thesis: VP ellipsis, gapping, pseudogapping, sluicing, stripping, and fragment answers all elide a catena (connected in the dependency graph) that is not in general a constituent (the projection of any single node). The structural reason is that in a flat DG analysis the verb's projection always includes its subject, so even ordinary VP ellipsis already removes a non-projection set of words.
Main declarations #
EllipsisType— the six English ellipsis types Osborne classifies as catena-targeting.gappingTree,gappingElided— the worked Osborne example "Fred eats beans and Jim rice"; consumed byStudies/Osborne2019Ellipsis.leanto bridge to the phenomenon-level gapping taxonomy.gapping_elided_is_catena,gapping_elided_not_constituent— the catena-not-constituent divergence for that example.
Implementation notes #
- The per-paper trees for the other five ellipsis types and the paper-level
aggregate theorems live in the corresponding
Studies/file rather than the substrate, per the project's anchoring rule that single-paper empirical replication does not belong in the framework layer. - Predicate-shape definitions (
isCatena,isConstituent) inherit the substrate-wideBoolconvention; statements are... = true/= false.
Ellipsis type taxonomy #
Ellipsis types in English ([Osb19], Ch. 12–13).
- vpEllipsis : EllipsisType
- gapping : EllipsisType
- pseudogapping : EllipsisType
- stripping : EllipsisType
- sluicing : EllipsisType
- fragmentAnswer : EllipsisType
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- DepGrammar.Ellipsis.instDecidableEqEllipsisType x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Worked example: gapping #
DG tree for the pre-ellipsis second clause of "Fred eats beans and Jim
eats rice": eats(0) heads Jim(1) (nsubj) and rice(2) (obj).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Gapping elides the verb alone: {eats} = {0}.
Equations
Instances For
The elided material in gapping is a catena (a singleton is trivially connected).
The elided material in gapping is not a constituent: the verb's projection also contains its subject and object.