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

Erasure of Supplied Signs

Signs or spaces deliberately erased in antiquity whose reading has been supplied by the editor.

Syntax

Any notation of a phenomenon (IbiUnit) allowed within Supplied wrapped by square brackets […] and enclosed between double square brackets [[…]].

Overview

NotationConceptual ASTPaper Output
[[[⊙]‽ᵟ]]Erasure { content: [Supplied { ⊙ }], cert: γ }⟦[⊙]◇ᵟ⟧
  • SUPPLIED_ALLOWED = any phenomena allowed within Supplied (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 Signs Erased in Antiquity and Rasurae 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>
    <del cert="medium">
        <supplied reason="lost" cert="medium">abc</supplied>
    </del>
</ab>
[[[abc]?]]
<ab>
    <del cert="low">
        <supplied reason="lost" cert="medium">abc</supplied>
    </del>
</ab>
[[[abc]!]]
<ab>
    <del cert="high">
        <supplied reason="lost" cert="medium">abc</supplied>
    </del>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
[[[abc]]]
Erasure[medium]
  Supplied[medium]
    Plain("abc")
[[[abc]?]]
Erasure[low]
  Supplied[medium]
    Plain("abc")
[[[abc]!]]
Erasure[high]
  Supplied[medium]
    Plain("abc")