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

Segni integrati a testo

Segni integrati dall’editore, ricostruiti come originariamente incisi ma oggi perduti.

Sintassi

Qualunque sequenza di caratteri Unicode (seguita dalla notazione opzionale di certezza) racchiusa tra parentesi quadre […].

Panoramica

NotazioneAST ConcettualeResa cartacea
[π‘†Γ—π‘β€½α΅Ÿ]Supplied { content: [Plain("𝑆×𝑁")], cert: Ξ³ }[π‘†Γ—π‘β—‡α΅Ÿ]
  • 𝑆 = qualunque segno (carattere Unicode) βˆ‰ STOP_SET (cf. Catalogo tecnico dei simboli) altrimenti preceduto dal carattere di escape \.
  • 𝑁 = numero di caratteri (rappresentato da segni o cifre).
  • 𝑛 ∈ β„• (numeri naturali).
  • β—‡α΅Ÿ ∈ {β―‘, ⯁, Ξ΅} = resa del mercatore di incertezza/certezza in notazione o stringa vuota (Ξ΅).
  • Ξ³ ∈ {Low, High, Medium} = livello di certezza corrispondente al marcatore adoperato in notazione.

Esempi

NotazioneResa cartacea
[abc]
abc
[abc?]
abc
[abc!]
abc

Rese EpiDoc

NotazioneEpiDoc (XML)
[abc]
<ab>
    <supplied reason="lost" cert="medium">abc</supplied>
</ab>
[abc?]
<ab>
    <supplied reason="lost" cert="low">abc</supplied>
</ab>
[abc!]
<ab>
    <supplied reason="lost" cert="high">abc</supplied>
</ab>

Analisi strutturale (AST concettuale)

NotazioneAST
[abc]
Supplied[medium]
  Plain("abc")
[abc?]
Supplied[low]
  Plain("abc")
[abc!]
Supplied[high]
  Plain("abc")