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

Unclear Superfluous Signs

Unclear remaining traces of superflous signs added in error by the inscriber of the text and excised by the editor.

Syntax

Any notation of a phenomenon (IbiUnit) allowed within Unclear wrapped by asterisks *…* and enclosed between curly brackets {…}.

Overview

NotationConceptual ASTPaper Output
{*⊙*‽ᵟ}Surplus { content: [Unclear { ⊙ }], cert: γ }{⦇⊙⦈◇ᵟ}
  • UNCLEAR_ALLOWED = any phenomena allowed within Unclear (notation, AST or rendering depending on its placement).
  • ‽ᵟ ∈ {?, !, ε} = 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">
        <unclear cert="medium">abc</unclear>
    </surplus>
</ab>
{*abc*?}
<ab>
    <surplus cert="low">
        <unclear cert="medium">abc</unclear>
    </surplus>
</ab>
{*abc*!}
<ab>
    <surplus cert="high">
        <unclear cert="medium">abc</unclear>
    </surplus>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
{*abc*}
Surplus[medium]
  Unclear[medium, legibility: normal]
    Plain("abc")
{*abc*?}
Surplus[low]
  Unclear[medium, legibility: normal]
    Plain("abc")
{*abc*!}
Surplus[high]
  Unclear[medium, legibility: normal]
    Plain("abc")