Difference between revisions of "Recommended Practices"

From TEIWiki
Jump to navigation Jump to search
(New page: ==General Recommendations== ===Basic Structure: Monographs===== <pre> <TEI xmlns="http://www.tei-c.org/ns/1.0" xml:id="isbn-book"> <teiHeader> <!-- header goes here --> </teiHea...)
 
(Basic Structure: Monographs==)
Line 1: Line 1:
 
==General Recommendations==
 
==General Recommendations==
  
===Basic Structure: Monographs=====
+
===Basic Structure: Monographs===
  
 
<pre>
 
<pre>

Revision as of 19:29, 20 November 2009

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="chapter">[text]</div>     
      </body>
      <back>
           <div type="endnotes">[text]</div>
           <div type="bibliography">[text]</div>
           <div type="index">[text]</div>
      </back> 
 </text>
</TEI>