Article Template

 

  1. Overview
  2. Annotated description of key tags within the article template
  3. Blank article template
  4. Encoded article template example
  5. Multiple subdivisions of a text division example
  6. List examples
  7. Table example

 

Overview [up]

The content of any article, including title page, text body, and appendices is contained within the <text> element.
The overall structure of the <text> element is as follows:

<TEI.2>
<teiHeader> <!-- ... --> </teiHeader>
<text>
<front>
<!-- title page, abstract -->
</front>
<body>
<!-- article content -->
</body>
<back>
<!-- bibliography, appendix -->
</back>
</text>
</TEI.2>


Annotated description of key tags within the Research Article Template [up]

 

 

Blank Research Article Template: [up]

The following research article template consists of a Title Page; the article Abstract; two content Sections; an inline Footnote; the article Bibliography with two citations; and Appendix.

In the following template, the brackets ("[...]") denote places where the encoder must fill in pertinent information.

<TEI.2>
<teiHeader>
<!-- ... -->
</teiHeader>
<text>
<front>
<titlePage>
<docTitle>
<titlePart type="main">[ARTICLE MAIN TITLE]</titlePart>
<titlePart type="sub">[ARTICLE SUBTITLE]</titlePart>
</docTitle>
<docAuthor>[ARTICLE AUTHOR]</docAuthor>
<docDate>[ARTICLE DATE]</docDate>
</titlePage>
<div type="abstract">
<head>Abstract</head>
<p>[PARAGRAPH TEXT]</p>
</div>
</front>
<body>
<div type="section" n="1">
<head>[SECTION TITLE]</head>
<p>[PARAGRAPH TEXT]</p>
<!-- ... each footnote should be marked inline as follows ... --> <p>[PARAGRAPH TEXT]<note n="1" anchored="yes" resp="author" place="foot">[NOTE TEXT]</note> [PARAGRAPH TEXT]</p>
</div>
<div type="section" n="2">
<head>[SECTION TITLE]</head>
<p>[PARAGRAPH TEXT]</p>
</div> <!-- ... remainder of article here ... -->
</body>
<back>
<div type="bibliogr">
<head>Bibliography</head>
<listBibl>
<bibl>
<author>[AUTHOR NAME]</author>
<title>[TITLE]</title>
<publisher>[PUBLISHER NAME]</publisher>
<pubPlace>[LOCATION]</pubPlace>
<date>[DATE]</date>
</bibl>
<bibl>
<author>[AUTHOR NAME]</author>
<title>[TITLE]</title>
<publisher>[PUBLISHER NAME]</publisher>
<pubPlace>[LOCATION]</pubPlace>
<date>[DATE]</date>
</bibl>
</listBibl>
</div>
<div type="appendix">
<head>[APPENDIX TITLE]</head>
<p>[PARAGRAPH TEXT]</p>
</div>
</back>
</text>
</TEI.2>


Research Article Template Example [up]

Encoded research article example:

<TEI.2>
<teiHeader>
<!-- ... -->
</teiHeader>
<text>
<front>
<titlePage>
<docTitle>
<titlePart type="main">Globalization: </titlePart>
<titlePart type="sub">Challenges and Opportunities</titlePart>
</docTitle>
<docAuthor>G. B. Madison</docAuthor>
<docDate>1998</docDate>
</titlePage>
<div type="abstract">
<head>Abstract</head>
<p>Globalization is a multifaceted phenomenon. In this paper I seek to discern...</p>
<!-- ... remainder of abstract here ... -->
</div>
</front>
<body>
<div type="section" n="1">
<head>Introduction</head>
<p>One doesn’t have to be a Marxist to realize that...</p>
<p>I hasten to add that I speak neither as an advocate nor as a critic of globalization (see Hegel 1991, p. 21, and Madison 1994).<note n="1" anchored="yes" resp="author" place="foot">The mode of description in question is, of course, interpretive, i.e., a matter of hermeneutics.</Note> Globalization has become the overarching fact...</p>
<!-- ... remainder of section 1 here ... -->
</div>
<div type="section" n="2">
<head>The phenomenon of globalization</head>
<p>The phenomenon of globalization is itself global, that is to say, all-encompassing. It is of course in the first instance a material or economic phenomenon...</p>
<!-- ... remainder of section 2 here ... -->
</div>
</body>
<back>
<div type="bibliogr">
<head>Bibliography</head>
<listBibl>
<bibl>
<author>Albrow, Martin. </author>
<title> The Global Age: State and Society beyond Modernity.</title>
<publisher> Stanford University Press</publisher>
<pubPlace> Stanford: California</pubPlace>
<date> 1997</date>
</bibl>
<bibl>
<author>Barber, Benjamin R.</author>
<title> Jihad vs. McWorld.</Title>
<publisher> Random House</publisher>
<pubPlace> New York</pubPlace>
<date> 1995</date>
</bibl>
</listBibl>
</div>
<div type="appendix">
<head>Notes</head>
<p/>
</div>
</back>
</text>
</TEI.2>

