Module 4: Poetry
2. Patterned Arrangement of Language #
2.1. Document Type #
A shopping list is commonly not considered a form of literature, not even when it features in a literary work, or when it shows some incidental metrical structure or rhyme, unless someone identifies the text as such. The following text can thus be considered as non-literary prose:
What we see here is a functional block of fourteen lines of prose, typographically separated from each other by line breaks. The fundamental organisational unit for prose is the paragraph which is encoded in TEI as <p>. The start of a new typographical line is encoded with the milestone tag <lb>, which appears as <lb/> because it is a self-closing empty element. Applied to the shopping list, this produces the following encoding:
But our shopping list is a specific type of prose: it is a list, for which we could use <list> containing twelve items for which we use <item>. This could result in the following encoding:
On the most basic structural level, this shopping list is thus a named grouping of lines of text. When we use the element <lg> for line group, and the element <l> for line, we arrive at the following encoding:
Summary
Up to now we have looked at three different possible encodings for the same document which we identified as a shopping list. The first encoding considers the document as a block of prose in which different lines of text are separated by line breaks. The second one structures the shopping list with the appropriate labels (list and item). The third one makes abstraction of the meaning of these typical labels and considers the shopping list as a group of lines of text. The latter is less specific than the second, but more structurally descriptive than the first.2.2. Structural Divisions #
But is this shopping list just a block of prose, organised as a group of lines? The metrical composition, form, and structure of this shopping list, together with the use of rhyme may suggest that this is rather a piece of poetry which can be encoded as such. The rhyme present in the poem gives away a possible structure which consists not of one but of four line groups or stanzas. We use <lg> to encode them:
There is nothing in this encoding, however, which documents whether these four line groups belong together or not. Therefore we can wrap another <lg> element around them inside which they nest comfortably.
Note
Like other text-division elements, <lg> elements can nest hierarchically.In order to distinguish among the nesting line groups and the parental one, we can add some semantic information in a @type attribute which specifies a name conventionally used for this level of division and label the line groups respectively as "stanza" and "poem" as in the following example:
Notice that, while the @type attribute can have any value defined by the encoder (as long as it does not contain white space), it is intended solely for conventional names of different classes of text blocks. When <lg> is used to encode paragraphs in prose poetry, the @type attribute value could be "para" or anything else. If the <lg> represents an arbitrary organisation of lines, the @type attribute value could be "free" or anything else. If, for instance, this poem would have been organised differently, say in two quatrains and one sestet, we could have the following encoding:
Next, we can number the stanzas and lines in our poem inside an @n attribute and document that this poem has four stanzas and fourteen lines of verse:
Note
For large corpora of verse texts these numberings are commonly added automatically by some sort of programmed routine.Poems often carry a title which can be encoded using <head>:
Preceding quotations introducing the poem as a motto can be encoded using <epigraph>:
Poems are often signed, which can be encoded using <signed> outside the <lg type="poem"> element:
Summary
Different document types such as prose, verse, or drama can be considered poetry. Poetry of the document type “verse” consists typically of minimally one group of one or more lines, which may be encoded using <lg> and <l>, respectively. Line groups can nest inside each other. To all instances of line groups and lines, semantic and analytical information can be added in attributes. The title of a poem can be encoded using <head>, motto’s can be encoded using <epigraph>, the signature of the poet can be encoded using <signed>.2.3. Grouping Structures #
Single poems may appear isolated as independent texts, as part of some other document types such as prose and drama, or in combination with other poems as part of composite texts. Typical examples of such composite texts are anthologies, cycles of poems, and composite poems, i.e., poems consisting of other poems. The line between cycles of poems and composite poems, however, is thin and assigning either interpretation to the texts is the encoder’s decision, who can usually depend on how the author or publisher represented the texts in the original publication.
Many encoding strategies can be used to encode either of the composite text types mentioned. In the following paragraphs we suggest only a couple of them.
2.3.1. Composite Poems #
Since <lg> elements can nest, it is possible to encode nesting poems using <lg> with a value "poem" for the @type attribute. If we consider the stanza’s of the example poem as poems in their own right, which were numbered by the author, this can result in the following encoding:
2.3.2. Cycles of Poems #
Cycles of poems are structurally akin to composite poems but the top level element is not a <lg type="poem"> but a <div> with a suggested value "cycle" for the @type attribute. If we reconsider the example poem, this generates the next encoding:
2.3.3. Anthologies #
An anthology can as well be represented using a <div type="anthology"> element but it is good practice to use the more powerful <group> element. The <group> element groups together a sequence of distinct texts (or groups of such texts) which are regarded as a unit for some purpose. The <group> element consists of <text> elements which may have optional <front> and <back> elements and mandatory <body> elements. If we reconsider the example poem that way, the following encoding may apply: