Bulgarian Verbal Prefixes #
@cite{istratkova-2004} @cite{svenonius-2004} @cite{dendikken-1995}
Lexical entries for Bulgarian verbal prefixes encoding the lexical / superlexical distinction of @cite{svenonius-2004} and the Bulgarian-distinctive feature of multiple prefixation per @cite{istratkova-2004}: up to seven prefixes can stack on a single verbal root in Bulgarian, with superlexicals systematically appearing outside lexicals (paper §1, ex. 3-4). Lexical prefixes are R-heads inside VP (resultative, particle-like); superlexical prefixes are Asp-heads outside VP (aspectual operators).
Bulgarian-specific facts (@cite{istratkova-2004} abstract):
- Prefixes attach to both perfective AND imperfective stems — they don't uniformly mark perfectivity.
- Prefixes can stack productively, with up to 7 layers documented.
- The stacking order is structurally constrained: outer prefixes take scope over inner ones, and superlexicals always sit outside lexicals (paper §3 ex. 4).
Main definitions #
Aspect— perfective vs imperfective.SuperlexicalSubtype— six aspectual subtypes.PrefixClass—lexicalorsuperlexical _.BulgarianPrefixedVerbEntry— usesprefixChain : List (String × PrefixClass)in surface (outermost-first) order to support multi-prefixation.inventory— six entries: 2 single-prefix lexical, 3 single-prefix superlexical, 1 multi-prefix (the canonical po-na-razkaža of paper §1 ex. 3a, also cited by @cite{svenonius-2004} p. 207 ex. 3a).
Main results #
inventory_transparent_concat— every entry'sprefixedFormis the literal concatenation of its prefix chain followed bybareStem.inventory_well_stacked— every multi-prefix entry has all prefixes consistently classified (no inconsistent stacking) — a structural invariant from @cite{istratkova-2004} §3.
A Bulgarian prefixed-verb entry. The prefixChain is a list of
(morpheme, class) pairs in surface order (outermost /
leftmost first), supporting multi-prefixation. Single-prefix
entries have a one-element list; multi-prefix entries have
multi-element lists.
- bareStem : String
Bare verb stem (PF or IMPF citation form).
- stemAspect : Aspect
Aspect of the bare stem. Note (paper abstract): Bulgarian prefixes can attach to either aspect.
- prefixChain : List (String × PrefixClass)
Surface-order list of
(morpheme, class)pairs. - prefixedForm : String
The fully prefixed form (concatenation of all prefixes followed by
bareStem). - baseGloss : String
Gloss of the bare stem.
- prefixedGloss : String
Gloss of the prefixed form.
Instances For
Single-prefix lexical entries #
iz-veda 'take out' — lexical iz- (spatial 'out') on stem veda 'lead'. @cite{istratkova-2004} §1 ex. 1g.
Equations
- One or more equations did not get rendered due to their size.
Instances For
za-piša 'put down in writing' — lexical za- (spatial 'down, behind') on stem piša 'write'. @cite{istratkova-2004} §1 ex. 1a.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Single-prefix superlexical entries #
za-blest'a 'start to glitter' — superlexical za- INCP on imperfective stem blest'a 'glitter'. @cite{istratkova-2004} §1 ex. 3d.
Equations
- One or more equations did not get rendered due to their size.
Instances For
po-znam 'guess' — superlexical po- DLMT on imperfective stem znam 'know'. @cite{istratkova-2004} §1 ex. 3c (delimitative- flavoured 'know-a-bit' → 'guess').
Equations
- One or more equations did not get rendered due to their size.
Instances For
pro-četa 'read completely' — superlexical pro- CMPL on imperfective stem četa 'read'. @cite{istratkova-2004} §1 ex. 3i.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Multi-prefix entries #
The distinctive Bulgarian feature: superlexical prefixes stack outside each other (and outside any lexical prefix). The structural constraint (@cite{istratkova-2004} §3): outermost takes widest scope.
po-na-razkaža 'tell a little of many' — multi-prefix entry: DLMT po- outside CMLT na- outside the (etymologically complex) bare stem razkaža 'narrate'. @cite{istratkova-2004} §3 ex. 4 (cited also by @cite{svenonius-2004} p. 207 ex. 3a). The two superlexicals stack with outer DLMT (po-) taking scope over inner CMLT (na-).
Equations
- One or more equations did not get rendered due to their size.
Instances For
The canonical inventory: 2 single-lex + 3 single-superlex + 1 multi-prefix.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Properties #
The concatenation of all prefix morphemes in the chain (surface order: leftmost first).
Equations
- e.prefixString = List.foldl (fun (acc : String) (p : String × Fragments.Slavic.PrefixClass) => acc ++ p.1) "" e.prefixChain
Instances For
An entry's prefixedForm is the literal concatenation of its
prefix chain (in surface order) followed by bareStem.
Equations
Instances For
Every inventory entry is a transparent concatenation.
Every inventory entry has at least one prefix.