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 Superfluous Signs

Superfluous signs added in error by the inscriber of the text and excised by the editor.

Syntax

Any number of Unicode characters (followed by the optional certainty notation) enclosed between curly brackets {โ€ฆ}.

Overview

NotationConceptual ASTPaper Output
{๐‘†ร—๐‘โ€ฝแตŸ}[Surplus { 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).
  • โ€ฝแตŸ โˆˆ {?, !, ฮต} = 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 (ฮต).

Examples

NotationPaper Output
{abc}
abc
{abc?}
abc
{abc!}
abc

EpiDoc Outputs

NotationEpiDoc (XML)
{abc}
<ab>
    <surplus cert="medium">abc</surplus>
</ab>
{abc?}
<ab>
    <surplus cert="low">abc</surplus>
</ab>
{abc!}
<ab>
    <surplus cert="high">abc</surplus>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
{abc}
Surplus[medium]
  Plain("abc")
{abc?}
Surplus[low]
  Plain("abc")
{abc!}
Surplus[high]
  Plain("abc")