German Verbal Prefix and Particle Verbs #
@cite{ludeling-2001} @cite{dendikken-1995}
Lexical entries for German verbs with prefixes — both separable particle verbs (scheidbar zusammengesetzte Verben, e.g. anrufen) and inseparable prefix verbs (ver-, be-, ent-, zer-). The distinction is the major morphosyntactic split in the German verbal system: separable verbs split under V2 (er ruft Maria an) and trigger ge- insertion in the past participle (angerufen) and zu insertion in the zu-infinitive (anzurufen); inseparable prefix verbs never split, lack ge- in the participle (verstanden, not *geverstanden), and place zu before the whole word in the zu-infinitive (zu verstehen).
@cite{dendikken-1995}'s SC analysis (book ch. 2) takes German particle verbs as one of the major Germanic test cases for the ergative-particle / SC-head proposal.
Main definitions #
GermanAffixClass— separable vs inseparable.GermanVerbalAffixEntry— a single entry.inventory— eight canonical entries (5 separable, 3 inseparable).
Main results #
inventory_citation_concat— every entry'scitationFormisaffix ++ stem(holds for both classes).IsSeparablepredicate with decidable instance.
German affix class: separable particles split under V2 and trigger ge-/-zu- insertion; inseparable prefixes never split.
- separable : GermanAffixClass
- inseparable : GermanAffixClass
Instances For
Equations
- Fragments.German.VerbParticles.instDecidableEqGermanAffixClass x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
A German prefixed-verb entry: separable particle verb or inseparable prefix verb. Records both the past participle (with or without ge- insertion) and the zu-infinitive (concatenated or space-separated) for the morphological diagnostics.
- citationForm : String
Citation infinitive (affix + stem concatenated).
- stem : String
Bare verb stem.
- affix : String
The affix (separable particle or inseparable prefix).
- affixClass : GermanAffixClass
Affix class.
- pastParticiple : String
Past participle. Separable: ge- between affix and stem (angerufen). Inseparable: bare verb participle, no ge- (verstanden).
- zuInfinitive : String
zu-infinitive. Separable: zu concatenated between affix and stem (anzurufen, one word). Inseparable: zu as separate word before the citation form (zu verstehen).
- gloss : String
English gloss.
Instances For
An entry's affix is separable.
Equations
Instances For
Separable particle verbs #
anrufen 'phone, call up'. Separable an-; pp angerufen; zu-inf anzurufen.
Equations
- One or more equations did not get rendered due to their size.
Instances For
aufmachen 'open'. Separable auf-; pp aufgemacht; zu-inf aufzumachen.
Equations
- One or more equations did not get rendered due to their size.
Instances For
einschalten 'switch on'. Separable ein-; pp eingeschaltet; zu-inf einzuschalten.
Equations
- One or more equations did not get rendered due to their size.
Instances For
abfahren 'depart'. Separable ab-; pp abgefahren; zu-inf abzufahren.
Equations
- One or more equations did not get rendered due to their size.
Instances For
mitkommen 'come along'. Separable mit-; pp mitgekommen; zu-inf mitzukommen.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Inseparable prefix verbs #
verstehen 'understand'. Inseparable ver-; pp verstanden (no ge-); zu-inf zu verstehen (separated).
Equations
- One or more equations did not get rendered due to their size.
Instances For
bezahlen 'pay'. Inseparable be-; pp bezahlt (no ge-); zu-inf zu bezahlen (separated).
Equations
- One or more equations did not get rendered due to their size.
Instances For
entkommen 'escape'. Inseparable ent-; pp entkommen (no ge-); zu-inf zu entkommen (separated).
Equations
- One or more equations did not get rendered due to their size.
Instances For
The canonical inventory: 5 separable + 3 inseparable.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Properties #
An entry's citationForm is the literal concatenation of its
affix and stem. Holds for both separable and inseparable
classes; the morphological diagnostics live in the past participle
and zu-infinitive shapes (separable inserts ge-/-zu- between
affix and stem; inseparable does neither).
Equations
- Fragments.German.VerbParticles.IsCitationConcat e = (e.citationForm = e.affix ++ e.stem)
Instances For
Equations
Every inventory entry's citation form is the concatenation of its affix and stem.