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

Addition Containing Gap of Known Extent

A gap of known extent (a specific number of missing or lost characters) contained inside an addition to the support by a later ancient hand.

Syntax

The notation for a gap of known extent wrapped within plus signs +…+.

Overview

NotationConceptual ASTPaper Output
+[⊙]‽ᵟ¤ᵟ+Addition { content: [Gap { ⊙ }], cert: γ, meta: ¤ }𝘏ᵟ``⸂[⊙]◇ᵟ⸃
  • 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 (ε).
  • ¤ᵟ = optional annotations (metadata) supported by Addition (cf. Later Ancient Additions of Signs).

See Later Ancient Additions of Signs for the automatic rectification performed by the formatter to improve legibility.

Examples

NotationPaper Output
+[.7.]?;h=c>d+
cd7
+[.4.]+
4
+[.2.]!;manus=c;place=supra+
cabove2

EpiDoc Outputs

NotationEpiDoc (XML)
+[.7.]?;h=c>d+
<ab>
    <add cert="low">
        <gap reason="lost" quantity="7" unit="character" precision="medium"/><app type="alternative"><lem><handShift new="#c"/><gap reason="lost" quantity="7" unit="character" precision="medium"/></lem><rdg><handShift new="#d"/><gap reason="lost" quantity="7" unit="character" precision="medium"/></rdg></app>
    </add>
</ab>
+[.4.]+
<ab>
    <add cert="medium">
        <gap reason="lost" quantity="4" unit="character" precision="medium"/>
    </add>
</ab>
+[.2.]!;manus=c;place=supra+
<ab>
    <add place="above" cert="medium">
        <gap reason="lost" quantity="2" unit="character" precision="medium"/><app type="alternative"><rdg><handShift new="#c"/><gap reason="lost" quantity="2" unit="character" precision="medium"/></rdg></app>
    </add>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
+[.7.]?;h=c>d+
Addition[low][meta]
  Gap(known=7, medium)
+[.4.]+
Addition[medium]
  Gap(known=4, medium)
+[.2.]!;manus=c;place=supra+
Addition[medium][meta]
  Gap(known=2, medium)