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

Supplied As-Written Signs

Signs restored by the editor as once having been inscribed but now lost.

Syntax

Any number of Unicode characters (followed by the optional certainty notation) enclosed between square brackets [โ€ฆ].

Overview

NotationConceptual ASTPaper Output
[๐‘†ร—๐‘โ€ฝแตŸ]Supplied { content: [Plain("๐‘†ร—๐‘")], cert: ฮณ }[๐‘†ร—๐‘โ—‡แตŸ]
  • ๐‘† = 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).
  • โ—‡แตŸ โˆˆ {โฏ‘, โฏ, ฮต} = rendering of the uncertainty/certainty marker in the notation or empty string (ฮต).
  • ฮณ โˆˆ {Low, High, Medium} = certainty level corresponding to the marker used in the notation.

Examples

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

EpiDoc Outputs

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

Structural Analysis (Conceptual AST)

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