Encoding Guidelines

Below encoders can find explanations of the TEI codes and elements used for the project. There is a brief explanation of each item followed by the codes related to them.


* AbbreviationsAdditions over erasuresDouble hemistich * Encoding the 31-line canvas * Initials and small caps * Orig and reg * Page breaks * Poem numbers and IDs * Sonnets * Triple hemistich * Sestet marker * Marginal annotations *

Double verse

Most of the poems in Petrarch's Rvf are presented as double verse, with two verse lines appearing horizontally on one manuscript line. To identify these double verses, we will use the <lg> element and the @type attribute with the abbreviation dblvrs. Note below how line one and line two are noted separately while still being part of the same double verse grouping.

Double hemistich
<lg type="dblvrs" corresp="#canvasline">
    <l n="1">...</l>
    <l n="2">...<l>
</lg>

Triple verse

A few of the poems in Petrarch's Rvf are presented as triple verse, with three verse lines appearing horizontally on one manuscript line. To identify these them, we will use the <lg> element and the @type attribute with the abbreviation trplvrs.

Triple hemistich
<lg type="trplvrs" corresp="#canvasline">
    <l n="1">...</l>
    <l n="2">...</l>
	<l n="3">...</l>
</lg>

Encoding the 31-line canvas

In Petrarch's personal copy of the RVF, he consistently uses a ruled 31-line “canvas” for the layout of the poems. There are few exceptions, where an extra line is added to the underlying canvas. Elements that occupy a ruled manuscript line are tagged with the attribute @corresp="#canvasline", where #canvasline references a category in a taxonomy of "graphic features" in the <teiHeader>. Work can be checked by searching for //@corresp[. = '#canvasline'] in the XPath 2.0 search box, in the upper-right-hand corner of the Oxygen XML Editor interface. The results of the search will appear below the document, and you should get "31 items" in your search results.

Using #canvasline
<text>
      <body>
         <pb n="charta 1 verso" facs="../images/vat-lat3195-f/vat-lat3195-f-001v.jpg" />
         <lg type="sonnet" xml:id="rvf146" n="5">
            <lg type="dblvrs" corresp="#canvasline">
               <l n="1">...</l>
               <l n="2">...</l>
            </lg>
            <lg type="dblvrs" corresp="#canvasline">
               <l n="3">...</l>
               <l n="4">...</l>
			 </lg>
				<!---etc.-->
		</lg>
	 </body>
</text>

Initials and small caps at the beginnings of poems/stanzas

The beginnings of poems and stanzas often use characters that are different from the rest of the text. They are a combination of capital letters (or pilcrows) and small caps, and they generally rotate between the colors red and blue. Usually, the first letter of a stanza is a capital, while the following letter is a small capital. Care should be taken when encoding so that a small capital letter is not accidentally marked as a regular capital.

Initials and small caps at the beginnings of poems/stanzas
For red letters: 
 <l n="1"><hi rendition="#red #fs24pt">Q</hi><hi rendition="#small-caps">u</hi>ando io movoi sospiri...</l>

For blue letters:
 <l n="1"><hi rendition="#blue #fs24pt">S</hi><hi rendition="#small-caps">ì traviato è ’l folle mi’ desio...</l>

Additions over erasures

Sometimes text in the Rvf has been erased, or is otherwise illegible, and there is a correction or clarification written above it. To encode this, use the <subst>, <del>, and <add> tags. The <subst> tag indicates that some text has been substituted for the original wording, while <del> and <add> show what has been deleted and added. The <del> tag has the type "erasure" to clarify what kind of deletion it is. The <gap reason /> tag shows that what has been erased is now illegible. If the deleted text was intact, the <gap reason /> tag would be absent and that text would be part of the <del> encoding.

Additions over erasures
<l n="7">L<subst><del type="erasure"><gap reason="illegible"/></del><add>ira cieco</add></subst></l>

Poem numbers and IDs

Each poem in the Rvf has a number and an ID. The number has been established by Petrarch scholars, while the ID is used only within this project. This tag should be placed directly before the beginning of each new poem. For the first poem on a page, it should be placed under the link to the facsimile image.

