Module 6: Primary Sources

2. Walt Whitman: “After the Argument”

This manuscript, featuring an early version of the poem “After the Argument,” was likely written in 1890 or early 1891, shortly before the poem’s publication.

Figure 2. A facsimile of the manuscript for “After the Argument.”
Figure 2. A facsimile of the manuscript for “After the Argument.”

This example clearly illustrates how the TEI transcr module can be applied to verse texts as well. The entire poem is encoded inside <lg type="poem">, containing a heading (<head>) and two verse lines (<l>), in which physical line breaks have been maked with <lb> elements. As will be clear from the facsimile, this short manuscript features some complex editorial traces. Sequential deletions (<del>) and additions (<add>) are grouped into substitutions (<subst>). Moreover, inside the substitutions, the exact order of the editing interventions is specified by means of a sequence number in a @seq attribute, making explicit that the deletions occurred before the additions.

Note

The @seq attribute is a more advanced concept documented in chapter 11 Representation of Primary Sources of the TEI Guidelines. Notice how this explicit sequence number is not strictly needed here, as deletions logically precede additions, and only one deletion is involved.

This example illustrates nicely how additions and deletions can nest. In both cases in the example, an addition contains further deletions. The @rend attribute is used on <del> and <add> in order to encode the way in which deletions ("overstrike" or "overwrite") and additions ("insertion", "overwrite", "unmarked") have been realised on the manuscript. An additional @place attribute on <add> indicates if the additions are located "supralinear", "over" existing text, or "inline".

Page breaks are indicated with <pb> elements, indicating the type of the manuscript page ("recto" or "verso") with the @type attribute. The @facs attribute points to a digital facsimile of the page indicated with the <pb> element.

<body xmlns="http://www.tei-c.org/ns/1.0">
<pb facs="loc​.00001​.001​.jpg" xml:id="leaf001r" type="recto"/>
<lg type="poem">
<head rend="underline" type="main​-authorial">After
<subst>
<del rend="overstrike" seq="1">an</del>
<add place="supralinear" rend="insertion" seq="2">the
<del rend="overstrike">unsolv​'d</del>
</add>
</subst>
argument</head>
<l>
<del rend="overstrike">The</del>
<add place="supralinear" rend="insertion">
<del rend="overstrike">Coming in,</del>
<subst>
<del rend="overwrite" seq="1">a</del>
<add place="over" rend="overwrite" seq="2">A</add>
</subst>
group of </add>
little children, and their
<lb/>
ways and chatter, flow
<add place="inline" rend="unmarked">in, </add>
<del rend="overstrike">
<add place="supralinear" rend="unmarked">upon me</add>
</del>
</l>
<l>Like
<add place="supralinear" rend="insertion">welcome </add>
rippling water o​'er my
<lb/>
heated
<add place="supralinear" rend="insertion">nerves and </add>
flesh. </l>
<closer>
<signed>Walt Whitman</signed>
</closer>
</lg>
<pb facs="loc​.00001​.002​.jpg" xml:id="leaf001v" type="verso"/>
</body>
Example 2. Encoding of manuscript loc.00001 of the Walt Whitman Archive (Whitman 1890). TEI XML source available from https://whitmanarchive.org/manuscripts/tei/loc.00001.xml.

Bibliography