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 Unclear Signs

Signs or spaces deliberately erased in antiquity whose reading is unclear.

Syntax

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

Overview

NotationConceptual ASTPaper Output
[[*⊙*‽ᵟ]]Erasure { content: [Unclear { ⊙ }], cert: γ }⟦⦇⊙⦈◇ᵟ⟧
  • UNCLEAR_ALLOWED = any phenomena allowed within Unclear (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>
</del>
</ab>
[[*abc*?]]
<ab>
    <del cert="low">
    </supplied>
</del>
</ab>
[[*abc*!]]
<ab>
    <del cert="high">
    </supplied>
</del>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
[[*abc*]]
Erasure[medium]
  Unclear[medium, legibility: normal]
    Plain("abc")
[[*abc*?]]
Erasure[low]
  Unclear[medium, legibility: normal]
    Plain("abc")
[[*abc*!]]
Erasure[high]
  Unclear[medium, legibility: normal]
    Plain("abc")