Recommended Practices: Difference between revisions

From TEIWiki
Jump to navigation Jump to search
Reedkm (talk | contribs)
Reedkm (talk | contribs)
Line 1: Line 1:
==Introduction==
These recommended practices are for publishers intending to use TEI P5 as their encoding schema. They are intended to highlight features necessary for publishing both journal articles and books.
==General Recommendations==
==General Recommendations==



Revision as of 18:54, 20 November 2009

Introduction

These recommended practices are for publishers intending to use TEI P5 as their encoding schema. They are intended to highlight features necessary for publishing both journal articles and books.

General Recommendations

Basic Structure: Monographs

<TEI xmlns="http://www.tei-c.org/ns/1.0" xml:id="isbn-book">
 <teiHeader> 
      <!-- header goes here -->
 </teiHeader>
 <text>
      <front>
           <div type="halftitle">[text]</div>
           <titlePage>[text]</titlePage>
           <div type="copyright">[text]</div>
           <div type="dedication">[text]</div>
           <div type="contents">[text]</div>
      </front>
      <body>
           <div type="introduction">[text]</div>  
           <div type="chapter">[text]</div>  
           <div type="chapter">[text]</div>  
           <div type="chapter">[text]</div>  
           <div type="conclusion">[text]</div>     
      </body>
      <back>
           <div type="endnotes">[text]</div>
           <div type="bibliography">[text]</div>
           <div type="index">[text]</div>
      </back> 
 </text>
</TEI>