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 White Spaces

White spaces added by the editor which the inscriber of the text has either omitted or for which he has by error inscribed other signs. Omitted is in fact the only phenomenon that can contain isolated significant white spaces, which are ignored in other cases.

Syntax

Any white space character enclosed between angle brackets <…>.

Overview

NotationConceptual ASTPaper Output
<𝑊‽ᵟ>Omitted { content: [Whitespace], cert: γ }〈 ◇ᵟ〉
  • 𝑊 = any white space.
  • 𝑛 ∈ ℕ (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
< >
<ab c>
abc
< ab c ?>
abc
<a bc!>
abc

EpiDoc Outputs

NotationEpiDoc (XML)
< >
<ab>
    <supplied reason="omitted" cert="medium">
    </supplied>
</ab>
<ab c>
<ab>
    <supplied reason="omitted" cert="medium">abc</supplied>
</ab>
< ab c ?>
<ab>
    <supplied reason="omitted" cert="low">abc</supplied>
</ab>
<a bc!>
<ab>
    <supplied reason="omitted" cert="high">abc</supplied>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
< >
Omitted[medium]
<ab c>
Omitted[medium]
  Plain("ab")
  Plain("c")
< ab c ?>
Omitted[low]
  Plain("ab")
  Plain("c")
<a bc!>
Omitted[high]
  Plain("a")
  Plain("bc")