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 As-Written Signs

Signs whose remaining traces on the support are readable enough to be restored. Alternative readings may be possible.

Syntax

Any number of Unicode characters enclosed (followed by the optional certainty notation) between asterisks *โ€ฆ*. The optional " operator, placed before the final delimiter, can be used to indicate a particularly difficult reading.

Overview

NotationConceptual ASTPaper Output
*๐‘†ร—๐‘โ€ฝแตŸ"แตŸ*Unclear { content: [Plain("๐‘†ร—๐‘")], cert: ฮณ, legibility: ฮป }โฆ‡๐‘†ร—๐‘โ—‡แตŸ~แตŸโฆˆ
  • ๐‘† = 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 (ฮต).
  • ฮป = legibility level (normal or severe) based on the presence or absence of the " operator.
  • ~แตŸ = severe legibility marker ~ or nothing in case of normal legibility.

See Unclear Signs for the automatic rectification performed by the formatter to improve legibility.

Examples

NotationPaper Output
*abc*
abc
*abc?*
abc
*abc!*
abc
*abc"*
abc
*abc?"*
abc
*abc!"*
abc

EpiDoc Outputs

NotationEpiDoc (XML)
*abc*
<ab>
    <unclear cert="medium">abc</unclear>
</ab>
*abc?*
<ab>
    <unclear cert="low">abc</unclear>
</ab>
*abc!*
<ab>
    <unclear cert="high">abc</unclear>
</ab>
*abc"*
<ab>
    <unclear cert="medium" reason="illegible">abc</unclear>
</ab>
*abc?"*
<ab>
    <unclear cert="low" reason="illegible">abc</unclear>
</ab>
*abc!"*
<ab>
    <unclear cert="high" reason="illegible">abc</unclear>
</ab>

Structural Analysis (Conceptual AST)

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