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

Superfluous Abbreviated Text

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

Syntax

Any notation of a phenomenon (IbiUnit) allowed within Surplus, thus enclosed between curly brackets {…} preceding a left round bracket (, marker of the abbreviation’s expansion.

Overview

NotationConceptual ASTPaper Output
{⊙‽ᵟ}(…)Written([Surplus { ⊙, γ }]){⊙◇ᵟ}
  • ‽ᵟ ∈ {?, !, ε} = 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 (ε).
  • SURPLUS_ALLOWED = any phenomena allowed within Surplus (notation, AST or rendering depending on its placement).

Examples

NotationPaper Output
{Aug}(ustus)
Augustus
{Aug?}(ustus)
Augustus
{Aug!}(ustus)
Augustus

EpiDoc Outputs

NotationEpiDoc (XML)
{Aug}(ustus)
<ab>
    <expan>
        <abbr>
            <surplus cert="medium">Aug</surplus>
        </abbr>
        <ex>ustus</ex>
    </expan>
</ab>
{Aug?}(ustus)
<ab>
    <expan>
        <abbr>
            <surplus cert="low">Aug</surplus>
        </abbr>
        <ex>ustus</ex>
    </expan>
</ab>
{Aug!}(ustus)
<ab>
    <expan>
        <abbr>
            <surplus cert="high">Aug</surplus>
        </abbr>
        <ex>ustus</ex>
    </expan>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
{Aug}(ustus)
Abbreviation[complete]
  Written
    Surplus[medium]
      Plain("Aug")
  Expanded(certain)
    Plain("ustus")
{Aug?}(ustus)
Abbreviation[complete]
  Written
    Surplus[low]
      Plain("Aug")
  Expanded(certain)
    Plain("ustus")
{Aug!}(ustus)
Abbreviation[complete]
  Written
    Surplus[high]
      Plain("Aug")
  Expanded(certain)
    Plain("ustus")