Deanna Stover's Courses

Logo

Deanna Stover is an Assistant Professor at Christopher Newport University. This website is a compilation of her syllabi since starting at CNU in Fall 2020.

View the Project on GitHub deanna-stover/coursesCNU

TEI Prompt


TEI due: Friday, February 26th by 11:59 pm
Percentage: 10%


General Overview

Like we talked about in class, we will be starting the process of creating a digital edition of Charlotte Perkins Stetson’s “The Yellow Wall-paper” (as an FYI, she’s better known as Charlotte Perkins Gilman). This semester, the focus is on the manuscript version of the text. We’ll be using TEI (a set of standardized XML tags) to markup the text.

In what follows, I attempt to break down all the tags I expect you to use, although your assigned section may or may not require all of the tags listed. There is a chance that you may come across something you think needs a tag that I have not prepared for—please reach out to me or bring it up in class. We want to be as consistent as possible, so the tags below are important.

We’ll have plenty of class time to go over our XML, both on paper and on the computer, so please don’t worry about coding. It seems scary, but once you get the basic syntax, you’ll feel much more comfortable. I’ve also simplified everything. I just ask that you come to this assignment with an open mind. No coding experience is required or expected. We’re learning this together!


Step One: TEI on Paper

We’ll be doing this in class. The whole goal is to get you more comfortable with the text you’ve been assigned (available in the Google Drive).

The first thing we’re going to do is annotate the Google Doc.

Traditionally, I’d have you work on a printed copy of the text and you can totally do this too, but because of COVID, I’ve decided we’ll try learning TEI using Google Docs first.

So, we’ll add comments to the appropriate Google Doc. These comments will explain the features of the text, rather than trying to code right away.

The features we’ll be encoding are:

Step Two: TEI on the Computer

This is where things get a little scarier–but I promise it isn’t that bad!

During class, we will go over how to set up your TEI document in Oxygen. All you have to do is sign up for the 30-day free trial and download the software before class on the day listed in the syllabus. Please do this.


Tags

Page beginning: <pb n=“1”/> (note that you need to put in the correct page number)

Paragraph tag: <p>Paragraph here.</p>

Weird spacing: <space/>

Em-dash code: &#8212;

Underlined bits: <hi rend=“underline”>text here</hi>

Crossed-out words: <del rend="strikethrough">text here</del>

Added words: <add place="above">text here</add> (note that you may check to see if the word is inserted above or in the margin and change what follows “place” accordingly)

A misspelling/mistake in the text: <choice><corr>correct spelling here</corr><sic>original spelling here</sic></choice> (note that you don’t need to standadize spelling, just correct any errors)

A quote: <q>“everything in quotation marks here,”</q> he said, <q>“the rest of the quote.”</q>

Section breaks: I have searched far and wide for a way to do this to no avail. For this project just put the plus-signs in their own paragraph, so <p>+ + + +</p>

Tag for title (only on the first page): <head>Title</head>

Tag for byline (only on the last page) <byline>Charlotte Perkins Stetson.</byline>


Some things to note:

<p><hi rend="underline”>Once upon a time . . . </p>
<p>there was a student.</hi></p>

This is also invalid:

<p><hi rend="underline”>Once upon a time . . . </p></hi>
<p><hi rend="underline”>there was a student.</p></hi>

Instead, you’d need to do this:

<p><hi rend="underline”>Once upon a time . . . </hi></p>
<p><hi rend="underline”>there was a student.</hi></p>

Or, as another example, this:

<p> Once upon a time, <pb n="2"/> there was a student.</p>

Essentially, the <p> tag is surrounding everything and no tag can stretch beyond it.

<titleStmt>
	<title>“The Yellow Wall-paper”</title>
	<author>Charlotte Perkins Stetson</author>
	<editor>Your Name</editor>
</titleStmt>
<sourceDesc>
	<p>The source text can be found here: http://schlesinger.radcliffe.harvard.edu/onlinecollections/gilman/</p>
</sourceDesc>

Evaluation Criteria


Late Work

Unless we’ve talked, I will deduct 10 points for every day the assignment is late. Please don’t forget about your blog post due on the same date!


Back to Syllabus