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

Rasura (or Gap in Erasure) of Ranged Extent

A gap whose extent is expressed as a plausible numeric range, corresponding to an erasure or contained within an ancient erasure.

Syntax

The notation for a gap of ranged extent enclosed between double square brackets [[…]].

Overview

NotationConceptual ASTPaper Output
[[[⊙]‽ᵟ]]Erasure { content: [Gap { ⊙ }], cert: γ }⟦[⊙]◇ᵟ⟧
  • PREVIOUS_SEEN_ALLOWED = the relevant gap notation.
  • ‽ᵟ ∈ {?, !, ε} = 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
[[[3-6]]]
3–6
[[[4-5]?]]
4–5
[[[2-4]!]]
2–4

EpiDoc Outputs

NotationEpiDoc (XML)
[[[3-6]]]
<ab>
    <del cert="medium">
    </supplied>
</del>
</ab>
[[[4-5]?]]
<ab>
    <del cert="low">
    </supplied>
</del>
</ab>
[[[2-4]!]]
<ab>
    <del cert="high">
    </supplied>
</del>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
[[[3-6]]]
Erasure[medium]
  Gap(range=3–6, medium)
[[[4-5]?]]
Erasure[low]
  Gap(range=4–5, medium)
[[[2-4]!]]
Erasure[high]
  Gap(range=2–4, medium)