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 with Signs Seen by Earlier Editors

Signs or spaces deliberately erased in antiquity seen by earlier editors but no longer visible on the support.

Syntax

Any notation of a phenomenon (IbiUnit) allowed within PreviousSeen enclosed between double square brackets [[…]].

Overview

NotationConceptual ASTPaper Output
[[_⊙_‽ᵟ]]Erasure { content: [PreviousSeen { ⊙ }], cert: γ }⟦⸤⊙⸥◇ᵟ⟧
  • 𝑆 = any sign (Unicode character) ∉ STOP_SET (cf. Technical Catalogue of Symbols) otherwise preceded by the escape character \.
  • 𝑁 = number of characters (represented by char or digits).
  • PREVIOUS_SEEN_ALLOWED = any phenomena allowed within PreviousSeen (notation, AST or rendering depending on its placement).
  • ‽ᵟ ∈ {?, !, ε} = uncertainty marker ?, certainty marker !, or empty string (ε).
  • ◇ᵟ ∈ {, , ε} = rendering of the uncertainty/certainty marker in the notation or empty string (ε).
  • γ ∈ {Low, High, Medium} = certainty level corresponding to the marker used in the notation.

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]
  PreviousSeen[medium]
    Plain("abc")
[[_abc_?]]
Erasure[low]
  PreviousSeen[medium]
    Plain("abc")
[[_abc_!]]
Erasure[high]
  PreviousSeen[medium]
    Plain("abc")