Poem numbers and IDs
<lg xml:id="rvf007" type="sonnet" n="7">

Page breaks

A page break, marked by the tag <pb />, denotes the start of a new page. The tag should be placed before the encoding of the text of a charta. Occasionally, a poem will span multiple chartae but will be encoded in a single document. In this case, the tag will be placed in the middle of the text to approximate the top of the new charta. For this project, the tag will include the page number and a link to an image of the facsimile.

Page breaks
 <pb n="charta 69 verso" facs="../images/vat-lat3195-f/vat-lat3195-f-069v.jpg" />

Orig and reg

The diplomatic and edited versions of Rvf chartae are encoded in a single TEI document. When text varies between the two, the tags <orig>, denoting the diplomatic text, and <reg>, for the edited text, should be used. They must be put within a <choice> tag. If more complex changes must be made, such as encoding abbreviations as well as spelling changes, the <abbr> and <expan> tags can be used to show scribal abbreviations in the diplomatic version. If the changes are minor, such as adding or subtracting punctuation, only one tag may be needed. In this case the <supplied> tag can be used on its own, but the <orig> tag must be within the <choice> tags followed by an empty <reg/> tag or when the supplied element is inside a word.

Orig and reg
Simple:
<choice><orig>di nançi</orig><reg>dinanzi</reg></choice>

Complex:
<choice><orig><abbr>uētura</abbr><expan>uentura</expan></orig><reg>ventura</reg></choice>

Diplomatic only:
<choice><orig>&virg;</orig><reg/></choice>
[virgule only appears in diplomatic version]
 
Edited only, when added at the end of a word:
chiami<supplied>,</supplied>
[diplomatic text is "chiami" and edited is "chiami,"]
 
Edited only, when added within a word:
<choice><orig>donor</orig><reg>d’onor</reg></choice>
[diplomatic text is "donor" and edited is "d’onor"]

Abbreviations

There are many scribal abbreviations used in the Rvf. To show abbreviations and expansions in the diplomatic text, use an <abbr> tag for the first and an <expan> tag for the latter. They must be within <choice> tags to allow users to see either option when desired.

Abbreviations
<choice><abbr>āni</abbr><expan>anni</expan></choice>

Sonnets

One of the more common types of poems in the Rvf is the sonnet. Petrarchan sonnets have 14 lines, generally consisting of an octave (8 lines) and a sestet (6 lines). Within the normal <lg> groupings, the octave and sestet should be separated. They have their own @type element tags, as seen below.

Sonnets
<?xml version="1.0" encoding="UTF-8"?
<lg type="sonnet" n="124">
  <lg type="octave">
    <lg type="dblvrs" corresp="#canvasline">
      <l n="1">…</l>
      <l n="2">…</l>
    </lg>
    <lg type="dblvrs" corresp="#canvasline">
      <l n="3">…</l>
      <l n="4">…</l>
    </lg>
    <lg type="dblvrs" corresp="#canvasline">
      <l n="5">…</l>
      <l n="6">…</l>
    </lg>
    <lg type="dblvrs" corresp="#canvasline">
      <l n="7">…</l>
      <l n="8">…</l>
    </lg>
  </lg>
  <lg type="sestet">
    <lg type="dblvrs" corresp="#canvasline">
      <l n="9">…</l>
      <l n="10">…</l>
    </lg>
    <lg type="dblvrs" corresp="#canvasline">
      <l n="11">…</l>
      <l n="12">…</l>
    </lg>
    <lg type="dblvrs" corresp="#canvasline">
      <l n="13">…</l>
      <l n="14">…</l>
    </lg>
  </lg>
</lg>
 

Sestet marker

There are some instances in which sonnet's sestets are maked on the right margin (usually by a ~ or a -). To encode them in their right position, we use the <hi> element and @rendition attribute as follows: 

Abbreviations
<hi rendition="#sestet_maker">~</hi>

Marginal additions

For marginal (often later) additions we use the element <add> and attribute place=""margin right". At times, these marginal additions are also deleted: in this case we add the element <del> inside the <add> element.  Here are two examples: 

Abbreviations
<add place="margin right">rto)</add>

<add place="margin right"><del type="erasure">rto)</del></add>