Documentation

Linglib.Theories.Semantics.Highlighting

Highlighting #

@cite{roelofsen-vangool-2010} @cite{roelofsen-farkas-2015} @cite{simons-tonhauser-beaver-roberts-2010} @cite{krifka-2017}

A highlighted proposition is one that has been made salient by a recent utterance and that addresses the current question under discussion (QUD). The notion was introduced by @cite{roelofsen-vangool-2010} for disjunctive questions (the affirmative disjunct is highlighted and feeds the polarity particle response in @cite{roelofsen-farkas-2015}). It generalises in @cite{krifka-2017} and the verum-marker literature (e.g. @cite{martinez-vera-2026}) to a discourse-management primitive shared across focus, biased polar questions, and verum strategies.

What this module provides #

Consumers (verum studies, biased polar question studies, evidential discourse studies) import this file rather than re-stipulating the predicate locally.

Known unmigrated consumers (deferred) #

This substrate landed alongside @cite{martinez-vera-2026}'s formalisation; existing files that use highlighting-shaped notions but have not yet been migrated:

Migration to consume Highlighting.HighlightingContext is queued for follow-up work; landing the substrate first lets the new MartinezVera2026 study consume it without forcing an immediate four-file refactor.

A highlighting context: the set of propositions made salient by recent utterances, paired with the QUD they should address.

  • salient : Set (Set W)

    Propositions made salient by recent utterances.

  • The current question under discussion.

Instances For
    def Semantics.Highlighting.AddressesQUD {W : Type u_1} (q : Core.Question W) (p : Set W) :

    A proposition p addresses a question q iff it is comparable to some alternative — entailing it or being entailed by it. The simplest Set-valued version of @cite{simons-tonhauser-beaver-roberts-2010}'s "contextually entails an answer".

    Equations
    Instances For

      @cite{martinez-vera-2026} (38): proposition p is highlighted in context c iff it has been made salient by an utterance and addresses the current QUD.

      Equations
      Instances For

        The empty highlighting context: no salient propositions, the trivial QUD that is resolved by anything.

        Equations
        Instances For

          A highlighting context built from a single salient proposition that declaratively resolves its own QUD.

          Equations
          Instances For

            Add a proposition to the salient set without touching the QUD.

            Equations
            Instances For
              @[simp]
              theorem Semantics.Highlighting.mem_salient_addSalient {W : Type u_1} (c : HighlightingContext W) (p q : Set W) :
              q (addSalient c p).salient q = p q c.salient
              @[simp]
              theorem Semantics.Highlighting.qud_addSalient {W : Type u_1} (c : HighlightingContext W) (p : Set W) :
              (addSalient c p).qud = c.qud
              @[simp]
              theorem Semantics.Highlighting.salient_singleton {W : Type u_1} (p : Set W) :
              (singleton p).salient = {p}

              @cite{roelofsen-farkas-2015}: polarity particles #

              @cite{roelofsen-farkas-2015}'s polarity-particle response slot.

              agree (English yes, German ja, Romance sí/oui) confirms the highlighted proposition; reverse (English no, German nein, Romance no/non) commits to its (set-theoretic) complement.

              The two-cell taxonomy is the cross-linguistic minimum; English/German elaborate it with intonation, Polish/Czech and Mandarin add further morphology — extensions live in study files, not here.

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

                  The proposition committed to by a polarity-particle response, given a highlighted proposition p. agree projects to p; reverse projects to pᶜ (set-theoretic complement).

                  Equations
                  Instances For

                    The two response particles disagree on every world: agree commits to p, reverse commits to pᶜ, and these partition Set.univ.