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

Superfluous Gap of Known Extent

A superfluous gap of known extent added in error by the inscriber of the text and excised by the editor. The editor indicates a precise number of missing characters by repeating a gap sign inside square brackets.

Syntax

The notation for a gap of known extent placed among square brackets […] and enclosed between curly brackets {…}.

Overview

NotationConceptual ASTPaper Output
{[⊙]‽ᵟ}Surplus { 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 (ε).

Examples

NotationPaper Output
{[.5.]?}
5
{[.3.]}
3
{[.4.]!}
4

EpiDoc Outputs

NotationEpiDoc (XML)
{[.5.]?}
<ab>
    <surplus cert="low">
        <gap reason="lost" quantity="5" unit="character" precision="medium"/>
    </surplus>
</ab>
{[.3.]}
<ab>
    <surplus cert="medium">
        <gap reason="lost" quantity="3" unit="character" precision="medium"/>
    </surplus>
</ab>
{[.4.]!}
<ab>
    <surplus cert="high">
        <gap reason="lost" quantity="4" unit="character" precision="medium"/>
    </surplus>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
{[.5.]?}
Surplus[low]
  Gap(known=5, medium)
{[.3.]}
Surplus[medium]
  Gap(known=3, medium)
{[.4.]!}
Surplus[high]
  Gap(known=4, medium)