File size: 78,142 Bytes
f8c0941 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 |
<!--
DTD Generated 2006-06-13T08:10:49+01:00.
-->
<!-- start datatypes -->
<!ENTITY % data.certainty '(high|medium|low|unknown)' >
<!ENTITY % data.probability ' CDATA' >
<!ENTITY % data.numeric ' CDATA' >
<!ENTITY % data.count ' CDATA' >
<!ENTITY % data.temporal ' CDATA' >
<!ENTITY % data.duration ' CDATA' >
<!ENTITY % data.truthValue ' CDATA' >
<!ENTITY % data.xTruthValue '(unknown|inapplicable | true | false)' >
<!ENTITY % data.language ' CDATA' >
<!ENTITY % data.sex '(0|1|2|9)' >
<!ENTITY % data.namespace ' CDATA' >
<!ENTITY % data.outputMeasurement ' CDATA' >
<!ENTITY % data.pattern ' CDATA' >
<!ENTITY % data.pointer ' CDATA' >
<!ENTITY % data.pointers ' CDATA' >
<!ENTITY % data.code ' CDATA' >
<!ENTITY % data.enumerated ' CDATA' >
<!ENTITY % data.key ' CDATA' >
<!ENTITY % data.word ' CDATA' >
<!ENTITY % data.names ' CDATA' >
<!ENTITY % data.words ' CDATA' >
<!ENTITY % data.name ' CDATA' >
<!-- end datatypes -->
<!--predeclared classes -->
<!--end of predeclared classes -->
<!ENTITY % att.ascribed.attribute.who '
who %data.pointers; #IMPLIED'>
<!ENTITY % att.datable.attribute.notBefore '
notBefore %data.temporal; #IMPLIED'>
<!ENTITY % att.datable.attribute.notAfter '
notAfter %data.temporal; #IMPLIED'>
<!ENTITY % att.declarable.attribute.default '
default (true|false) "false" '>
<!ENTITY % att.declaring.attribute.decls '
decls %data.pointers; #IMPLIED'>
<!ENTITY % att.divLike.attribute.type '
type %data.enumerated; #IMPLIED'>
<!ENTITY % att.divLike.attribute.org '
org (composite|uniform) "uniform" '>
<!ENTITY % att.divLike.attribute.sample '
sample (initial|medial|final|unknown|complete) "complete" '>
<!ENTITY % att.divLike.attribute.part '
part (Y|N|I|M|F) "N" '>
<!ENTITY % att.interpLike.attribute.resp '
resp %data.pointer; #IMPLIED'>
<!ENTITY % att.interpLike.attribute.type '
type %data.enumerated; #IMPLIED'>
<!ENTITY % att.interpLike.attribute.inst '
inst %data.pointers; #IMPLIED'>
<!ENTITY % att.editLike.attribute.cert '
cert %data.enumerated; #IMPLIED'>
<!ENTITY % att.editLike.attribute.resp '
resp %data.pointer; #IMPLIED'>
<!ENTITY % att.editLike.attribute.evidence '
evidence %data.enumerated; #IMPLIED'>
<!ENTITY % att.global.attribute.xmlid '
xml:id ID #IMPLIED'>
<!ENTITY % att.global.attribute.n '
n %data.words; #IMPLIED'>
<!ENTITY % att.global.attribute.xmllang '
xml:lang %data.language; #IMPLIED'>
<!ENTITY % att.global.attribute.rend '
rend %data.words; #IMPLIED'>
<!ENTITY % att.global.attribute.xmlbase '
xml:base %data.pointer; #IMPLIED'>
<!ENTITY % att.measured.attribute.unit '
unit %data.enumerated; #IMPLIED'>
<!ENTITY % att.measured.attribute.scope '
scope %data.enumerated; #IMPLIED'>
<!ENTITY % att.measurement.attribute.unit '
unit %data.enumerated; #IMPLIED'>
<!ENTITY % att.measurement.attribute.quantity '
quantity %data.numeric; #IMPLIED'>
<!ENTITY % att.measurement.attribute.commodity '
commodity %data.words; #IMPLIED'>
<!ENTITY % att.naming.attribute.key '
key %data.key; #IMPLIED'>
<!ENTITY % att.segLike.attribute.type '
type %data.enumerated; #IMPLIED'>
<!ENTITY % att.segLike.attribute.function '
function %data.enumerated; #IMPLIED'>
<!ENTITY % att.segLike.attribute.part '
part (Y|N|I|M|F) "N" '>
<!ENTITY % att.spanning.attribute.spanTo '
spanTo %data.pointer; #IMPLIED'>
<!ENTITY % att.timed.attribute.start '
start %data.pointer; #IMPLIED'>
<!ENTITY % att.timed.attribute.end '
end %data.pointer; #IMPLIED'>
<!ENTITY % att.timed.attribute.dur '
dur CDATA #IMPLIED'>
<!ENTITY % att.typed.attribute.type '
type %data.word; #IMPLIED'>
<!ENTITY % att.typed.attribute.subtype '
subtype %data.word; #IMPLIED'>
<!ENTITY % model.nameLike.agent "name">
<!ENTITY % model.segLike "">
<!ENTITY % model.hiLike "distinct | emph | foreign | gloss | hi | mentioned | soCalled | term | title">
<!ENTITY % model.dateLike "date | dateRange">
<!ENTITY % model.timeLike "time | timeRange">
<!ENTITY % model.measureLike "measure | num">
<!ENTITY % model.graphicLike "binaryObject | graphic">
<!ENTITY % model.pPart.msdesc "">
<!ENTITY % model.pPart.edit "abbr | add | choice | corr | del | expan | orig | reg | sic | unclear">
<!ENTITY % model.ptrLike "ptr | ref">
<!ENTITY % model.lPart "">
<!ENTITY % model.global.meta "index">
<!ENTITY % model.milestoneLike "cb | lb | milestone | pb">
<!ENTITY % model.gLike "">
<!ENTITY % model.oddDecl "">
<!ENTITY % model.oddRef "">
<!ENTITY % model.oddPhr "">
<!ENTITY % model.qLike "cit | q | quote">
<!ENTITY % model.biblLike "bibl | biblFull | biblItem | biblStruct">
<!ENTITY % model.listLike "list | listBibl">
<!ENTITY % model.noteLike "note">
<!ENTITY % model.stageLike "stage">
<!ENTITY % model.complexVal "">
<!ENTITY % model.singleVal "">
<!ENTITY % model.entryParts.top "note">
<!ENTITY % model.global.edit "gap">
<!ENTITY % model.divPart "l | lg | p | sp">
<!ENTITY % model.blockLike "">
<!ENTITY % model.pLike "p">
<!ENTITY % model.publicationStmtPart "address | authority | availability | date | distributor | idno | pubPlace | publisher">
<!ENTITY % model.glossLike "altIdent | desc | equiv | gloss">
<!ENTITY % model.quoteLike "quote">
<!ENTITY % model.respLike "author | editor | respStmt">
<!ENTITY % model.personPart "bibl | note">
<!ENTITY % model.divWrapper.bottom "closer | signed | trailer">
<!ENTITY % model.divWrapper "argument | byline | dateline | docAuthor | docDate | epigraph | head | opener | salute">
<!ENTITY % model.frontPart.drama "">
<!ENTITY % model.pLike.front "argument | byline | docAuthor | docDate | docEdition | docImprint | docTitle | epigraph | head | titlePart">
<!ENTITY % model.titlepagePart "binaryObject | byline | docAuthor | docDate | docEdition | docImprint | docTitle | epigraph | graphic | imprimatur | titlePart">
<!ENTITY % model.msItemPart "bibl | listBibl | %model.respLike; | note | q | title">
<!ENTITY % model.choicePart "abbr | corr | expan | orig | reg | sic | unclear">
<!ENTITY % model.lLike "l">
<!ENTITY % model.recordingPart "broadcast | equipment | %model.dateLike; | respStmt">
<!ENTITY % model.imprintPart "biblScope | pubPlace | publisher">
<!ENTITY % model.catDescPart "">
<!ENTITY % model.nameLike "%model.nameLike.agent; | rs">
<!ENTITY % model.global "%model.global.edit; | %model.global.meta; | %model.milestoneLike;">
<!ENTITY % model.featureVal "">
<!ENTITY % model.common "label | %model.biblLike; | %model.divPart; | %model.listLike; | %model.noteLike; | %model.qLike;">
<!ENTITY % model.biblPart "distributor | edition | extent | idno | %model.imprintPart; | %model.respLike; | note | series">
<!ENTITY % model.frontPart "divGen | titlePage">
<!ENTITY % model.addrPart "addrLine | %model.nameLike; | postBox | postCode | street">
<!ENTITY % model.pPart.data "address | %model.dateLike; | %model.measureLike; | %model.nameLike; | %model.timeLike;">
<!ENTITY % model.inter "label | %model.biblLike; | %model.listLike; | %model.noteLike; | %model.qLike; | %model.stageLike; | text">
<!ENTITY % model.phrase "%model.graphicLike; | %model.hiLike; | %model.pPart.data; | %model.pPart.edit; | %model.ptrLike;">
<!ENTITY % model.headerPart "encodingDesc | profileDesc">
<!ENTITY % model.sourceDescPart "recordingStmt | scriptStmt">
<!ENTITY % model.encodingPart "classDecl | editorialDecl | fsdDecl | metDecl | projectDesc | refsDecl | samplingDecl | tagsDecl | variantEncoding">
<!ENTITY % model.editorialDeclPart "correction | hyphenation | interpretation | normalization | quotation | segmentation | stdVals">
<!ENTITY % model.profileDescPart "langUsage | textClass">
<!-- start predeclared patterns -->
<!-- start rest of patterns -->
<!ENTITY % macro.bodyPart.div '(div,(div | divGen | (%model.global;))*)' >
<!ENTITY % macro.bodyPart.div0 '(div0,(div0 | divGen | (%model.global;))*)' >
<!ENTITY % macro.bodyPart.div1 '(div1,(div1 | divGen | (%model.global;))*)' >
<!ENTITY % macro.bodyPart.pre '(divGen,(%model.global;)*)*' >
<!ENTITY % macro.bodyPart.main '((%macro.bodyPart.pre;),((%macro.bodyPart.div;) | (%macro.bodyPart.div0;) | (%macro.bodyPart.div1;)))' >
<!ENTITY % mix.drama '' >
<!ENTITY % mix.spoken '' >
<!ENTITY % mix.dictionaries '' >
<!ENTITY % macro.component '(%model.common;%mix.drama;%mix.spoken;%mix.dictionaries;)' >
<!ENTITY % macro.componentSeq '((%macro.component;) | (%model.global;))*' >
<!ENTITY % macro.paraContent '( #PCDATA | %model.phrase; | %model.inter; | %model.global;)*' >
<!ENTITY % macro.phraseSeq '( #PCDATA | %model.phrase; | %model.global;)*' >
<!ENTITY % macro.specialPara '( #PCDATA | %model.phrase; | %model.inter; | %model.divPart; | %model.global;)*' >
<!ENTITY % macro.xtext '( #PCDATA)*' >
<!ENTITY % macro.fileDescPart '(titleStmt,editionStmt?,extent?,publicationStmt,seriesStmt?,notesStmt?)' >
<!ENTITY % macro.glossSeq '(altIdent?,equiv*,gloss*,desc*)' >
<!-- end patterns -->
<!-- start elements -->
<!--doc:(TEI document) contains a single TEI-conformant document,
comprising a TEI header and a text, either in isolation or as part of a
teiCorpus element. -->
<!ELEMENT TEI (teiHeader,text)>
<!ATTLIST TEI
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
xmlns %data.pointer; "http://www.tei-c.org/ns/1.0"
version CDATA "5.0" >
<!--doc:(abbreviation) contains an abbreviation of any sort. -->
<!ELEMENT abbr %macro.phraseSeq;>
<!ATTLIST abbr
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED >
<!--doc:(addition) contains letters, words, or phrases inserted in the text by an
author, scribe, annotator, or corrector. -->
<!ELEMENT add %macro.paraContent;>
<!ATTLIST add
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.editLike.attribute.cert;
%att.editLike.attribute.resp;
%att.editLike.attribute.evidence;
place %data.words; #IMPLIED
hand %data.pointer; #IMPLIED >
<!--doc:contains one line of a postal or other address. -->
<!ELEMENT addrLine %macro.phraseSeq;>
<!ATTLIST addrLine
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:contains a postal or other address, for example of a
publisher, an organization, or an individual. -->
<!ELEMENT address ((%model.global;)*,((%model.addrPart;),(%model.global;)*)+)>
<!ATTLIST address
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:supplies the recommended XML name for an element, class,
attribute, etc. in some language. -->
<!ELEMENT altIdent %macro.xtext;>
<!ATTLIST altIdent
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.typed.attribute.type;
%att.typed.attribute.subtype; >
<!--doc:(analytic level) contains bibliographic elements describing an item (e.g. an
article or poem) published within a monograph or journal and not as an
independent publication. -->
<!ELEMENT analytic (author | editor | respStmt | title)*>
<!ATTLIST analytic
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:A formal list or prose description of the topics addressed by
a subdivision of a text. -->
<!ELEMENT argument (((%model.global;)*,head)?,(%macro.component;,(%model.global;)*)*)>
<!ATTLIST argument
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:in a bibliographic reference, contains the name of the author(s),
personal or corporate,
of a work; the primary statement of responsibility for any
bibliographic item. -->
<!ELEMENT author %macro.phraseSeq;>
<!ATTLIST author
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(release authority) supplies the name of a person or other agency responsible for
making an electronic file available, other than a publisher or
distributor. -->
<!ELEMENT authority %macro.phraseSeq;>
<!ATTLIST authority
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:supplies information about the availability of a text, for
example any restrictions on its use or distribution, its copyright
status, etc. -->
<!ELEMENT availability (%model.pLike;)+>
<!ATTLIST availability
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
status (free|available|unknown|restricted) "unknown" >
<!--doc:(back matter) contains any appendixes, etc. following the main part of a
text. -->
<!ELEMENT back ((%model.frontPart; | %model.global; | %model.divWrapper;)*,((div,(div | %model.frontPart; | %model.global;)*) | (div1,(div1 | %model.frontPart; | %model.global;)*))?,(%model.divWrapper.bottom;)*)>
<!ATTLIST back
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declaring.attribute.decls; >
<!--doc:(bibliographic citation) contains a loosely-structured bibliographic citation of which
the sub-components may or may not be explicitly tagged. -->
<!ELEMENT bibl ( #PCDATA | %model.hiLike; | %model.pPart.data; | %model.pPart.edit; | %model.ptrLike; | %model.biblPart; | %model.global;)*>
<!ATTLIST bibl
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:contains a fully-structured bibliographic citation, in which all
components of the TEI file description
are present. -->
<!ELEMENT biblFull (%macro.fileDescPart;,sourceDesc*)>
<!ATTLIST biblFull
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:(bibliographic citation) contains a bibliographic citation in which only bibliographic
subelements appear. -->
<!ELEMENT biblItem (title | biblItem | imprint | %model.nameLike; | %model.biblPart; | %model.dateLike;)+>
<!ATTLIST biblItem
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default;
%att.typed.attribute.type;
%att.typed.attribute.subtype;
form CDATA #IMPLIED
status CDATA #IMPLIED
role CDATA #IMPLIED >
<!--doc:(scope of citation) defines the scope of a bibliographic reference, for example as a
list of pagenumbers, or a named subdivision of a larger work. -->
<!ELEMENT biblScope %macro.phraseSeq;>
<!ATTLIST biblScope
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED >
<!--doc:(structured bibliographic citation) contains a structured bibliographic citation, in which only
bibliographic subelements appear and in a specified order. -->
<!ELEMENT biblStruct (analytic*,(monogr,series*)+,(%model.noteLike; | idno)*)>
<!ATTLIST biblStruct
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:provides encoded binary data representing an inline graphic or other object. -->
<!ELEMENT binaryObject (#PCDATA)>
<!ATTLIST binaryObject
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
width %data.outputMeasurement; #IMPLIED
height %data.outputMeasurement; #IMPLIED
scale %data.numeric; #IMPLIED
mimeType %data.word; #IMPLIED
encoding %data.words; #IMPLIED >
<!--doc:(text body) contains the whole body of a single unitary text, excluding any front or back matter. -->
<!ELEMENT body ((%model.divWrapper; | %model.global;)*,((((%macro.component;),(%model.global;)*)+,((divGen,(%model.global;)*)*,((div,(div | divGen | %model.global;)*) | (div0,(div0 | divGen | %model.global;)*) | (div1,(div1 | divGen | %model.global;)*))?)) | ((divGen,(%model.global;)*)*,((div,(div | divGen | %model.global;)*) | (div0,(div0 | divGen | %model.global;)*) | (div1,(div1 | divGen | %model.global;)*)))),(%model.divWrapper.bottom;)*)>
<!ATTLIST body
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declaring.attribute.decls; >
<!--doc:(broadcast) describes a broadcast used as the source of a spoken text. -->
<!ELEMENT broadcast ((%model.pLike;)+ | %model.biblLike; | recording)>
<!ATTLIST broadcast
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:contains the primary statement of responsibility given for a work
on its title page or at the head or end of the work. -->
<!ELEMENT byline ( #PCDATA | %model.phrase; | docAuthor | %model.global;)*>
<!ATTLIST byline
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(defines how to convert a canonical reference into a URI) specifies an expression and replacement pattern for
tranforming a canonical reference into a URI -->
<!ELEMENT cRefPattern (%model.pLike;)*>
<!ATTLIST cRefPattern
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
matchPattern %data.pattern; #REQUIRED
replacementPattern CDATA #REQUIRED >
<!--doc:(category description) describes some category within a taxonomy
or text typology, either in the form of a brief prose description
or in terms of the situational parameters used by the TEI
formal textDesc. -->
<!ELEMENT catDesc ( #PCDATA | %model.phrase;)*>
<!ATTLIST catDesc
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type; >
<!--doc:(category reference) specifies one or more defined categories
within some taxonomy or text typology. -->
<!ELEMENT catRef EMPTY>
<!ATTLIST catRef
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
target %data.pointers; #REQUIRED
scheme %data.pointer; #IMPLIED >
<!--doc:(category) contains an individual descriptive category, possibly nested
within a superordinate category, within a user-defined taxonomy. -->
<!ELEMENT category (catDesc*,category*)>
<!ATTLIST category
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type; >
<!--doc:(column break) marks the boundary between one column of a text and the next
in a standard reference system. -->
<!ELEMENT cb EMPTY>
<!ATTLIST cb
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
ed %data.code; #IMPLIED >
<!--doc:summarizes a particular change or correction made
to a particular version of an electronic text which is
shared between several researchers. -->
<!ELEMENT change %macro.specialPara;>
<!ATTLIST change
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.ascribed.attribute.who;
date %data.temporal; #IMPLIED >
<!--doc:groups a number of alternative encodings for the same point in
a text. -->
<!ELEMENT choice (%model.choicePart; | choice)*>
<!ATTLIST choice
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:A quotation from some other document, together with a
bibliographic reference to its source. -->
<!ELEMENT cit (%model.quoteLike; | %model.biblLike; | %model.ptrLike; | %model.global;)+>
<!ATTLIST cit
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type; >
<!--doc:(classCode) contains the classification code used for this text in some
standard classification system. -->
<!ELEMENT classCode %macro.phraseSeq;>
<!ATTLIST classCode
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
scheme %data.pointer; #REQUIRED >
<!--doc:(classification declarations) contains one or more taxonomies defining any classificatory
codes used elsewhere in the text. -->
<!ELEMENT classDecl (taxonomy)+>
<!ATTLIST classDecl
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:groups together dateline, byline, salutation, and similar
phrases appearing as a final group at the end of a
division, especially of a letter. -->
<!ELEMENT closer ( #PCDATA | signed | dateline | salute | %model.phrase; | %model.global;)*>
<!ATTLIST closer
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(correction) contains the correct form of a passage apparently erroneous in the copy text. -->
<!ELEMENT corr %macro.paraContent;>
<!ATTLIST corr
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.editLike.attribute.cert;
%att.editLike.attribute.resp;
%att.editLike.attribute.evidence; >
<!--doc:(correction principles) states how and under what circumstances corrections have been
made in the text. -->
<!ELEMENT correction (%model.pLike;)+>
<!ATTLIST correction
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default;
status (high|medium|low|unknown) "unknown"
method (silent|tags) "silent" >
<!--doc:contains information about the creation of a text. -->
<!ELEMENT creation %macro.phraseSeq;>
<!ATTLIST creation
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:contains a date in any format. -->
<!ELEMENT date %macro.phraseSeq;>
<!ATTLIST date
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.editLike.attribute.cert;
%att.editLike.attribute.resp;
%att.editLike.attribute.evidence;
calendar %data.enumerated; #IMPLIED
value %data.temporal; #IMPLIED
precision %data.certainty; #IMPLIED >
<!--doc:(date range) contains two dates or another phrase delimiting a time period. -->
<!ELEMENT dateRange %macro.phraseSeq;>
<!ATTLIST dateRange
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
calendar %data.enumerated; #IMPLIED
from CDATA #IMPLIED
to CDATA #IMPLIED
exact (to|from|both|none) #IMPLIED >
<!--doc:contains a brief description of the place, date, time, etc. of
production of a letter, newspaper story, or other work, prefixed or
suffixed to it as a kind of heading or trailer. -->
<!ELEMENT dateline %macro.phraseSeq;>
<!ATTLIST dateline
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(deletion) contains a letter, word or passage deleted, marked as deleted,
or otherwise indicated as superfluous or spurious in the copy text by an
author, scribe, annotator, or corrector. -->
<!ELEMENT del %macro.paraContent;>
<!ATTLIST del
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.editLike.attribute.cert;
%att.editLike.attribute.resp;
%att.editLike.attribute.evidence;
type %data.enumerated; #IMPLIED
status %data.enumerated; "unremarkable"
hand %data.pointer; #IMPLIED >
<!--doc:(description) contains a brief description of the purpose and application for
an element, attribute, or attribute value. -->
<!ELEMENT desc %macro.paraContent;>
<!ATTLIST desc
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(distinct) identifies any word or phrase which is regarded as linguistically
distinct, for example as archaic, technical, dialectal, non-preferred,
etc., or as forming part of a sublanguage. -->
<!ELEMENT distinct %macro.phraseSeq;>
<!ATTLIST distinct
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED
time %data.code; #IMPLIED
space %data.code; #IMPLIED
social %data.code; #IMPLIED >
<!--doc:supplies the name of a person or other agency responsible for the
distribution of a text. -->
<!ELEMENT distributor %macro.phraseSeq;>
<!ATTLIST distributor
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(text division) contains a subdivision of the front, body, or back of a
text. -->
<!ELEMENT div ((%model.divWrapper; | %model.global;)*,((div | divGen)+ | ((%macro.component;,(%model.global;)?)+,(div | divGen)*)),(%model.divWrapper; | %model.divWrapper.bottom;)*)>
<!ATTLIST div
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part;
%att.declaring.attribute.decls; >
<!--doc:(level-0 text division) contains the largest possible subdivision of the body
of a text. -->
<!ELEMENT div0 ((%model.divWrapper; | %model.global;)*,(((div1 | divGen),(%model.global;)*)+ | ((%macro.component;,(%model.global;)*)+,((div1 | divGen),(%model.global;)*)*)),((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST div0
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part;
%att.declaring.attribute.decls; >
<!--doc:(level-1 text division) contains a first-level subdivision of the front, body, or back
of a text (the largest, if
div0 is not used, the second largest if it is). -->
<!ELEMENT div1 ((%model.divWrapper; | %model.global;)*,(((div2 | divGen),(%model.global;)*)+ | ((%macro.component;,(%model.global;)*)+,((div2 | divGen),(%model.global;)*)*)),((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST div1
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part;
%att.declaring.attribute.decls; >
<!--doc:(level-2 text division) contains a second-level subdivision of the front, body, or back of a
text. -->
<!ELEMENT div2 ((%model.divWrapper; | %model.global;)*,(((div3 | divGen),(%model.global;)*)+ | ((%macro.component;,(%model.global;)*)+,((div3 | divGen),(%model.global;)*)*)),((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST div2
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part;
%att.declaring.attribute.decls; >
<!--doc:(level-3 text division) contains a third-level subdivision of the front, body, or back of a
text. -->
<!ELEMENT div3 ((%model.divWrapper; | %model.global;)*,(((div4 | divGen),(%model.global;)*)+ | ((%macro.component;,(%model.global;)*)+,((div4 | divGen),(%model.global;)*)*)),((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST div3
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part;
%att.declaring.attribute.decls; >
<!--doc:(level-4 text division) contains a fourth-level subdivision of the front, body, or back of a
text. -->
<!ELEMENT div4 ((%model.divWrapper; | %model.global;)*,(((div5 | divGen),(%model.global;)*)+ | ((%macro.component;,(%model.global;)*)+,((div5 | divGen),(%model.global;)*)*)),((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST div4
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part;
%att.declaring.attribute.decls; >
<!--doc:(level-5 text division) contains a fifth-level subdivision of the front, body, or back of a
text. -->
<!ELEMENT div5 ((%model.divWrapper; | %model.global;)*,(((div6 | divGen),(%model.global;)*)+ | ((%macro.component;,(%model.global;)*)+,((div6 | divGen),(%model.global;)*)*)),((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST div5
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part;
%att.declaring.attribute.decls; >
<!--doc:(level-6 text division) contains a sixth-level subdivision of the front, body, or back of a
text. -->
<!ELEMENT div6 ((%model.divWrapper; | %model.global;)*,(((div7 | divGen),(%model.global;)*)+ | ((%macro.component;,(%model.global;)*)+,((div7 | divGen),(%model.global;)*)*)),((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST div6
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part;
%att.declaring.attribute.decls; >
<!--doc:(level-7 text division) contains the smallest possible subdivision of the front, body or
back of a text, larger than a paragraph. -->
<!ELEMENT div7 ((%model.divWrapper; | %model.global;)*,(%macro.component;,(%model.global;)*)+,((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST div7
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part;
%att.declaring.attribute.decls; >
<!--doc:(automatically generated text division) indicates the location at which a textual division generated
automatically by a text-processing application is to appear. -->
<!ELEMENT divGen (%model.divWrapper;)*>
<!ATTLIST divGen
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED >
<!--doc:(document author) contains the name of the author of the document, as given on the
title page (often but not always contained in a byline). -->
<!ELEMENT docAuthor %macro.phraseSeq;>
<!ATTLIST docAuthor
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(document date) contains the date of a document, as given
(usually) on a title page. -->
<!ELEMENT docDate %macro.phraseSeq;>
<!ATTLIST docDate
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
value %data.temporal; #IMPLIED >
<!--doc:(document edition) contains an edition statement as presented on a title page of a
document. -->
<!ELEMENT docEdition %macro.paraContent;>
<!ATTLIST docEdition
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(document imprint) contains the imprint statement (place and date of publication,
publisher name), as given
(usually) at the foot of a title page. -->
<!ELEMENT docImprint ( #PCDATA | %model.phrase; | pubPlace | docDate | publisher | %model.global;)*>
<!ATTLIST docImprint
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(document title) contains the title of a document, including all its
constituents, as given on a title page. -->
<!ELEMENT docTitle ((%model.global;)*,(titlePart,(%model.global;)*)+)>
<!ATTLIST docTitle
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(Edition) describes the particularities of one edition of a text. -->
<!ELEMENT edition %macro.phraseSeq;>
<!ATTLIST edition
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(edition statement) groups information relating to one edition of a text. -->
<!ELEMENT editionStmt ((%model.pLike;)+ | (edition,respStmt*))>
<!ATTLIST editionStmt
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(editor) secondary statement of responsibility for a
bibliographic item, for example the name of an individual, institution
or organization, (or of several such) acting as editor, compiler,
translator, etc. -->
<!ELEMENT editor %macro.phraseSeq;>
<!ATTLIST editor
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
role %data.enumerated; "editor" >
<!--doc:(editorial practice declaration) provides details of editorial principles and practices applied
during the encoding of a text. -->
<!ELEMENT editorialDecl ((%model.pLike;)+ | (%model.editorialDeclPart;)+)>
<!ATTLIST editorialDecl
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:(emphasized) marks words or phrases which are stressed or emphasized for
linguistic or rhetorical effect. -->
<!ELEMENT emph %macro.paraContent;>
<!ATTLIST emph
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(Encoding description) documents the relationship between an electronic text and the
source or sources from which it was derived. -->
<!ELEMENT encodingDesc (%model.encodingPart; | %model.pLike;)+>
<!ATTLIST encodingDesc
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(epigraph) contains a quotation, anonymous or attributed, appearing at
the start of a section or chapter, or on a title page. -->
<!ELEMENT epigraph %macro.componentSeq;>
<!ATTLIST epigraph
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(equipment) provides technical details of the equipment and media used for
an audio or video recording used as the source for a spoken text. -->
<!ELEMENT equipment (%model.pLike;)+>
<!ATTLIST equipment
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:specifies a component which is considered equivalent to the
parent element, either by co-reference, or by external link. -->
<!ELEMENT equiv EMPTY>
<!ATTLIST equiv
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
name %data.name; #IMPLIED
uri %data.pointer; #IMPLIED
filter CDATA #IMPLIED
mimeType %data.word; #IMPLIED >
<!--doc:(expansion) contains the expansion of an abbreviation. -->
<!ELEMENT expan %macro.phraseSeq;>
<!ATTLIST expan
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.editLike.attribute.cert;
%att.editLike.attribute.resp;
%att.editLike.attribute.evidence; >
<!--doc:describes the approximate size of the electronic text as stored on
some carrier medium, specified in any convenient units. -->
<!ELEMENT extent %macro.phraseSeq;>
<!ATTLIST extent
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(File Description) contains a full bibliographic description of an electronic
file. -->
<!ELEMENT fileDesc (%macro.fileDescPart;,sourceDesc+)>
<!ATTLIST fileDesc
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(foreign) identifies a word or phrase as belonging to some language other
than that of the surrounding text. -->
<!ELEMENT foreign %macro.phraseSeq;>
<!ATTLIST foreign
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(front matter) contains any prefatory matter (headers,
title page, prefaces, dedications, etc.)
found at the start of a document, before the main body. -->
<!ELEMENT front ((%model.frontPart; | %model.global;)*,(((%model.pLike.front;),(%model.pLike.front; | titlePage | %model.global;)*) | (div,(div | %model.frontPart; | %model.global;)*) | (div1,(div1 | %model.frontPart; | %model.global;)*))?)>
<!ATTLIST front
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declaring.attribute.decls; >
<!--doc:(FSD (feature-system declaration) declaration) identifies the feature system declaration which contains
definitions for a particular type of feature structure. -->
<!ELEMENT fsdDecl EMPTY>
<!ATTLIST fsdDecl
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #REQUIRED
url %data.pointer; #REQUIRED >
<!--doc:(Funding body) specifies the name of an individual, institution, or organization
responsible for the funding of a project or text. -->
<!ELEMENT funder %macro.phraseSeq;>
<!ATTLIST funder
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(omitted material) indicates a point where material has been omitted in a
transcription, whether for editorial reasons described in the TEI
header, as part of sampling practice, or because the material is
illegible or inaudible. -->
<!ELEMENT gap (%macro.glossSeq;)?>
<!ATTLIST gap
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.editLike.attribute.cert;
%att.editLike.attribute.resp;
%att.editLike.attribute.evidence;
reason %data.words; #IMPLIED
hand %data.pointer; #IMPLIED
agent %data.enumerated; #IMPLIED
extent %data.words; #IMPLIED >
<!--doc:identifies a phrase or word used to provide a gloss or
definition for some other word or phrase. -->
<!ELEMENT gloss %macro.phraseSeq;>
<!ATTLIST gloss
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declaring.attribute.decls;
target %data.pointer; #IMPLIED
cRef %data.pointer; #IMPLIED >
<!--doc:indicates the location of an inline graphic, illustration, or figure. -->
<!ELEMENT graphic EMPTY>
<!ATTLIST graphic
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
width %data.outputMeasurement; #IMPLIED
height %data.outputMeasurement; #IMPLIED
scale %data.probability; #IMPLIED
url %data.pointer; #IMPLIED
mimeType %data.word; #IMPLIED >
<!--doc:contains the body of a composite text, grouping together a
sequence of distinct texts (or groups of such texts) which are regarded
as a unit for some purpose, for example the collected works of an
author, a sequence of prose essays, etc. -->
<!ELEMENT group ((%model.divWrapper; | %model.global;)*,((text | group),(text | group | %model.global;)*),(%model.divWrapper.bottom;)*)>
<!ATTLIST group
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declaring.attribute.decls; >
<!--doc:(heading) contains any type of heading, for example the title of a section,
or the heading of a list, glossary, manuscript description, etc. -->
<!ELEMENT head %macro.paraContent;>
<!ATTLIST head
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED >
<!--doc:(heading for list items) contains the heading for the item or gloss column in a
glossary list or similar structured list. -->
<!ELEMENT headItem %macro.phraseSeq;>
<!ATTLIST headItem
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(heading for list labels) contains the heading for the label or term column in a
glossary list or similar structured list. -->
<!ELEMENT headLabel %macro.phraseSeq;>
<!ATTLIST headLabel
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(highlighted) marks a word or phrase as graphically distinct from the
surrounding text, for reasons concerning which no claim is
made. -->
<!ELEMENT hi %macro.paraContent;>
<!ATTLIST hi
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(Hyphenation) summarizes the way in which hyphenation in a source text has been
treated in an encoded version of it. -->
<!ELEMENT hyphenation (%model.pLike;)+>
<!ATTLIST hyphenation
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default;
eol (all|some|hard|none) "some" >
<!--doc:(identifying number) supplies any standard or non-standard number used to identify a
bibliographic item. -->
<!ELEMENT idno (#PCDATA)>
<!ATTLIST idno
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED >
<!--doc:contains a formal statement authorizing the publication of
a work, sometimes required to appear on a title page or its verso. -->
<!ELEMENT imprimatur %macro.paraContent;>
<!ATTLIST imprimatur
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:groups information relating to the publication or distribution
of a bibliographic item. -->
<!ELEMENT imprint (((%model.imprintPart;) | (%model.dateLike;)),(%model.global;)*)+>
<!ATTLIST imprint
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(index entry) marks a location to be indexed for whatever purpose. -->
<!ELEMENT index (term,index?)*>
<!ATTLIST index
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.spanning.attribute.spanTo;
indexName %data.name; #IMPLIED >
<!--doc:describes the scope of any analytic or interpretive information
added to the text in addition to the transcription. -->
<!ELEMENT interpretation (%model.pLike;)+>
<!ATTLIST interpretation
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:contains one
component of a list. -->
<!ELEMENT item %macro.specialPara;>
<!ATTLIST item
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(Keywords) contains a list of keywords or phrases identifying the topic or
nature of a text. -->
<!ELEMENT keywords (term+ | list)>
<!ATTLIST keywords
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
scheme %data.pointer; #REQUIRED >
<!--doc:(verse line) contains a single, possibly incomplete, line of verse. -->
<!ELEMENT l %macro.paraContent;>
<!ATTLIST l
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
part (Y|N|I|M|F) "N" >
<!--doc:contains the label associated with an item in a list; in
glossaries, marks the term being defined. -->
<!ELEMENT label %macro.phraseSeq;>
<!ATTLIST label
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(language usage) describes the languages, sublanguages, registers, dialects etc.
represented within a text. -->
<!ELEMENT langUsage (language)+>
<!ATTLIST langUsage
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:characterizes a single language or sublanguage used within a
text. -->
<!ELEMENT language %macro.phraseSeq;>
<!ATTLIST language
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
ident %data.language; #REQUIRED
usage CDATA #IMPLIED >
<!--doc:(line break) marks the start of a new (typographic) line in some
edition or version of a text. -->
<!ELEMENT lb EMPTY>
<!ATTLIST lb
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
ed %data.code; #IMPLIED >
<!--doc:(line group) contains a group of verse lines functioning as a formal unit,
e.g. a stanza, refrain, verse paragraph, etc. -->
<!ELEMENT lg ((%model.divWrapper; | %model.global;)*,(%model.lLike; | lg),(%model.lLike; | lg | %model.global;)*,((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST lg
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.divLike.attribute.type;
%att.divLike.attribute.org;
%att.divLike.attribute.sample;
%att.divLike.attribute.part; >
<!--doc:contains any sequence of items organized as a list. -->
<!ELEMENT list (((%model.divWrapper;) | (%model.global;))*,((item,(%model.global;)*)+ | (headLabel?,headItem?,(label,(%model.global;)*,item,(%model.global;)*)+)),((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST list
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; "simple" >
<!--doc:(citation list) contains a list of bibliographic citations of any kind. -->
<!ELEMENT listBibl (((%model.divWrapper;) | (%model.global;))*,((%model.biblLike;),(%model.global;)*)+,((%model.divWrapper.bottom;),(%model.global;)*)*)>
<!ATTLIST listBibl
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:contains a word or phrase referring to some quantity of
an object or commodity, usually comprising a number, a unit, and a
commodity name. -->
<!ELEMENT measure %macro.phraseSeq;>
<!ATTLIST measure
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.measurement.attribute.unit;
%att.measurement.attribute.quantity;
%att.measurement.attribute.commodity;
type %data.enumerated; #IMPLIED >
<!--doc:in bibliographic references,
contains a description of the meeting or conference from which
the bibliographic item derives. -->
<!ELEMENT meeting %macro.paraContent;>
<!ATTLIST meeting
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:marks words or phrases mentioned, not used. -->
<!ELEMENT mentioned %macro.phraseSeq;>
<!ATTLIST mentioned
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:documents the notation employed to represent a metrical
pattern when this is specified as the value of a met,
real, or rhyme attribute on any structural
element of a metrical text (e.g. lg, l, or
seg). -->
<!ELEMENT metDecl ((%macro.componentSeq;) | (metSym+))>
<!ATTLIST metDecl
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default;
type CDATA "met real"
pattern %data.enumerated; #IMPLIED >
<!--doc:documents the intended significance of a particular character or
character sequence within a metrical notation, either explicitly or in
terms of other symbol elements in the same metDecl. -->
<!ELEMENT metSym %macro.phraseSeq;>
<!ATTLIST metSym
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
value %data.words; #REQUIRED
terminal (true|false) "true" >
<!--doc:marks a boundary point separating any kind of section of a text, as indicated by
changes in a standard reference system, where the section is not
represented by a structural element. -->
<!ELEMENT milestone EMPTY>
<!ATTLIST milestone
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
ed %data.code; #IMPLIED
unit %data.enumerated; #REQUIRED >
<!--doc:(monographic level) contains bibliographic elements describing an item (e.g. a book
or journal) published as an independent item (i.e. as a separate
physical object). -->
<!ELEMENT monogr ((((author | editor | respStmt),(author | editor | respStmt)*,title+,(editor | respStmt)*) | (title+,(author | editor | respStmt)*))?,(%model.noteLike; | meeting)*,(edition,(editor | respStmt)*)*,imprint,(imprint | extent | biblScope)*)>
<!ATTLIST monogr
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(name, proper noun) contains a proper noun or noun phrase. -->
<!ELEMENT name %macro.phraseSeq;>
<!ATTLIST name
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.naming.attribute.key;
type %data.enumerated; #IMPLIED >
<!--doc:indicates the extent of normalization or regularization of the
original source carried out in converting it to electronic form. -->
<!ELEMENT normalization (%model.pLike;)+>
<!ATTLIST normalization
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default;
source %data.pointer; #IMPLIED
method (silent|tags) "silent" >
<!--doc:contains a note or
annotation. -->
<!ELEMENT note %macro.specialPara;>
<!ATTLIST note
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED
resp %data.pointer; #IMPLIED
place %data.code; "unspecified"
anchored (true|false) "true"
target %data.pointers; #IMPLIED
targetEnd %data.pointers; #IMPLIED >
<!--doc:(Notes statement) collects together any notes providing information about a text
additional to that recorded in other parts of the bibliographic
description. -->
<!ELEMENT notesStmt (%model.noteLike;)+>
<!ATTLIST notesStmt
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(number) contains a number, written in any form. -->
<!ELEMENT num %macro.phraseSeq;>
<!ATTLIST num
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED
value %data.numeric; #IMPLIED >
<!--doc:groups together dateline, byline, salutation, and similar
phrases appearing as a preliminary group at the start of a
division, especially of a letter. -->
<!ELEMENT opener ( #PCDATA | %model.phrase; | argument | byline | dateline | epigraph | salute | signed | %model.global;)*>
<!ATTLIST opener
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(original form) contains a reading which is marked as following the original,
rather than being normalized or corrected. -->
<!ELEMENT orig %macro.paraContent;>
<!ATTLIST orig
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(paragraph) marks paragraphs in prose. -->
<!ELEMENT p %macro.paraContent;>
<!ATTLIST p
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(page break) marks the boundary between one page of a text and the next
in a standard reference system. -->
<!ELEMENT pb EMPTY>
<!ATTLIST pb
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
ed %data.code; #IMPLIED >
<!--doc:(postBox) contains a number or other identifier for some postal delivery
point other than a street address. -->
<!ELEMENT postBox (#PCDATA)>
<!ATTLIST postBox
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(postCode) contains a numerical or alphanumeric code used as part of a
postal address to simplify sorting or delivery of mail. -->
<!ELEMENT postCode (#PCDATA)>
<!ATTLIST postCode
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(principal researcher) supplies the name of the principal researcher responsible for the
creation of an electronic text. -->
<!ELEMENT principal %macro.phraseSeq;>
<!ATTLIST principal
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(text-profile description) provides a detailed description of non-bibliographic aspects of a
text, specifically the languages and sublanguages used, the situation in
which it was produced, the participants and their setting. -->
<!ELEMENT profileDesc (creation?,(%model.profileDescPart;)*)>
<!ATTLIST profileDesc
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(project description) describes in detail the aim or purpose for which an electronic
file was encoded, together with any other relevant information
concerning the process by which it was assembled or collected. -->
<!ELEMENT projectDesc (%model.pLike;)+>
<!ATTLIST projectDesc
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:defines a pointer to another location. -->
<!ELEMENT ptr EMPTY>
<!ATTLIST ptr
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declaring.attribute.decls;
target %data.pointers; #REQUIRED
cRef %data.pointers; #IMPLIED >
<!--doc:contains the name of the place where a bibliographic item was
published. -->
<!ELEMENT pubPlace %macro.phraseSeq;>
<!ATTLIST pubPlace
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.naming.attribute.key; >
<!--doc:(publication statement) groups information concerning the publication or distribution
of an electronic or other text. -->
<!ELEMENT publicationStmt ((%model.pLike;)+ | (publisher | distributor | authority | pubPlace | address | idno | availability | date)+)>
<!ATTLIST publicationStmt
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:provides the name of the organization responsible for
the publication or distribution of a bibliographic item. -->
<!ELEMENT publisher %macro.phraseSeq;>
<!ATTLIST publisher
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(quoted speech, thought, or writing) contains material which is
marked as (ostensibly) quoted from elsewhere; in narrative, this element is used to mark direct or
indirect speech; in dictionaries, it ay be used to mark
real or contrived examples of usage; in manuscript descriptions or
other metadata, to mark extracts quoted from the source being documented. -->
<!ELEMENT q %macro.specialPara;>
<!ATTLIST q
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.ascribed.attribute.who;
type %data.enumerated; #IMPLIED
direct (true|false|unknown) "unknown" >
<!--doc:specifies editorial practice adopted with respect to quotation
marks in the original. -->
<!ELEMENT quotation (%model.pLike;)+>
<!ATTLIST quotation
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default;
marks (none|some|all) "all"
form (data|rend|std|nonstd|unknown) "unknown" >
<!--doc:(quotation) contains a phrase or passage attributed by the narrator or
author to some agency external to the text. -->
<!ELEMENT quote %macro.specialPara;>
<!ATTLIST quote
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(recording event) details of an audio or video recording event
used as the source of a spoken text, either directly or from
a public broadcast. -->
<!ELEMENT recording ((%model.pLike;)+ | (%model.recordingPart;)*)>
<!ATTLIST recording
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default;
type (audio|video) "audio"
dur %data.duration; #IMPLIED >
<!--doc:(recording statement) describes a set of recordings used in transcription of a
spoken text. -->
<!ELEMENT recordingStmt ((%model.pLike;)+ | recording+)>
<!ATTLIST recordingStmt
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:defines a reference to another location, possibly
modified by additional text or comment. -->
<!ELEMENT ref %macro.paraContent;>
<!ATTLIST ref
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declaring.attribute.decls;
target %data.pointers; #IMPLIED
cRef %data.pointers; #IMPLIED >
<!--doc:(references declaration) specifies how canonical references are constructed for this
text. -->
<!ELEMENT refsDecl ((%model.pLike;)+ | cRefPattern+ | state+)>
<!ATTLIST refsDecl
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default;
doctype %data.name; "TEI" >
<!--doc:(regularization) contains a reading which has been regularized or normalized
in some sense. -->
<!ELEMENT reg %macro.paraContent;>
<!ATTLIST reg
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.editLike.attribute.cert;
%att.editLike.attribute.resp;
%att.editLike.attribute.evidence; >
<!--doc:(rendition) supplies information about the intended rendition of one or more
elements. -->
<!ELEMENT rendition %macro.paraContent;>
<!ATTLIST rendition
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:contains a phrase describing the nature of a person's
intellectual responsibility. -->
<!ELEMENT resp %macro.phraseSeq;>
<!ATTLIST resp
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(statement of responsibility) supplies a statement of responsibility for someone responsible
for the intellectual content of a text, edition, recording, or
series, where the specialized elements for authors, editors, etc. do
not suffice or do not apply. -->
<!ELEMENT respStmt ((resp,resp*,(%model.nameLike.agent;)+) | ((%model.nameLike.agent;),(%model.nameLike.agent;)*,resp+))>
<!ATTLIST respStmt
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(revision description) summarizes the revision history for a file. -->
<!ELEMENT revisionDesc (list | change+)>
<!ATTLIST revisionDesc
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(referencing string) contains a general purpose name or referring string. -->
<!ELEMENT rs %macro.phraseSeq;>
<!ATTLIST rs
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.naming.attribute.key;
type %data.enumerated; #IMPLIED >
<!--doc:(salutation) contains a salutation or greeting prefixed to a foreword,
dedicatory epistle, or other division of a text, or the
salutation in the closing of a letter, preface, etc. -->
<!ELEMENT salute %macro.phraseSeq;>
<!ATTLIST salute
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(sampling declaration) contains a prose description of the rationale and methods used
in sampling texts in the creation of a corpus or collection. -->
<!ELEMENT samplingDecl (%model.pLike;)+>
<!ATTLIST samplingDecl
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:(script statement) contains a citation giving details of the script used for
a spoken text. -->
<!ELEMENT scriptStmt ((%model.pLike;)+ | %model.biblLike;)>
<!ATTLIST scriptStmt
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:describes the principles according to which the text has been
segmented, for example into sentences, tone-units, graphemic strata,
etc. -->
<!ELEMENT segmentation (%model.pLike;)+>
<!ATTLIST segmentation
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:(series information) contains information about the series in which a book or other
bibliographic item has appeared. -->
<!ELEMENT series ( #PCDATA | title | editor | respStmt | biblScope | %model.global;)*>
<!ATTLIST series
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(series statement) groups information about the series, if any, to which
a publication belongs. -->
<!ELEMENT seriesStmt ((%model.pLike;)+ | (title+,(idno | respStmt)*))>
<!ATTLIST seriesStmt
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:contains text reproduced although apparently incorrect or inaccurate. -->
<!ELEMENT sic %macro.paraContent;>
<!ATTLIST sic
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(signature) contains the closing salutation, etc., appended to a foreword,
dedicatory epistle, or other division of a text. -->
<!ELEMENT signed %macro.phraseSeq;>
<!ATTLIST signed
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(so called) contains a word or phrase for which the author or narrator
indicates a disclaiming of responsibility, for example by the use
of scare quotes or italics. -->
<!ELEMENT soCalled %macro.phraseSeq;>
<!ATTLIST soCalled
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:supplies a description of the source text(s) from
which an electronic text was derived or generated. -->
<!ELEMENT sourceDesc ((%model.pLike;)+ | listBibl | (%model.biblLike; | %model.sourceDescPart;)+)>
<!ATTLIST sourceDesc
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:(speech) An individual speech in a performance text, or a passage
presented as such in a prose or verse text. -->
<!ELEMENT sp ((%model.global;)*,(speaker,(%model.global;)*)?,((%model.lLike; | lg | %model.pLike; | %model.stageLike;),(%model.global;)*)+)>
<!ATTLIST sp
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.ascribed.attribute.who; >
<!--doc:A specialized form of heading or label, giving the name of
one or more speakers in a dramatic text or fragment. -->
<!ELEMENT speaker %macro.phraseSeq;>
<!ATTLIST speaker
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:specifies the name of a sponsoring organization or
institution. -->
<!ELEMENT sponsor %macro.phraseSeq;>
<!ATTLIST sponsor
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(stage direction) contains any kind of stage direction within a dramatic text or
fragment. -->
<!ELEMENT stage %macro.specialPara;>
<!ATTLIST stage
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED >
<!--doc:specifies one component of a canonical reference defined by
the milestone method. -->
<!ELEMENT state EMPTY>
<!ATTLIST state
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
ed %data.code; #IMPLIED
unit %data.enumerated; #REQUIRED
length %data.count; #IMPLIED
delim CDATA #IMPLIED >
<!--doc:(Standard values) specifies the format used when standardized date or number
values are supplied. -->
<!ELEMENT stdVals (%model.pLike;)+>
<!ATTLIST stdVals
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:(street) a full street address including any name or number identifying a
building as well as the name of the street or route on which it is
located. -->
<!ELEMENT street %macro.phraseSeq;>
<!ATTLIST street
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(tagUsage) supplies information about the usage of a specific element
within a text. -->
<!ELEMENT tagUsage %macro.paraContent;>
<!ATTLIST tagUsage
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
gi %data.name; #REQUIRED
occurs %data.count; #IMPLIED
withId %data.count; #IMPLIED
render %data.pointer; #IMPLIED >
<!--doc:(tagging declaration) provides detailed information about the tagging applied to an SGML or XML document. -->
<!ELEMENT tagsDecl (rendition*,tagUsage*)>
<!ATTLIST tagsDecl
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(taxonomy) defines a typology used to classify texts either implicitly, by
means of a bibliographic citation, or explicitly by a structured
taxonomy. -->
<!ELEMENT taxonomy (category+ | ((%model.biblLike;),category*))>
<!ATTLIST taxonomy
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(TEI corpus) contains the whole of a TEI encoded corpus, comprising a
single corpus header and one or more TEI elements, each containing
a single text header and a text. -->
<!ELEMENT teiCorpus (teiHeader,(TEI | teiCorpus)+)>
<!ATTLIST teiCorpus
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
xmlns CDATA "http://www.tei-c.org/ns/1.0"
version CDATA "5.0" >
<!--doc:(TEI Header) supplies the descriptive and declarative information making
up an electronic title page prefixed to every TEI-conformant
text. -->
<!ELEMENT teiHeader (fileDesc,(%model.headerPart;)*,revisionDesc?)>
<!ATTLIST teiHeader
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; "text" >
<!--doc:contains a single-word, multi-word, or symbolic designation
which is regarded as a technical term. -->
<!ELEMENT term %macro.phraseSeq;>
<!ATTLIST term
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declaring.attribute.decls;
%att.typed.attribute.type;
%att.typed.attribute.subtype;
sortKey %data.word; #IMPLIED
target %data.pointer; #IMPLIED
cRef %data.pointer; #IMPLIED >
<!--doc:contains a single text of any kind, whether unitary or
composite, for example a poem or drama, a collection of essays, a novel,
a dictionary, or a corpus sample. -->
<!ELEMENT text ((%model.global;)*,(front,(%model.global;)*)?,(body | group),(%model.global;)*,(back,(%model.global;)*)?)>
<!ATTLIST text
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declaring.attribute.decls; >
<!--doc:(text classification) groups information which describes the nature or topic of a text
in terms of a standard classification scheme, thesaurus, etc. -->
<!ELEMENT textClass (classCode | catRef | keywords)*>
<!ATTLIST textClass
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.declarable.attribute.default; >
<!--doc:contains a phrase defining a time of day in any format. -->
<!ELEMENT time %macro.phraseSeq;>
<!ATTLIST time
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
value %data.temporal; #IMPLIED >
<!--doc:(time range) contains two times or another phrase indicating a time period. -->
<!ELEMENT timeRange %macro.phraseSeq;>
<!ATTLIST timeRange
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
from %data.temporal; #IMPLIED
to %data.temporal; #IMPLIED
exact (to|from|both|none) #IMPLIED >
<!--doc:contains the full title of a work of any kind. -->
<!ELEMENT title %macro.paraContent;>
<!ATTLIST title
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
level (a|m|j|s|u) #IMPLIED
type %data.enumerated; #IMPLIED >
<!--doc:(title page) contains the title page of a text, appearing within the front
or back matter. -->
<!ELEMENT titlePage ((%model.global;)*,(%model.titlepagePart;),(%model.titlepagePart; | %model.global;)*)>
<!ATTLIST titlePage
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; #IMPLIED >
<!--doc:(title part) contains a subsection or division of the title of a work, as
indicated on a title page. -->
<!ELEMENT titlePart %macro.paraContent;>
<!ATTLIST titlePart
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
type %data.enumerated; "main" >
<!--doc:(title statement) groups information about the title of a work and those
responsible for its intellectual content. -->
<!ELEMENT titleStmt (title+,(author | editor | sponsor | funder | principal | respStmt)*)>
<!ATTLIST titleStmt
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:(trailer) contains a closing title or footer appearing at the end of
a division of a text. -->
<!ELEMENT trailer %macro.phraseSeq;>
<!ATTLIST trailer
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase; >
<!--doc:contains a word, phrase, or passage which cannot be transcribed
with certainty because it is illegible or inaudible in the source. -->
<!ELEMENT unclear %macro.paraContent;>
<!ATTLIST unclear
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
%att.editLike.attribute.cert;
%att.editLike.attribute.resp;
%att.editLike.attribute.evidence;
reason %data.words; #IMPLIED
hand %data.pointer; #IMPLIED
agent %data.enumerated; #IMPLIED >
<!--doc:declares the method used to encode text-critical variants. -->
<!ELEMENT variantEncoding EMPTY>
<!ATTLIST variantEncoding
%att.global.attribute.xmlid;
%att.global.attribute.n;
%att.global.attribute.xmllang;
%att.global.attribute.rend;
%att.global.attribute.xmlbase;
method (location-referenced|double-end-point|parallel-segmentation) #REQUIRED
location (internal|external) #REQUIRED >
<!-- end elements -->
|