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

Omitted Signs

As-written signs added by the editor which the inscriber of the text has either omitted or for which he has by error inscribed other signs.

Syntax

Any number of Unicode characters (followed by the optional certainty notation) enclosed between angle brackets <โ€ฆ>.

Overview

NotationConceptual ASTPaper Output
<๐‘†ร—๐‘โ€ฝแตŸ>Omitted { 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).
  • โ€ฝแตŸ โˆˆ {?, !, ฮต} = 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>
    <supplied reason="omitted" cert="medium">abc</supplied>
</ab>
<abc?>
<ab>
    <supplied reason="omitted" cert="low">abc</supplied>
</ab>
<abc!>
<ab>
    <supplied reason="omitted" cert="high">abc</supplied>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
<abc>
Omitted[medium]
  Plain("abc")
<abc?>
Omitted[low]
  Plain("abc")
<abc!>
Omitted[high]
  Plain("abc")