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

Lexical Unit Boundary

The logical boundary of a lexical unit (word). It is used to mark the end of a word regardless of its physical layout on the support, allowing the system to reconstruct units split by fractures or line breaks.

Syntax

Any number of Unicode characters enclosed within ampersands &โ€ฆ&. Optionally, linguistic annotations can follow after a semicolon ;.

If the user wishes to easily identify a series of lexical units, the entire sequence can be enclosed within ampersands &โ€ฆ& with individual units separated by a forward slash /.

Overview

NotationConceptual ASTPaper Output
&๐‘†ร—๐‘;ฮปโ‚›=ฮปแตฅ;โ€ฆ&LexicalUnit([๐˜œ], LinguisticAnalysis{ฮปโ‚–:ฮปแตฅ,โ€ฆ})๐‘†ร—๐‘
  • ๐‘† = 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).
  • ฮปโ‚› = label, which may also be in abbreviated form, for linguistic annotation.
  • ฮปแตฅ = value of the linguistic annotation (plausibility scale).
  • ฮปโ‚– = canonical key for the linguistic annotation derived from the corresponding label.

Examples

NotationPaper Output
&ab-c&
ab-c
&*ab* [c]&
ab c
&
abc defg  hijk l
&
abc defg hijk l
&abc/def/hijk&
abcdefhijk

EpiDoc Outputs

NotationEpiDoc (XML)
&ab-c&
<ab>
    <w>ab<lb break="no"/>c</w>
</ab>
&*ab* [c]&
<ab>
    <w>
        <unclear cert="medium">ab</unclear> 
        <supplied reason="lost" cert="medium">c</supplied>
    </w>
</ab>
&
abc defg  hijk l
&
<ab>
    <w>abc defg hijk l</w>
</ab>
&abc/def/hijk&
<ab>
    <w>abcdefhijk</w>
</ab>

Structural Analysis (Conceptual AST)

NotationAST
&ab-c&
LexicalUnit
  Plain("ab")
  WordBreak
  Plain("c")
&*ab* [c]&
LexicalUnit
  Unclear[medium, legibility: normal]
    Plain("ab")
  WS
  Supplied[medium]
    Plain("c")
&
abc defg  hijk l
&
LexicalUnit
  Plain("abc")
  WS
  Plain("defg")
  WS
  Plain("hijk")
  WS
  Plain("l")
&abc/def/hijk&
LexicalUnit
  Plain("abc")
  LineBreak
  Plain("def")
  LineBreak
  Plain("hijk")