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

Gap of Unknown Extent

A gap of unknown extent.

Syntax

Zero or more white spaces enclosed between square brackets […].

Overview

NotationConceptual ASTPaper Output
[𝑊×𝑁₀₋ₙ‽ᵟ]Gap{ quantity: Unknown, precision: γ }[··◇ᵟ·]
  • 𝑊 = any white space.
  • 𝑁₀₋ₙ = zero or more repetitions.
  • ‽ᵟ ∈ {?, !, ε} = 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
[]
·
[?]
·
[!]
·

EpiDoc Outputs

NotationEpiDoc (XML)
[]
<ab>
    <gap reason="lost" extent="unknown" unit="character" precision="medium"/>
</ab>
[?]
<ab>
    <gap reason="lost" extent="unknown" unit="character" precision="low"/>
</ab>
[!]
<ab>
    <gap reason="lost" extent="unknown" unit="character" precision="high"/>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
[]
Gap(unknown, medium)
[?]
Gap(unknown, low)
[!]
Gap(unknown, high)