Documentation

Linglib.Theories.Phonology.Prosodic.Syllable.Foot

Metrical Foot Structure #

@cite{hayes-1995} @cite{kager-2007}

Foot types, metrical parsing, and OT constraints on metrical structure.

A metrical foot is a prosodic constituent grouping syllables into a rhythmic unit. @cite{hayes-1995} identifies three canonical foot types:

TypeWell-formed shapesStress system
Moraic trochee(H), (LL)Weight-sensitive
Syllabic trochee(σσ)Weight-insensitive
Iamb(LH), (LL), (H)Right-prominent

The foot's head (prominent syllable) determines stress: initial in trochees, final in iambs.

Definitions #

The three canonical foot types (@cite{hayes-1995}, Ch. 3).

  • moraicTrochee : FootType

    Moraic trochee: bimoraic with initial prominence. Well-formed shapes: (H) = 2μ, (LL) = 2μ. Used in weight-sensitive stress (Turkish, Latin, Telugu).

  • syllabicTrochee : FootType

    Syllabic trochee: bisyllabic with initial prominence. Well-formed shape: (σσ) regardless of weight. Used in weight-insensitive stress (Czech, Pintupi).

  • iamb : FootType

    Iamb: prominence on the heavier/final syllable. Well-formed shapes: (LH), (LL), (H). Used in right-prominent stress (Creek, Yupik).

Instances For
    @[implicit_reducible]
    Equations
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For

      An element in a metrical parse: either a foot grouping syllables or an unparsed (stray) syllable. The list preserves left-to-right linear order within the prosodic domain.

      Instances For
        Equations
        • One or more equations did not get rendered due to their size.
        Instances For
          @[reducible, inline]

          A metrical parse: a prosodic domain represented as a linear sequence of footed and unfooted syllables.

          Equations
          Instances For

            Extract all feet from a parse.

            Equations
            • One or more equations did not get rendered due to their size.
            Instances For

              Mora count of a single foot.

              Equations
              Instances For

                Total syllable count in a parse.

                Equations
                • One or more equations did not get rendered due to their size.
                Instances For

                  Number of unparsed syllables in a parse.

                  Equations
                  • One or more equations did not get rendered due to their size.
                  Instances For

                    Is a foot degenerate (subminimal)? A monomoraic foot (L) is degenerate — it fails to meet the bimoraic minimum.

                    Equations
                    Instances For
                      @[implicit_reducible]
                      Equations
                      @[implicit_reducible]
                      Equations
                      • One or more equations did not get rendered due to their size.

                      FT-BIN(μ): assign one violation for each foot that does not consist of exactly two morae (@cite{kager-2007}).

                      Well-formed moraic trochees: (H) = 2μ, (LL) = 2μ. Violations: degenerate (L) = 1μ, superheavy (SH) = 3μ.

                      Equations
                      Instances For

                        PARSE-SYL: assign one violation for each syllable not parsed into a foot (@cite{kager-2007}). Drives exhaustive parsing.

                        Equations
                        Instances For

                          ALL-FT-LEFT: for each foot, count the number of syllables intervening between the left edge of the prosodic domain and the left edge of the foot (@cite{kager-2007}). Sum over all feet.

                          A foot at syllable position k (0-indexed) incurs k violations. Drives left-to-right iterative footing.

                          Equations
                          Instances For

                            ALL-FT-RIGHT: for each foot, count the number of syllables intervening between the right edge of the foot and the right edge of the prosodic domain. Sum over all feet.

                            Drives right-to-left iterative footing.

                            Equations
                            Instances For
                              def Phonology.Syllable.allFtRightViolations.go (total : ) :
                              List ParseElement
                              Equations
                              Instances For