1. Home
  2. Header of each document:
  3. <fileDesc>
  4. <titleStmt>

<titleStmt>

In the <titleStmt> we establish the basic data of the document we are presenting.

It contains three main tags, <title>, <author> and <respStmt>.

<title>

To indicate the title of the edited work, we use, for example:

<title type="main" xml:lang="la">Thebais</title>

The language of the work’s title must be indicated. In our collection, all works carry the title only in their Latin version. See the article on the language tag codes.

Titles and authors in Greek should be written in the standard Latin form indicated in our reference edition.

When a work is not published in its entirety, but only in part, it must bear a second title, but this time with @type="sub":

<title type="main" xml:lang="la">Metamorphoses</title>
<title type="sub" xml:lang="la">Libri 3 &amp; 4</title>

Note that to join book numbers, chapter numbers, etc., either a en-dash (‘§ 3–8’) or the ampersand sign is used, which is the ligature of the Latin ‘et’: ‘3 & 4’. As this symbol forms part of the characters used in the code, it must be written using its html entity: &⁠amp; &amp;. Do not forget the semicolon (;) at the end.

<author>

<author> is used to indicate the name of any author cited as such in the body of the work, and will always have the same structure. But when it is included in the <titleStmt> it identifies the specific author of the work we are publishing. For example:

<author>P. Papinius <name>Statius</name></author>

This tag is the one we use to generate the index of authors and works we have published, so it is important to indicate the specific word by which we want our author's name to be indexed, using the <name> tag as in the example above.

As in the case of the title, the author's name will always appear in Latin. If the author is Greek, we need to put the latinized version of his name, as this is the canonical one and the one we will use to index it. Even if it is a single word, it is equally necessary to indicate the <name> :

<author><name>Euripides</name></author>

<respStmt>

This tag indicates who is responsible for the edition we are publishing: editors, translators and commentators. We distinguish each of these following this example:

<respStmt>
	<resp>Edición crítica digital de</resp>
	<name xml:id="merkley">Kyle Merkley</name>
</respStmt>
<respStmt>
	<resp>Comentario de</resp>
	<name corresp="#merkley">Kyle Merkley</name>
</respStmt>
<respStmt>
	<resp>Traducción inglesa de</resp>
	<name xml:id="kline">A.S. Kline</name>
</respStmt>

As we can see, <respStmt> contains two tags:

  • <resp> to indicate the type of responsibility that a person has.
  • <name> with only an @xml:id , which identifies the person the first time they are mentioned, and with an @corresp which points to that @xml:id if it repeats. The @xml:id in our case is the first surname; if there is any confusion arising from two surnames being the same, the second surname can be added, without in-between spaces.

As many <respStmt> as necessary can be used to identify all people involved. But they can also be grouped together. The important thing is to provide all the necessary information.

<respStmt>
	<resp>Edición crítica digital, comentario y traducción española de</resp>
	<name xml:id="criado">Cecilia Criado</name>
</respStmt>
<respStmt>
	<resp>Traducción inglesa de</resp>
	<name xml:id="kline">A.S. Kline</name>
</respStmt>

Thus, the <titleStmt> of the first book of the Thebais, for example, would be as follows:

<titleStmt>
	<title type="main" xml:lang="la">Thebais</title>
	<title type="sub" xml:lang="la">Liber primus</title>
	<author>P. Papinius <name>Statius</name></author>
	<respStmt>
		<resp>Edición crítica digital, comentario y traducción española de</resp>
		<name xml:id="criado">Cecilia Criado</name>
	</respStmt>
	<respStmt>
		<resp>Traducción inglesa de</resp>
		<name xml:id="kline">A.S. Kline</name>
	</respStmt>
</titleStmt>

How can we help?

en_GBEN