home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 Autumn / INTERNET109.ISO / mac / SOFTWARE / MAC / BUILDING / OXYGEN / oxygenxmleditorx.sit / oxygen / tei / index.xml < prev    next >
Encoding:
Extensible Markup Language  |  2003-06-12  |  22.7 KB  |  479 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!DOCTYPE TEI.2 SYSTEM "teiweb.dtd" [
  4. ]>
  5. <TEI.2>
  6.   <teiHeader>
  7.     <fileDesc>
  8.       <titleStmt>
  9.         <title>The P4 DTD</title>
  10.       </titleStmt>
  11.       <publicationStmt>
  12.       <p>TEI Web</p>      </publicationStmt>
  13.       <sourceDesc>
  14.         <p>No source</p>
  15.       </sourceDesc>
  16.     </fileDesc>
  17.     <profileDesc>
  18.     </profileDesc>
  19.     <revisionDesc>
  20.       <list>
  21.          <item><date>11 Apr 2002</date><name>Lou</name></item>
  22.          <item><date>7 Dec 2001</date><name>Lou</name></item>
  23.          <item><date>15th October 2001</date><name>Sebastian Rahtz</name></item>
  24.          <item><date>30 May 2001</date><name>Lou Burnard</name></item>
  25.       </list>
  26.     </revisionDesc>
  27.   </teiHeader>
  28. <text>
  29. <body>
  30.  
  31. <div>
  32. <head>The TEI P4 DTD files</head> 
  33.  
  34. <p>From this page you can download current versions for all the
  35. files which make up the current version of the TEI DTD. For 
  36.      information about how these DTD fragments should be used and how
  37.      these files interact, you need to read the Guidelines
  38.      themselves. For a brief overview of the files in the DTD, 
  39.      please see <xref url="../DT.html">Chapter 36</xref> of the TEI
  40.      Guidelines, from which the table below is reproduced. 
  41.     </p>
  42. <p>The TEI DTD files can be customized in many different ways, to
  43.      make large or small DTDs according to need. <xref url="../../Lite/index.html">TEI Lite</xref> is one such
  44.      customization of the whole; its DTD files are at <xref
  45.      url="../../Lite/DTD">www.tei-c.org/Lite/DTD</xref>; <xref
  46.      url="../../Master/Reference/index.html">Master</xref> is another such customization, and there
  47.      are many others. Full reference information on how to perform
  48.  such     customization (using TEI Lite as an example) is provided in
  49.      <xref url="MD">Chapter 29</xref> of the Guidelines.
  50.     </p>
  51.  
  52. <p>Experimental work is currently underway to investigate the automatic
  53.      production of <xref url="../../Schemas/RelaxNG/P4X/">Relax NG schemas</xref> for use with the TEI Guidelines.
  54.     </p>
  55.  
  56. <div><head>Moving from P3 to P4</head>
  57. <p>If you are already using TEI P3 DTDs, and wish to upgrade
  58. to the new files, you can do so by either of the following methods:
  59. <list>
  60. <item>replace the system identifiers in your local files by a link to
  61.       the new version at (mutatis mutandis) <ident>http://www.tei-c.org/Guidelines/DTD/tei2.dtd</ident>
  62.       (see examples below);</item>
  63.      <item>download and install <emph>all</emph> the new dtd files locally, changing
  64.       the system identifiers to point to these local versions. 
  65. The
  66.       complete suite is available as <xref url="dtd.zip">a single
  67.       zip file</xref>.</item>
  68. </list>
  69. </p>
  70.  
  71. <p>Neither the actual filenames (teicore2.dtd etc.) used nor the
  72.       method of constructing application specific DTDs has changed
  73.       with this release. For example, if you currently test files
  74.       using a driver that begins
  75.  
  76. <eg><![CDATA[
  77. <!DOCTYPE TEI.2 SYSTEM "/home/wherever/mylocalteistuff/tei2.dtd" [
  78. <!ENTITY % TEI.prose "INCLUDE" >
  79. ...
  80. ]><TEI.2>
  81. ...
  82. ]]>
  83. </eg>
  84. and you have not yet changed the contents of <ident>home/wherever/mylocalteistuff</ident>, then you
  85.       could experiment with the new DTDs simply by changing your
  86.       driver file to reference the online version. The file would then begin:
  87. <eg><![CDATA[
  88. <!DOCTYPE TEI.2 SYSTEM "http://www.tei-c.org/Guidelines/DTD/tei2.dtd" [
  89. <!ENTITY % TEI.prose "INCLUDE" >
  90. ]>
  91. ...
  92. ]]>
  93. </eg>
  94.     </p>
  95. <p>If you want to test your material for XML conformance, you will
  96.     first need to convert it to XML. No TEI specific tools are
  97.     necessary for this job (but watch out that you don't mess up the
  98.     upper/lowercase distinction in your tag and attribute
  99.     names!). There is some more information about the process in the
  100.     <xref url="../../Software/sgmlxmlfaq/">SGML-to-XML FAQ</xref>. 
  101. Once you have an XML version of your data, the only
  102.     change you need make in your TEI driver file will be like this:
  103. <eg><![CDATA[
  104. <!DOCTYPE TEI.2 SYSTEM "http://www.tei-c.org/Guidelines/DTD/tei2.dtd" [
  105. <!ENTITY % TEI.prose "INCLUDE" >
  106. <!ENTITY % TEI.XML "INCLUDE">
  107. ...
  108. ]><TEI.2>
  109. ...
  110. ]]>
  111. </eg>
  112. </p>
  113.  
  114. <p>Once you have downloaded the DTD files and installed them locally,
  115.     then you will need to change the URLs used in the examples above
  116.     to point to local filestore. If you are using a
  117.     catalog file, you will need to update that similarly. Exactly what
  118.     changes you will need to make beyond the scope of this page, but
  119.     any local XML/SGML expert should be able to assist: if stuck, send
  120.     a plea for help to <xref
  121.     url="mailto:tei-tech@listserv.brown.edu">tei-tech@listserv.brown.edu</xref>!</p>
  122.  
  123. <p>The TEI editors are particularly anxious to receive reports of errors
  124.     with documents that were regarded as valid by previous releases
  125.     of the TEI DTDs, but which the new DTDs will not accept. Send
  126.     feedback of any kind to <xref
  127.     url="mailto:editors@tei-c.org">editors@tei-c.org</xref>, or, if
  128.     you want to discuss issues raised more widely with other TEI
  129.     users, to <xref
  130.     url="mailto:tei-tech@listserv.brown.edu">tei-tech@listserv.brown.edu</xref>.
  131.     Thank you!</p>
  132.    </div>
  133. <div><head>The TEI DTD files</head>
  134. <p>The following tables give for each of the files making up
  135. the current release: <list type="ordered">
  136. <item>the filename used in the release
  137. directory;</item>
  138. <item>the type of declarations contained in the module;</item>
  139. <item>the full name of the module, for use in constructing its Formal
  140. Public Identifer (FPI)</item>
  141. <item>a link to the chapter or section in which it is defined</item>
  142. </list>. 
  143. To make up the Formal Public Identifier, the full name of the module
  144. should be prefixed by the string <code>-//TEI P4//</code> and the type of
  145. declarations contained,  and suffixed by the string
  146. <code>//EN</code>. Thus the FPI for the first file listed below
  147. should be <code>-//TEI P4//ELEMENTS Additional Element Set for Simple Analysis//EN</code>. Each table
  148. corresponds with a single TEI module or <soCalled>tag set</soCalled>
  149. i.e. a group of related DTD fragments.
  150. Tables are listed in alphabetical order.
  151. </p>
  152. <p>
  153. <table rend="rules" id="tag-ana">
  154. <head>Additional tag set for simple analysis: enabled by <ident >TEI.analysis</ident></head>
  155. <row><cell><xref url="teiana2.dtd">teiana2.dtd</xref></cell><cell>ELEMENTS</cell><cell><ident >Additional Element Set for Simple Analysis</ident></cell><cell><xref url="../AI.html">Chapter 15</xref></cell></row>
  156. <row><cell><xref url="teiana2.ent">teiana2.ent</xref></cell><cell>ENTITIES</cell><cell><ident >Element Classes for Simple Analysis</ident></cell><cell><xref url="../AI.html">Chapter 15</xref></cell></row>
  157. </table>
  158.  
  159. <table rend="rules" id="tag-core">
  160. <head>Core tag sets: enabled when any TEI base is enabled</head>
  161. <row><cell><xref url="teiback2.dtd">teiback2.dtd</xref></cell>
  162. <cell>ELEMENTS</cell><cell><ident >Back
  163.       Matter</ident></cell><cell><xref
  164.       url="../DS.html#DSBACK">Section 7.6</xref></cell></row>
  165. <row>
  166. <cell><xref url="teiclas2.ent">teiclas2.ent</xref></cell>
  167. <cell>ENTITIES</cell><cell><ident >TEI ElementClasses</ident></cell>
  168. <cell><xref url="../ST.html#STEC">Section 3.7</xref></cell></row>
  169. <row><cell><xref url="teicore2.dtd">teicore2.dtd</xref></cell>
  170. <cell>ELEMENTS</cell><cell><ident >Core
  171.       Elements</ident></cell><cell><xref url="../CO.html">Chapter 6</xref></cell></row>
  172. <row><cell><xref url="teifron2.dtd">teifron2.dtd</xref></cell>
  173. <cell>ELEMENTS</cell><cell><ident >Front
  174.       Matter</ident></cell><cell><xref
  175.       url="../DS.html#DSFRONT">Section 7.4</xref></cell></row>
  176. <row><cell><xref url="teihdr2.dtd">teihdr2.dtd</xref></cell>
  177. <cell>ELEMENTS</cell><cell><ident >TEI
  178.       Header</ident></cell><cell><xref url="../HD.html">Chapter 5</xref></cell></row>
  179. <row><cell><xref url="teistr2.dtd">teistr2.dtd</xref></cell>
  180. <cell>ELEMENTS</cell><cell><ident >Default Text Structure</ident></cell><cell><xref
  181. url="../DS.html">Chapter 7</xref></cell></row></table>
  182.  
  183. <table rend="rules" id="tag-cert">
  184. <head>Additional tag set for certainty: enabled by
  185. <ident >TEI.certainty</ident></head>
  186. <row id="ce"><cell><xref url="teicert2.dtd">teicert2.dtd</xref></cell>
  187. <cell>ELEMENTS</cell><cell><ident >Additional Element Set for
  188.       Certainty and Responsibility</ident></cell><cell><xref
  189.       url="../CE.html">Chapter 17</xref></cell></row>
  190. </table>
  191.  
  192. <table rend="rules" id="tag-corp">
  193. <head>Additional tag set for language corpora: enabled by
  194. <ident >TEI.corpus</ident></head>
  195. <row id="corpora"><cell><xref url="teicorp2.dtd">teicorp2.dtd</xref></cell>
  196. <cell>ELEMENTS</cell><cell><ident >Additional Element Set for Language
  197.       Corpora</ident></cell><cell><xref url="../CC.html">Chapter 23</xref></cell></row>
  198. </table>
  199.  
  200. <table rend="rules" id="tag-dict">
  201. <head>Base tag set for dictionaries: enabled by
  202. <ident >TEI.dictionary</ident></head>
  203. <row id="dict"><cell><xref url="teidict2.dtd">teidict2.dtd</xref></cell>
  204. <cell>ELEMENTS</cell><cell><ident >Base Element Set for Print
  205.       Dictionaries</ident></cell><cell><xref
  206.       url="../DI.html">Chapter 12</xref></cell></row>
  207. <row><cell><xref url="teidict2.ent">teidict2.ent</xref></cell>
  208. <cell>ENTITIES</cell><cell><ident >Element Classes
  209. for Print Dictionaries</ident></cell><cell><xref url="../DI.html">Chapter 12</xref></cell></row>
  210. </table>
  211.  
  212. <table rend="rules" id="tag-perf">
  213. <head>Base tag set for performance texts: enabled by
  214. <ident >TEI.drama</ident></head>
  215. <row id="perf"><cell><xref url="teidram2.dtd">teidram2.dtd</xref></cell>
  216. <cell>ELEMENTS</cell><cell><ident >Base Element Set for Drama
  217.       2001-12</ident></cell><cell><xref url="../DR.html">Chapter 10</xref></cell></row>
  218. <row><cell><xref url="teidram2.ent">teidram2.ent</xref></cell>
  219. <cell>ENTITIES</cell><cell><ident >Element Classes for Drama</ident></cell><cell><xref url="../DR.html">Chapter 10</xref></cell></row>
  220. </table>
  221.  
  222. <table rend="rules" id="tag-ftab">
  223. <head>Additional tag set for figures, tables and formulae: enabled by
  224. <ident >TEI.figures</ident></head>
  225. <row id="tables"><cell><xref url="teifig2.dtd">teifig2.dtd</xref></cell>
  226. <cell>ELEMENTS</cell><cell><ident >Additional Element Set
  227. for Tables, Formulae, and Graphics</ident></cell><cell><xref
  228.       url="../FT.html">Chapter 22</xref></cell></row>
  229. <row><cell><xref url="teifig2.ent">teifig2.ent</xref></cell>
  230. <cell>ENTITIES</cell><cell><ident >Formulae Notations and Contents</ident></cell><cell><xref url="../FT.html">Chapter 22</xref></cell></row>
  231. </table>
  232.  
  233. <table rend="rules" id="tag-fsd">
  234. <head>Auxiliary DTD for Feature System Declarations</head>
  235. <row id="fsd"><cell><xref url="teifsd2.dtd">teifsd2.dtd</xref></cell>
  236. <cell>DTD</cell><cell><ident >Auxiliary Document Type:  Feature System
  237.       Declaration</ident></cell><cell><xref
  238.       url="../FD.html">Chapter 26</xref></cell></row>
  239. </table>
  240.  
  241. <table rend="rules" id="tag-fs">
  242. <head>Additional tag set for feature structures: enabled by <ident >TEI.fs</ident></head>
  243. <row id="fs"><cell><xref url="teifs2.dtd">teifs2.dtd</xref></cell>
  244. <cell>ELEMENTS</cell><cell><ident >Additional Element Set for Feature Structure Annotation</ident></cell><cell><xref
  245. url="../FS.html">Chapter 16</xref></cell></row>
  246. </table>
  247.  
  248. <table rend="rules"><head>General Base tag set, for use with one or more other base
  249. tag sets: enabled by <ident >TEI.general</ident></head> 
  250. <row><cell><xref url="teigen2.dtd">teigen2.dtd</xref></cell>
  251. <cell>ELEMENTS</cell><cell><ident >General Base Element
  252.       Set</ident></cell><cell><xref url="../ST.html#STCO">Section 3.4</xref></cell></row>
  253. </table>
  254.  
  255. <table rend="rules">
  256. <head>The TEI main DTD </head>
  257. <row><cell><xref url="tei2.dtd">tei2.dtd</xref></cell>
  258. <cell>DTD</cell><cell><ident >Main DTD Driver
  259.       File</ident></cell><cell><xref
  260.       url="../ST.html"></xref>Chapter 3</cell></row>
  261. <row><cell><xref url="teigis2.ent">teigis2.ent</xref></cell>
  262. <cell>ENTITIES</cell><cell><ident >Generic
  263.       Identifiers</ident></cell><cell><xref
  264.       url="../ST.html#STPE">Section 3.8</xref></cell></row>
  265. <row><cell><xref url="teikey2.ent">teikey2.ent</xref></cell>
  266. <cell>ENTITIES</cell><cell><ident >TEI
  267.       Keywords</ident></cell><cell><xref
  268.       url="../ST.html#STPE">Section 3.8</xref></cell></row>
  269. </table>
  270.  
  271. <table rend="rules" id="tag-link">
  272. <head>Additional tag set for Linking and Segmentation: enabled by <ident >TEI.linking</ident></head>
  273. <row><cell><xref url="teilink2.dtd">teilink2.dtd</xref></cell>
  274. <cell>ELEMENTS</cell><cell><ident >Additional Element Set for Linking,
  275.       Segmentation, and Alignment</ident></cell><cell><xref
  276.       url="../SA.html">Chapter 14</xref></cell></row>
  277. <row><cell><xref url="teilink2.ent">teilink2.ent</xref></cell>
  278. <cell>ENTITIES</cell><cell><ident >Element Classes for Linking, Segmentation, and Alignment</ident></cell><cell><xref url="../SA.html">Chapter 14</xref></cell></row>
  279. </table>
  280.  
  281. <table rend="rules">
  282. <head>Mixed base tag set, for use with one or more other base tag sets: enabled by <ident >TEI.mixed</ident></head>
  283. <row><cell><xref url="teimix2.dtd">teimix2.dtd</xref></cell>
  284. <cell>ELEMENTS</cell><cell><ident >Base Element Set for Mixed Text
  285.       Types</ident></cell><cell><xref
  286.       url="../ST.html#STCO">Section 3.4</xref></cell></row>
  287. </table>
  288.  
  289. <table rend="rules" id="tag-names">
  290. <head>Additional tag set for Names and Dates:  enabled by <ident >TEI.names.dates</ident></head>
  291. <row><cell><xref url="teind2.dtd">teind2.dtd</xref></cell>
  292. <cell>ELEMENTS</cell><cell><ident >Additional Element Set for Names
  293.       and Dates</ident></cell><cell><xref url="../ND.html">Chapter
  294.      20</xref></cell></row>
  295. <row><cell><xref url="teind2.ent">teind2.ent</xref></cell>
  296. <cell>ENTITIES</cell><cell><ident >Element Classes for Names and Dates</ident></cell><cell><xref
  297. url="../ND.html">Chapter 20</xref></cell></row>
  298. </table>
  299.  
  300. <table rend="rules" id="tag-graph">
  301. <head>Additional tag set for Graph Theory: enabled by <ident >TEI.nets</ident></head>
  302. <row id="graphs"><cell><xref url="teinet2.dtd">teinet2.dtd</xref></cell>
  303. <cell>ELEMENTS</cell><cell><ident >Additional Element Set for Graphs,
  304.       Networks, and Trees</ident></cell><cell><xref
  305.       url="../GD.html">Chapter 21</xref></cell></row>
  306. </table>
  307.  
  308.  
  309. <table rend="rules">
  310. <head>Base tag set for Prose: enabled by <ident >TEI.prose</ident></head>
  311. <row><cell><xref url="teipros2.dtd">teipros2.dtd</xref></cell>
  312. <cell>ELEMENTS</cell><cell><ident >Base Element Set for
  313.       Prose</ident></cell><cell><xref url="../PR.html">Chapter 8</xref></cell></row>
  314. </table>
  315.  
  316. <table rend="rules" id="tag-ihs">
  317. <head>Auxiliary DTD for Independent Headers</head>
  318. <row><cell><xref url="teishd2.dtd">teishd2.dtd</xref></cell>
  319. <cell>DTD</cell><cell><ident >Auxiliary Document Type: Independent TEI Header</ident></cell><cell><xref
  320. url="../SH.html">Chapter 24</xref></cell></row>
  321. </table>
  322.  
  323. <table rend="rules" id="tag-spok">
  324. <head>Base tag set for Transcribed Speech: enabled by <ident >TEI.spoken</ident></head>
  325. <row id="ts"><cell><xref url="teispok2.dtd">teispok2.dtd</xref></cell>
  326. <cell>ELEMENTS</cell><cell><ident >Base Element Set for Transcriptions
  327.       of Speech</ident></cell><cell><xref url="../TS.html">Chapter
  328.      18</xref></cell></row>
  329. <row><cell><xref url="teispok2.ent">teispok2.ent</xref></cell>
  330. <cell>ENTITIES</cell><cell><ident >Element Classes for Transcriptions of Speech</ident></cell><cell><xref
  331. url="../TS.html">Chapter 18</xref></cell></row>
  332. </table>
  333.  
  334. <table rend="rules" id="tag-tc">
  335. <head>Additional tag set for Textual Criticism: enabled by <ident >TEI.textcrit</ident></head>
  336. <row id="tc"><cell><xref url="teitc2.dtd">teitc2.dtd</xref></cell>
  337. <cell>ELEMENTS</cell><cell><ident >Additional Element Set for
  338.       Text-Critical Apparatus</ident></cell><cell><xref
  339.       url="../TC.html">Chapter 19</xref></cell></row>
  340. <row><cell><xref url="teitc2.ent">teitc2.ent</xref></cell>
  341. <cell>ENTITIES</cell><cell><ident >Element Classes for Critical Apparatus</ident></cell><cell><xref
  342. url="../TC.html">Chapter 19</xref></cell></row>
  343. </table>
  344.  
  345. <table rend="rules" id="tag-term">
  346. <head>Base tag sets for Terminological Data: enabled by <ident >TEI.terminology</ident></head>
  347. <row id="term"><cell><xref url="teiterm2.dtd">teiterm2.dtd</xref></cell>
  348. <cell>ELEMENTS</cell><cell><ident >Base Element Set for Terminological
  349.       Data</ident></cell><cell><xref url="../TE.html">Chapter 13</xref></cell></row>
  350. <row><cell><xref url="teiterm2.ent">teiterm2.ent</xref></cell><cell>ENTITIES</cell><cell><ident >Element Classes
  351. for Terminological Data</ident></cell><cell><xref url="../TE.html">Chapter 13</xref></cell></row>
  352. <row><cell><xref url="teite2f.dtd">teite2f.dtd</xref></cell>
  353. <cell>ELEMENTS</cell><cell><ident >Terminological Databases (Flat)</ident></cell><cell><xref url="../TE.html">Chapter 13</xref></cell></row>
  354. <row><cell><xref url="teite2n.dtd">teite2n.dtd</xref></cell>
  355. <cell>ELEMENTS</cell><cell><ident >Terminological Databases
  356.       (Nested)</ident></cell><cell><xref url="../TE.html">Chapter 13</xref></cell></row>
  357. </table>
  358.  
  359. <table rend="rules" id="tag-mss">
  360. <head>Additional tag set for Physical Transcription: enabled by
  361. <ident >TEI.transcr</ident></head>
  362. <row id="ph"><cell><xref url="teitran2.dtd">teitran2.dtd</xref></cell>
  363. <cell>ELEMENTS</cell><cell><ident >Additional Element Set for
  364.       Transcription of Primary Sources</ident></cell><cell><xref
  365.       url="../PH.html">Chapter 18</xref></cell></row>
  366. <row><cell><xref url="teitran2.ent">teitran2.ent</xref></cell>
  367. <cell>ENTITIES</cell><cell><ident >Element Classes for Transcription
  368.       of Primary Sources</ident></cell><cell><xref
  369.       url="../PH.html">Chapter 18</xref></cell></row>
  370. </table>
  371.  
  372. <table rend="rules" id="tag-tsd">
  373. <head>Auxiliary DTD for Tag Set documentation</head>
  374. <row id="tsd"><cell><xref url="teitsd2.dtd">teitsd2.dtd</xref></cell>
  375. <cell>DTD</cell><cell><ident >Auxiliary Document Type: Tag Set
  376.       Documentation</ident></cell><cell><xref
  377.       url="../TD.html">Chapter 27</xref></cell></row>
  378. </table>
  379.  
  380. <table rend="rules" id="tag-ve">
  381. <head>Base tag set for Verse: enabled by <ident >TEI.verse</ident></head>
  382. <row id="verse"><cell><xref url="teivers2.dtd">teivers2.dtd</xref></cell>
  383. <cell>ELEMENTS</cell><cell><ident >Base Element Set for
  384.       Verse</ident></cell><cell><xref url="../VE.html">Chapter 9</xref></cell></row>
  385. <row><cell><xref url="teivers2.ent">teivers2.ent</xref></cell>
  386. <cell>ENTITIES</cell><cell><ident >Element Classes for
  387.       Verse</ident></cell><cell><xref url="../VE.html">Chapter 9</xref></cell></row>
  388. </table>
  389.  
  390. <table rend="rules" id="tag-wsd">
  391. <head>Auxiliary tag set for Writing System Declarations</head>
  392. <row><cell><xref url="teiwsd2.dtd">teiwsd2.dtd</xref></cell>
  393. <cell>DTD</cell><cell><ident >Auxiliary Document Type: Writing System
  394.       Declaration</ident></cell><cell><xref
  395.       url="../WD.html">Chapter 25</xref></cell></row>
  396. <row><cell><xref url="wdgis2.ent">wdgis2.ent</xref></cell>
  397. <cell>ENTITIES</cell><cell><ident >Generic Identifiers for Writing
  398.       System Declaration</ident></cell><cell><xref
  399.       url="../WD.html#WDOV">Section 25.1</xref></cell></row>
  400. </table>
  401.  
  402. <table rend="rules" id="tag-con">
  403. <head>Auxiliary tag set for concurrent markup of pages and lines</head>
  404. <row id="print"><cell><xref url="teipl2.dtd">teipl2.dtd</xref></cell>
  405. <!--<cell>tags for concurrent markup
  406. of pages and lines</cell>-->
  407. <cell>DTD</cell><cell><ident >Concurrent Document Type: Pages and Lines</ident></cell><cell><xref
  408. url="../NH.html">Chapter 31</xref></cell></row>
  409. </table>
  410.  
  411.  
  412. </p>
  413.  
  414. <p>Two catalog files are provided with the
  415. TEI DTD fragments, one (<xref url="catalog.tei">catalog.tei</xref>) in SGML Open
  416. format; the other (<xref url="teicatalog.xml">teicatalog.xml</xref>) in XML Catalog
  417. format: either file
  418. may be used to specify the location of copies of the TEI DTD fragments
  419. stored locally, as further discussed in <xref
  420.        url="../SG.html#SGPATANC">Section 2.10.4</xref>.</p>
  421. </div>
  422.  
  423.  
  424. <!--
  425. <div>
  426. <head>The DTD files</head>
  427. <table>
  428. <row><cell><xref url="tei2.dtd">tei2.dtd</xref></cell></row>
  429. <row><cell><xref url="teiana2.dtd">teiana2.dtd</xref></cell></row>
  430. <row><cell><xref url="teiana2.ent">teiana2.ent</xref></cell></row>
  431. <row><cell><xref url="teiback2.dtd">teiback2.dtd</xref></cell></row>
  432. <row><cell><xref url="teicert2.dtd">teicert2.dtd</xref></cell></row>
  433. <row><cell><xref url="teiclas2.ent">teiclas2.ent</xref></cell></row>
  434. <row><cell><xref url="teicore2.dtd">teicore2.dtd</xref></cell></row>
  435. <row><cell><xref url="teicorp2.dtd">teicorp2.dtd</xref></cell></row>
  436. <row><cell><xref url="teidict2.dtd">teidict2.dtd</xref></cell></row>
  437. <row><cell><xref url="teidict2.ent">teidict2.ent</xref></cell></row>
  438. <row><cell><xref url="teidram2.dtd">teidram2.dtd</xref></cell></row>
  439. <row><cell><xref url="teidram2.ent">teidram2.ent</xref></cell></row>
  440. <row><cell><xref url="teifig2.dtd">teifig2.dtd</xref></cell></row>
  441. <row><cell><xref url="teifig2.ent">teifig2.ent</xref></cell></row>
  442. <row><cell><xref url="teifron2.dtd">teifron2.dtd</xref></cell></row>
  443. <row><cell><xref url="teifs2.dtd">teifs2.dtd</xref></cell></row>
  444. <row><cell><xref url="teifsd2.dtd">teifsd2.dtd</xref></cell></row>
  445. <row><cell><xref url="teigen2.dtd">teigen2.dtd</xref></cell></row>
  446. <row><cell><xref url="teigis2.ent">teigis2.ent</xref></cell></row>
  447. <row><cell><xref url="teihdr2.dtd">teihdr2.dtd</xref></cell></row>
  448. <row><cell><xref url="teikey2.ent">teikey2.ent</xref></cell></row>
  449. <row><cell><xref url="teilink2.dtd">teilink2.dtd</xref></cell></row>
  450. <row><cell><xref url="teilink2.ent">teilink2.ent</xref></cell></row>
  451. <row><cell><xref url="teimix2.dtd">teimix2.dtd</xref></cell></row>
  452. <row><cell><xref url="teind2.dtd">teind2.dtd</xref></cell></row>
  453. <row><cell><xref url="teind2.ent">teind2.ent</xref></cell></row>
  454. <row><cell><xref url="teinet2.dtd">teinet2.dtd</xref></cell></row>
  455. <row><cell><xref url="teipl2.dtd">teipl2.dtd</xref></cell></row>
  456. <row><cell><xref url="teipros2.dtd">teipros2.dtd</xref></cell></row>
  457. <row><cell><xref url="teishd2.dtd">teishd2.dtd</xref></cell></row>
  458. <row><cell><xref url="teispok2.dtd">teispok2.dtd</xref></cell></row>
  459. <row><cell><xref url="teispok2.ent">teispok2.ent</xref></cell></row>
  460. <row><cell><xref url="teistr2.dtd">teistr2.dtd</xref></cell></row>
  461. <row><cell><xref url="teitc2.dtd">teitc2.dtd</xref></cell></row>
  462. <row><cell><xref url="teitc2.ent">teitc2.ent</xref></cell></row>
  463. <row><cell><xref url="teite2f.dtd">teite2f.dtd</xref></cell></row>
  464. <row><cell><xref url="teite2n.dtd">teite2n.dtd</xref></cell></row>
  465. <row><cell><xref url="teiterm2.dtd">teiterm2.dtd</xref></cell></row>
  466. <row><cell><xref url="teiterm2.ent">teiterm2.ent</xref></cell></row>
  467. <row><cell><xref url="teitran2.dtd">teitran2.dtd</xref></cell></row>
  468. <row><cell><xref url="teitran2.ent">teitran2.ent</xref></cell></row>
  469. <row><cell><xref url="teitsd2.dtd">teitsd2.dtd</xref></cell></row>
  470. <row><cell><xref url="teivers2.dtd">teivers2.dtd</xref></cell></row>
  471. <row><cell><xref url="teivers2.ent">teivers2.ent</xref></cell></row>
  472. <row><cell><xref url="teiwsd2.dtd">teiwsd2.dtd</xref></cell></row>
  473. </table>
  474. </div>
  475. -->
  476.    </div>
  477. </body></text>
  478. </TEI.2>
  479.