Multiple Subdivisions Example: [up]

Each textual division (section) may contain any number of additional subsections. Each subsection is also marked with a <div> and is nested within the preceding <div> section.

The following example is of a text divison (section) containing multiple subsections:

<TEI.2>
<teiHeader>
<!-- ... -->
</teiHeader>
<text>
<front>
<!-- title page, abstract -->
</front>
<body>
<div type="section" n="1">
<head>[SECTION TITLE]</head>
<p>[PARAGRAPH TEXT]</p> <!-- ... remainder of section 1 here ... --> <div type="section" n="1.1">
<head>[SUBSECTION TITLE]</head>
<p>[PARAGRAPH TEXT]</p> <!-- ... remainder of subsection 1.1 here ... -->
</div> <div type="section" n="1.2">
<!-- ... 1.2 here ... -->
</div>
</div>
<div type="section" n="2">
<!-- ... section 2 here ... -->
</div> <div type="section" n="3">
<!-- ... section 3 here ... -->
</div>
</body>
<back>
<!-- bibliography, appendix -->
</back>
</text>
</TEI.2>

 

List example: [up]

The element <list> is used to mark any kind of list. A list is a sequence of text items, which may be ordered, unordered, or a glossary list.

The following is template for a simple unordered list:

<list>
<head>[TITLE]</head>
<item>[First item in list.]</item>
<item>[Second item in list.]</Item>
<item>[Third item in list.]</Item>
</list>

The following is template for a simple numbered list:

<list type="ordered">
	<head>[TITLE]</head>
<item>[First item in list.]</Item>
<item>[Second item in list.]</Item>
<item>[Third item in list.]</Item> </list>

The following is template for a simple bulleted list:

<list type="bulleted">
	<head>[TITLE]</head>
<item>[First item in list.]</Item>
<item>[Second item in list.]</Item>
<item>[Third item in list.]</Item> </list>

 

Table example: [up]

Almost any text structure can be presented as a series of rows and columns. The <table> element can appear both within other components (such as paragraphs), or between them, in either the <body> or <back> matter.

Annotated description of key tags of the <table> element:

 

Sample table containing 4 rows and 2 columns:

Exchange

Country

1998 Percentage of World Volume

CBT

US

19.2

CME

US

15.3

LIFFE

UK

12.6

 

The following example demonstrates how the data presented in the table above should be encoded:

<p>
<table> 
<row>
<cell role="label">Exchange</cell>
<cell role="label">Country</cell>
<cell role="label">1998 Percentage of World Volume</cell>
</row> <row> <cell>CBT</cell> <cell>US</cell> <cell>19.2</cell> </row> <row> <cell>CME</cell> <cell>US</cell> <cell>15.3</cell> </row> <row> <cell>LIFFE</cell> <cell>UK</cell> <cell>12.6</cell> </row> </table> </p>

Notes [up]

1. A table of contents is generated using a stylesheet and should not be encoded.

 


Contents | TEI Header | Research Article | Bibliography Index | Glossary Index