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

Supplied Abbreviated Text

Abbreviated text restored by the editor as once having been inscribed but now lost.

Syntax

Any notation of a phenomenon (IbiUnit) allowed within Supplied, thus enclosed between square brackets […] preceding a left round bracket (, marker of the abbreviation’s expansion.

Overview

NotationConceptual ASTPaper Output
[⊙‽ᵟ](…)Written([Supplied { ⊙, γ }])[⊙◇ᵟ]
  • ‽ᵟ ∈ {?, !, ε} = 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 (ε).
  • SUPPLIED_ALLOWED = any phenomena allowed within Supplied (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>
    <supplied reason="lost" cert="medium">Aug</supplied>
    <expan>
        <ex>ustus</ex>
    </expan>
</ab>
[Aug?](ustus)
<ab>
    <supplied reason="lost" cert="low">Aug</supplied>
    <expan>
        <ex>ustus</ex>
    </expan>
</ab>
[Aug!](ustus)
<ab>
    <supplied reason="lost" cert="high">Aug</supplied>
    <expan>
        <ex>ustus</ex>
    </expan>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
[Aug](ustus)
Supplied[medium]
  Plain("Aug")
Abbreviation[complete]
  Expanded(certain)
    Plain("ustus")
[Aug?](ustus)
Supplied[low]
  Plain("Aug")
Abbreviation[complete]
  Expanded(certain)
    Plain("ustus")
[Aug!](ustus)
Supplied[high]
  Plain("Aug")
Abbreviation[complete]
  Expanded(certain)
    Plain("ustus")