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

Signs Added in Correction Seen by Earlier Editors

Signs added in an ancient correction that were seen and recorded by earlier editors, but are no longer visible on the support.

Syntax

The notation representing the deleted text followed by an equal sign and a greater-than sign forming a => arrow, then by any notation of a phenomenon (IbiUnit) allowed within PreviousSeen, all enclosed between plus signs +…+. Optional metadata can be written before the final + delimiter.

Overview

NotationConceptual ASTPaper Output
+…=>_⊙_‽ᵟ¤ᵟ+Correction { deleted:…, added: [PreviousSeen { ⊙ }], cert: γ, meta: ¤ }𝘏ᵟ``⸄… ↦ ⸤⊙⸥◇ᵟ⸅
  • 𝘏 = identifier sign of the hand (if specified in the optional annotations/metadata ¤ᵟ).
  • PREVIOUS_SEEN_ALLOWED = any phenomena allowed within PreviousSeen (notation, AST or rendering depending on its placement).
  • ‽ᵟ ∈ {?, !, ε} = 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 Correction (cf. Ancient Corrections).

See Ancient Corrections for the automatic rectification performed by the formatter to improve legibility.

Examples

NotationPaper Output
+xyz=>_abc_+
xyzabc
+xyz=>_abc_?;h=c>d+
cdxyzabc
+xyz=>_abc_!;manus=c;place=supra+
cabovexyzabc

EpiDoc Outputs

NotationEpiDoc (XML)
+xyz=>_abc_+
<ab>
    <subst>
        <del cert="medium">xyz</del>
        <add cert="medium">
            <supplied reason="lost" evidence="previouseditor" cert="medium">abc</supplied>
        </add>
    </subst>
</ab>
+xyz=>_abc_?;h=c>d+
<ab>
    <subst>
        <del cert="low"><app type="alternative"><lem><handShift new="#c"/></lem><rdg><handShift new="#d"/></rdg></app>xyz</del>
        <add cert="low">
            <supplied reason="lost" evidence="previouseditor" cert="medium">abc</supplied><app type="alternative"><lem><handShift new="#c"/><supplied reason="lost" evidence="previouseditor" cert="medium">abc</supplied></lem><rdg><handShift new="#d"/><supplied reason="lost" evidence="previouseditor" cert="medium">abc</supplied></rdg></app>
        </add>
    </subst>
</ab>
+xyz=>_abc_!;manus=c;place=supra+
<ab>
    <subst>
        <del cert="medium"><app type="alternative"><rdg><handShift new="#c"/></rdg></app>xyz</del>
        <add place="above" cert="medium">
            <supplied reason="lost" evidence="previouseditor" cert="medium">abc</supplied><app type="alternative"><rdg><handShift new="#c"/><supplied reason="lost" evidence="previouseditor" cert="medium">abc</supplied></rdg></app>
        </add>
    </subst>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
+xyz=>_abc_+
Correction[medium]
  deleted:
    Plain("xyz")
  added:
    PreviousSeen[medium]
      Plain("abc")
+xyz=>_abc_?;h=c>d+
Correction[low][meta]
  deleted:
    Plain("xyz")
  added:
    PreviousSeen[medium]
      Plain("abc")
+xyz=>_abc_!;manus=c;place=supra+
Correction[medium][meta]
  deleted:
    Plain("xyz")
  added:
    PreviousSeen[medium]
      Plain("abc")