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

Erasure of As-Written Signs

Signs or spaces deliberately erased in antiquity, still legible.

Syntax

Any number of Unicode characters (followed by the optional certainty notation)

Overview

NotationConceptual ASTPaper Output
[[๐‘†ร—๐‘โ€ฝแตŸ]]Erasure { content: [Supplied { content: [Plain("๐‘†ร—๐‘")], cert: ฮณ }], cert: High }โŸฆ๐‘†ร—๐‘โ—‡แตŸโŸง
  • ๐‘† = 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 (ฮต).

See Signs Erased in Antiquity and Rasurae for the automatic rectification performed by the formatter to improve legibility.

Examples

NotationPaper Output
[[abc]]
abc
[[abc?]]
abc
[[abc!]]
abc

EpiDoc Outputs

NotationEpiDoc (XML)
[[abc]]
<ab>
    <del cert="medium">
    </supplied>
</del>
</ab>
[[abc?]]
<ab>
    <del cert="low">
    </supplied>
</del>
</ab>
[[abc!]]
<ab>
    <del cert="high">
    </supplied>
</del>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
[[abc]]
Erasure[medium]
  Plain("abc")
[[abc?]]
Erasure[low]
  Plain("abc")
[[abc!]]
Erasure[high]
  Plain("abc")