Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Ligature of Signs Seen by Earlier Editors

A ligature whose signs were seen by earlier editors but no longer visible on the support.

Syntax

Any notation of a phenomenon (IbiUnit) allowed within PreviousSeen wrapped by between low lines _…_ and enclosed between equal signs =…=.

Overview

NotationConceptual ASTPaper Output
=_⊙_=Ligature { content: [PreviousSeen { ⊙ }], cert: γ }⸤⧵⊙⧷⸥
  • PREVIOUS_SEEN_ALLOWED = any phenomena allowed within PreviousSeen (notation, AST or rendering depending on its placement).
  • ‽ᵟ ∈ {?, !, ε} = uncertainty marker ?, certainty marker !, or empty string (ε).
  • γ ∈ {Low, High, Medium} = certainty level corresponding to the marker used in the notation.
  • ◇ᵟ ∈ {, , ε} = rendering of the uncertainty/certainty marker in the notation or empty string (ε).

See Ligated Signs for the automatic rectification performed by the formatter to improve legibility.

Examples

NotationPaper Output
=_abc_=
abc
=_abc_?=
abc
=_abc_!=
abc

EpiDoc Outputs

NotationEpiDoc (XML)
=_abc_=
<ab>
    <hi rend="ligature" cert="medium">
        <supplied reason="lost" evidence="previouseditor" cert="medium">abc</supplied>
    </hi>
</ab>
=_abc_?=
<ab>
    <hi rend="ligature" cert="low">
        <supplied reason="lost" evidence="previouseditor" cert="medium">abc</supplied>
    </hi>
</ab>
=_abc_!=
<ab>
    <hi rend="ligature" cert="high">
        <supplied reason="lost" evidence="previouseditor" cert="medium">abc</supplied>
    </hi>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
=_abc_=
Ligature[medium]
  PreviousSeen[medium]
    Plain("abc")
=_abc_?=
Ligature[low]
  PreviousSeen[medium]
    Plain("abc")
=_abc_!=
Ligature[high]
  PreviousSeen[medium]
    Plain("abc")