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

As-Written Signs Deleted in Correction

As-written signs deleted in an ancient correction.

Syntax

Any sequence of Unicode characters representing Plain content followed by an equal sign and a greater-than sign forming a => arrow, then by the added text notation, all enclosed between plus signs +…+. Optional metadata can be written before the final + delimiter.

Overview

NotationConceptual ASTPaper Output
+𝑆×𝑁=>β€¦β€½α΅ŸΒ€α΅Ÿ+Correction { deleted: [Plain("𝑆×𝑁")], added:…, cert: Ξ³, meta: Β€ }𝘏ᡟ``⸄𝑆×𝑁 ↦ β€¦β—‡α΅ŸβΈ…
  • 𝘏 = identifier sign of the hand (if specified in the optional annotations/metadata €ᡟ).
  • 𝑆 = any sign (Unicode character) βˆ‰ STOP_SET (cf. Technical Catalogue of Symbols) otherwise preceded by the escape character \.
  • 𝑁 = 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 (Ξ΅).
  • €ᡟ = 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
+abc=>xyz+
abcxyz
+abc=>xyz?;h=c>d+
cdabcxyz
+abc=>xyz!;manus=c;place=supra+
caboveabcxyz

EpiDoc Outputs

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

Structural Analysis (Conceptual AST)

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