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 Ranged Extent

A gap whose extent is expressed as a plausible numeric range.

Syntax

Any natural numbers couple separated by an hyphen - (followed by the optional precision notation), enclosed between square brackets [โ€ฆ].

Overview

NotationConceptual ASTPaper Output
[๐‘›โ‚-๐‘›โ‚‚โ€ฝแตŸ]Gap{ quantity: Range{ min: ๐‘›โ‚, max: ๐‘›โ‚‚ }, precision: ฮณ }[ยท๐‘›โ‚โ€“๐‘›โ‚‚โ—‡แตŸยท]
  • ๐‘›โ‚, ๐‘›โ‚‚ โˆˆ โ„• (natural numbers), with ๐‘›โ‚ โ‰ค ๐‘›โ‚‚.
  • ๐‘ = number of characters (represented by char or digits).
  • ๐‘› โˆˆ โ„• (natural numbers).
  • โ€ฝแตŸ โˆˆ {?, !, ฮต} = 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
[1-3]
1โ€“3
[2-4?]
2โ€“4
[5-6!]
5โ€“6

EpiDoc Outputs

NotationEpiDoc (XML)
[1-3]
<ab>
    <gap reason="lost" atLeast="1" atMost="3" unit="character" precision="medium"/>
</ab>
[2-4?]
<ab>
    <gap reason="lost" atLeast="2" atMost="4" unit="character" precision="low"/>
</ab>
[5-6!]
<ab>
    <gap reason="lost" atLeast="5" atMost="6" unit="character" precision="high"/>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
[1-3]
Gap(range=1โ€“3, medium)
[2-4?]
Gap(range=2โ€“4, low)
[5-6!]
Gap(range=5โ€“6, high)