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
|
<!-- ===================================================================== -->
<!--
DocBook DTD Revision: 2.2.1
$Date: 1995/01/23 17:00:40 $
Copyright 1992, 1993, 1994 HaL Computer Systems, Inc., and
O'Reilly & Associates, Inc.
Permission to use, copy, modify and distribute the DocBook DTD and
its accompanying documentation for any purpose and without fee is
hereby granted, provided that this copyright notice appears in
all copies. If you modify the DocBook DTD, rename your modified
version. HaL Computer Systems, Inc., and O'Reilly & Associates,
Inc., make no representation about the suitability of the DTD for
any purpose. It is provided "as is" without expressed or implied
warranty.
The DocBook DTD is maintained by HaL Computer Systems, Inc., and
O'Reilly & Associates, Inc. Please direct all questions, bug
reports, or suggestions for changes to: davenport@ora.com or by
postal mail to either: Terry Allen, O'Reilly & Associates, Inc.,
103A Morris Street, Sebastopol, California, 95472; or Conleth
O'Connell, HaL Computer Systems, 3006-A Longhorn Blvd., Austin,
Texas, 78758.
Please note that an SGML declaration is provided for this DTD.
Public Identifier:
"-//HaL and O'Reilly//DTD DocBook//EN"
-->
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!--
PARAMETER ENTITIES to allow inclusion of local modifications.
To include your local terms, table content model, graphics
format, or other local item,
At the head of your instance, after the DOCTYPE line, include
a reference to an external entity file that that includes all
the local terms, table content models, and (or) graphics
formats you are using:
<!DOCTYPE Chapter SYSTEM "/yourpath/docbook.dtd" [
<!ENTITY % localmods SYSTEM "/yourpath/localmodfile" >
%localmods;
]>
You may need to set up attributes for your local elements.
-->
<!-- CONTENT MODEL LOCALIZATIONS -->
<!ENTITY % local.admonitions "" >
<!ENTITY % local.appendix "" >
<!ENTITY % local.book "" >
<!ENTITY % local.chapter "" >
<!ENTITY % local.cptrterms "" >
<!ENTITY % local.equations "" >
<!ENTITY % local.examples "" >
<!ENTITY % local.index "" >
<!ENTITY % local.links "" >
<!ENTITY % local.lists "" >
<!ENTITY % local.notations "" >
<!ENTITY % local.refclasses "" >
<!ENTITY % local.nav "" >
<!ENTITY % local.ndxterms "" >
<!ENTITY % local.synopsis "" >
<!ENTITY % local.tables "" >
<!ENTITY % local.terms "" >
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- NOTATIONS -->
<!NOTATION CGM-CHAR PUBLIC "ISO 8632/2//NOTATION Character encoding//EN" >
<!NOTATION CGM-BINARY PUBLIC "ISO 8632/3//NOTATION Binary encoding//EN" >
<!NOTATION CGM-CLEAR PUBLIC "ISO 8632/4//NOTATION Clear text encoding//EN" >
<!NOTATION DITROFF SYSTEM "DITROFF" >
<!NOTATION DVI SYSTEM "DVI" >
<!NOTATION EPS PUBLIC "+//ISBN 0-201-18127-4::Adobe//NOTATION
PostScript Language Ref. Manual//EN" >
<!NOTATION EQN SYSTEM "-//AT&T//NOTATION EQN-1//EN" >
<!NOTATION FAX PUBLIC "-//USA-DOD//NOTATION CCITT Group 4 Facsimile
Type 1 Untiled Raster//EN" >
<!NOTATION GIF SYSTEM "GIF" >
<!NOTATION IGES PUBLIC "-//USA-DOD//NOTATION (ASME/ANSI Y14.26M-1987)
Initial Graphics Exchange Specification//EN" >
<!NOTATION PIC SYSTEM "-//AT&T//NOTATION PIC-1//EN" >
<!NOTATION PS SYSTEM "PS" >
<!NOTATION TBL SYSTEM "-//AT&T//NOTATION TBL-1//EN" >
<!NOTATION TEX PUBLIC "+//ISBN 0-201-13448-9::Knuth//NOTATION
The TeXbook//EN" >
<!NOTATION TIFF SYSTEM "TIFF" >
<!NOTATION linespecific SYSTEM
"line ends and leading white space must be preserved in output" >
<!ENTITY % notationtypes "CGM-CHAR | CGM-BINARY | CGM-CLEAR | DITROFF | DVI |
EPS | EQN | FAX | FAXTILE | GIF | IGES | PIC | PS | TBL | TEX
| TIFF | linespecific %local.notations;" >
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!--
ATTRIBUTE LIST for a set of common attributes.
-->
<!ENTITY % commonatts
"Id ID #IMPLIED
Lang CDATA #IMPLIED
Remap CDATA #IMPLIED
Role CDATA #IMPLIED
XRefLabel CDATA #IMPLIED"
>
<!-- ===================================================================== -->
<!--
Many attributes have a Boolean value. They are given the declared
value of "%yesorno;" rather then NUMBER to indicate this intent. 0
is interpreted as false; all other numbers as true. This concept
is borrowed from the CALS MIL DTD.
-->
<!ENTITY % yesorno "NUMBER" >
<!ENTITY % yes "1" >
<!ENTITY % no "0" >
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- PARAMETER ENTITIES -->
<!-- ===================================================================== -->
<!-- Book Contents -->
<!ENTITY % appendix.gp "Appendix %local.appendix;" >
<!ENTITY % book.gp "Book %local.book;" >
<!ENTITY % chapter.gp "Chapter %local.chapter;" >
<!ENTITY % index.gp "Index | SetIndex %local.index;" >
<!ENTITY % bookcontent.gp "%appendix.gp; | Bibliography | %chapter.gp; |
Glossary | %index.gp; | LoT | Preface | RefEntry | Reference |
ToC " >
<!-- ===================================================================== -->
<!-- Contents that can appear almost anywhere -->
<!ENTITY % ndxterm.gp "IndexTerm %local.ndxterms;" >
<!ENTITY % xref.gp "FootnoteRef | XRef" >
<!ENTITY % links.gp "Link | OLink | ULink %local.links;" >
<!ENTITY % basechar.gp "#PCDATA | Anchor" >
<!ENTITY % phrase.gp "%basechar.gp; | Comment | Subscript | Superscript |
%links.gp;" >
<!-- ===================================================================== -->
<!ENTITY % bookinfo.content.gp "Author | AuthorInitials | Title | Copyright |
CorpAuthor | CorpName | Date | Editor | Edition |
InvPartNumber | ISBN | LegalNotice | OrgName | OtherCredit |
PrintHistory | ProductName | ProductNumber | Publisher |
PubsNumber | ReleaseInfo | RevHistory | Subtitle |
VolumeNum" >
<!-- ===================================================================== -->
<!ENTITY % docinfo.content.gp "Author | AuthorInitials | CorpAuthor | ModeSpec
| OtherCredit | ProductName | ProductNumber | RevHistory" >
<!-- ===================================================================== -->
<!ENTITY % words.gp "Abbrev | Acronym | Citation | CiteTitle | CiteRefEntry |
Emphasis | FirstTerm | ForeignPhrase | GlossTerm | Footnote |
Markup | Quote | SGMLTag | Trademark | WordAsWord" >
<!-- ===================================================================== -->
<!ENTITY % computerterms.gp "Action | Application | Classname | Command |
ComputerOutput | Database | ErrorName | ErrorType | Filename |
Function | Hardware | Interface | InterfaceDefinition | KeyCap
| KeyCode | KeySym | Literal | MediaLabel | MsgText | Option |
Optional | Parameter | Property | Replaceable | ReturnValue |
StructField | StructName | Symbol | SystemItem | Token | Type
| UserInput %local.cptrterms;" >
<!-- ===================================================================== -->
<!ENTITY % cptrphrase.gp "%phrase.gp; | %computerterms.gp;" >
<!ENTITY % inlinechar.gp "%phrase.gp; | %computerterms.gp; |
%docinfo.content.gp; | %words.gp; | %xref.gp; %local.terms;" >
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- ===================================================================== -->
<!-- Contents of Equation -->
<!ENTITY % eqncontent.gp "Graphic %local.equations;" >
<!-- ===================================================================== -->
<!-- Contents of Table -->
<!ENTITY % tblcontent.gp "Graphic+ | TGroup+ %local.tables;" >
<!-- All the varieties of lists -->
<!ENTITY % list.gp "GlossList | ItemizedList | OrderedList | SegmentedList |
SimpleList | VariableList %local.lists; " >
<!-- ===================================================================== -->
<!-- All of the varieties of admonitions -->
<!ENTITY % admonition.gp "Caution | Important | Note | Tip | Warning
%local.admonitions;" >
<!-- ===================================================================== -->
<!-- All of the varieties of code and whitespace-sensitive examples -->
<!ENTITY % code.example.gp "LiteralLayout | ProgramListing | Screen |
ScreenShot %local.examples;" >
<!ENTITY % synop.gp "Synopsis | CmdSynopsis | FuncSynopsis %local.synopsis;" >
<!-- ===================================================================== -->
<!-- Informal elements used within other paragraph elements -->
<!ENTITY % object.gp "BlockQuote | InformalEquation | InformalExample |
InformalTable | %code.example.gp; | Graphic | %synop.gp;" >
<!-- ===================================================================== -->
<!-- Para elements -->
<!ENTITY % para.gp "FormalPara | Para | SimPara" >
<!-- ===================================================================== -->
<!-- Formal elements used within other paragraph elements -->
<!ENTITY % formalobject.gp "Equation | Example | Figure | Table" >
<!-- ===================================================================== -->
<!ENTITY % component.gp "Abstract | Anchor | AuthorBlurb | %admonition.gp; |
BridgeHead | Comment | Epigraph | %formalobject.gp; |
Highlights | %list.gp; | %object.gp; |
%para.gp; | MsgSet | Procedure | Sidebar" >
<!-- ===================================================================== -->
<!ENTITY % refclass.gp "#PCDATA | Application %local.refclasses;" >
<!ENTITY % nav.gp "ToC | LoT | Index | Glossary | Bibliography %local.nav;" >
<!ENTITY % inlineobj.gp "%inlinechar.gp; | InlineGraphic | InlineEquation |
%synop.gp;" >
<!-- ===================================================================== -->
<!-- The sect1.gp parameter entity is used in Chapter, Preface, and
Appendix -->
<!ENTITY % sect1.gp "((%component.gp;)+, (Sect1* | RefEntry*)) | Sect1+ |
RefEntry+" >
<!-- ===================================================================== -->
<!ENTITY % ubiq.gp "%ndxterm.gp; | BeginPage" >
<!-- ===================================================================== -->
<!ENTITY % primsee "PrimaryIE, (SeeIE | SeeAlsoIE)*" >
<!ENTITY % secsee "SecondaryIE, (SeeIE | SeeAlsoIE | TertiaryIE)*" >
<!-- Common attributes for command synopses: -->
<!ENTITY % argchcatt "Choice ( opt | req | plain ) 'opt'">
<!ENTITY % grpchcatt "Choice ( opt | req | plain | optmult | reqmult )
'opt'">
<!ENTITY % repatt "Rep ( norepeat | repeat ) 'norepeat'">
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- ELEMENTS -->
<!-- ===================================================================== -->
<!-- ===================================================================== -->
<!-- GENERAL BOOK STRUCTURES -->
<!-- ===================================================================== -->
<!--
A Set contains at least two books. A Book, which could be a
journal or an anthology, must have a Chapter or Reference or
Part, and may contain other contents as required. We believe
this model accommodates the order of contents for English,
French, German, and Japanese books.
A Part contains at least one book content element. A
Preface, ToC, LoT, Bibliography, Glossary, or Index can be a
chapter-level component, while ToC, LoT, Bibliography,
Glossary, RefEntry, and Index may also appear within
chapter-level components.
-->
<!-- A model for a Set of Books -->
<!ELEMENT Set - - ((Title, TitleAbbrev?)?, SetInfo?, ToC?, (%book.gp;),
(%book.gp;)+, SetIndex?) +(%ubiq.gp;) >
<!ATTLIST Set
%commonatts;
FPI CDATA #IMPLIED
>
<!ELEMENT SetInfo - - ((%bookinfo.content.gp;)+) -(%ubiq.gp;) >
<!ATTLIST SetInfo
%commonatts;
-- Contents points to the IDs of the book pieces (from
book.gp) in the order of their appearance --
Contents IDREFS #IMPLIED
>
<!-- A prescriptive model for a Book -->
<!ELEMENT Book - - ((Title, TitleAbbrev?)?, BookInfo?, ToC?, LoT*, Preface*,
(((%chapter.gp;)+, Reference*) | Part+ | Reference+ |
Article+), (%appendix.gp;)*, Glossary?, Bibliography?,
(%index.gp;)*, LoT*, ToC? ) +(%ubiq.gp;) >
<!ATTLIST Book
%commonatts;
FPI CDATA #IMPLIED
Label CDATA #IMPLIED
>
<!ELEMENT BookInfo - - (BookBiblio, LegalNotice*, ModeSpec*) -(%ubiq.gp;) >
<!ATTLIST BookInfo
%commonatts;
-- Contents points to the IDs of the book pieces (from
book.gp) in the order of their appearance --
Contents IDREFS #IMPLIED
>
<!--
PageNums is the pages contained in a given issue or volume.
-->
<!ELEMENT BookBiblio - - ((Title, TitleAbbrev?)?, Subtitle?, Edition?,
AuthorGroup+, ((ISBN, VolumeNum?) | (ISSN, VolumeNum?,
IssueNum?, PageNums?))?, InvPartNumber?, ProductNumber?,
ProductName?, PubsNumber?, ReleaseInfo?, PubDate*, Publisher*,
Copyright?, SeriesInfo?, Abstract*, ConfGroup*, (ContractNum |
ContractSponsor)*, PrintHistory?, RevHistory?) -(%ubiq.gp;) >
<!ATTLIST BookBiblio
%commonatts;
>
<!-- Most of the book component elements -->
<!ELEMENT Appendix - - (DocInfo?, Title, TitleAbbrev?, (%sect1.gp;))
+(%ubiq.gp;) >
<!ATTLIST Appendix
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT Chapter - - (DocInfo?, Title, TitleAbbrev?, (%sect1.gp;), (Index |
Glossary | Bibliography)*) +(%ubiq.gp;) >
<!ATTLIST Chapter
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT DocInfo - - (Title, TitleAbbrev?, Subtitle?, AuthorGroup+,
Abstract*, RevHistory?, LegalNotice*) -(%ubiq.gp;) >
<!ATTLIST DocInfo
%commonatts;
>
<!ELEMENT Part - - (DocInfo?, Title, TitleAbbrev?, PartIntro?,
(%bookcontent.gp;)+) +(%ubiq.gp;) >
<!ATTLIST Part
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT PartIntro - - ((Title, TitleAbbrev?)?, (%sect1.gp;)) +(%ubiq.gp;) >
<!ATTLIST PartIntro
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT Preface - - (DocInfo?, Title, TitleAbbrev?, (%sect1.gp;))
+(%ubiq.gp;) >
<!ATTLIST Preface
%commonatts;
>
<!ELEMENT Reference - - (DocInfo?, Title, TitleAbbrev?, PartIntro?, RefEntry+)
+(%ubiq.gp;) >
<!ATTLIST Reference
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT SeriesInfo - - (Title, TitleAbbrev?, Subtitle?, AuthorGroup*, ISBN?,
VolumeNum?, IssueNum?, SeriesVolNums, PubDate*, Publisher*,
Copyright?) -(%ubiq.gp;) >
<!ATTLIST SeriesInfo
%commonatts;
>
<!ELEMENT Title - - ((%inlinechar.gp;)+) >
<!ATTLIST Title
%commonatts;
Pagenum CDATA #IMPLIED
>
<!ELEMENT TitleAbbrev - - ((%inlinechar.gp;)+) >
<!ATTLIST TitleAbbrev
%commonatts;
>
<!ELEMENT Subtitle - - ((%inlinechar.gp;)+) >
<!ATTLIST Subtitle
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- SECTIONS -->
<!-- ===================================================================== -->
<!ELEMENT Sect1 - - (Title, TitleAbbrev?, (%nav.gp;)*, (((%component.gp;)+,
(RefEntry* | Sect2*)) | RefEntry+ | Sect2+), (%nav.gp;)*)
+(%ubiq.gp;) >
<!ATTLIST Sect1
%commonatts;
Label CDATA #IMPLIED
Renderas (Sect2 | Sect3 | Sect4 | Sect5)
#IMPLIED
>
<!ELEMENT Sect2 - - (Title, TitleAbbrev?, (%nav.gp;)*, (((%component.gp;)+,
(RefEntry* | Sect3*)) | RefEntry+ | Sect3+), (%nav.gp;)*) >
<!ATTLIST Sect2
%commonatts;
Label CDATA #IMPLIED
Renderas (Sect1 | Sect3 | Sect4 | Sect5)
#IMPLIED
>
<!ELEMENT Sect3 - - (Title, TitleAbbrev?, (%nav.gp;)*, (((%component.gp;)+,
(RefEntry* | Sect4*)) | RefEntry+ | Sect4+), (%nav.gp;)*) >
<!ATTLIST Sect3
%commonatts;
Label CDATA #IMPLIED
Renderas (Sect1 | Sect2 | Sect4 | Sect5)
#IMPLIED
>
<!ELEMENT Sect4 - - (Title, TitleAbbrev?, (%nav.gp;)*, (((%component.gp;)+,
(RefEntry* | Sect5*)) | RefEntry+ | Sect5+), (%nav.gp;)*) >
<!ATTLIST Sect4
%commonatts;
Label CDATA #IMPLIED
Renderas (Sect1 | Sect2 | Sect3 | Sect5)
#IMPLIED
>
<!ELEMENT Sect5 - - (Title, TitleAbbrev?, (%nav.gp;)*, (((%component.gp;)+,
RefEntry*) | RefEntry+), (%nav.gp;)*) >
<!ATTLIST Sect5
%commonatts;
Label CDATA #IMPLIED
Renderas (Sect1 | Sect2 | Sect3 | Sect4)
#IMPLIED
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- OTHER SECTION-ISH ELEMENTS -->
<!-- ===================================================================== -->
<!ELEMENT MsgSet - - (MsgEntry+) >
<!ATTLIST MsgSet
%commonatts;
>
<!ELEMENT MsgEntry - - (Msg+, MsgInfo?, MsgExplan*) >
<!ATTLIST MsgEntry
%commonatts;
>
<!ELEMENT Msg - - (Title?, MsgMain, (MsgSub | MsgRel)*) >
<!ATTLIST Msg
%commonatts;
>
<!ELEMENT MsgMain - - (Title?, MsgText) >
<!ATTLIST MsgMain
%commonatts;
>
<!ELEMENT MsgSub - - (Title?, MsgText) >
<!ATTLIST MsgSub
%commonatts;
>
<!ELEMENT MsgRel - - (Title?, MsgText) >
<!ATTLIST MsgRel
%commonatts;
>
<!ELEMENT MsgText - - ((%component.gp;)+) >
<!ATTLIST MsgText
%commonatts;
>
<!ELEMENT MsgInfo - - ((MsgLevel | MsgOrig | MsgAud)*) >
<!ATTLIST MsgInfo
%commonatts;
>
<!ELEMENT MsgLevel - - (#PCDATA) >
<!ATTLIST MsgLevel
%commonatts;
>
<!ELEMENT MsgOrig - - (#PCDATA) >
<!ATTLIST MsgOrig
%commonatts;
>
<!ELEMENT MsgAud - - (#PCDATA) >
<!ATTLIST MsgAud
%commonatts;
>
<!ELEMENT MsgExplan - - (Title?, (%component.gp;)+) >
<!ATTLIST MsgExplan
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!ELEMENT Procedure - - ((Title, TitleAbbrev?)?, (%component.gp;)*, Step+) >
<!ATTLIST Procedure
%commonatts;
>
<!ELEMENT Step - - (Title?, (((%component.gp;)+, (SubSteps,
(%component.gp;)*)?) | (SubSteps, (%component.gp;)*))) >
<!ATTLIST Step
%commonatts;
Performance (Optional|Required)
Required
>
<!ELEMENT SubSteps - - (Step+) >
<!ATTLIST SubSteps
%commonatts;
Performance (Optional|Required)
Required
>
<!--
Components not included in Sidebar are: Abstract, AuthorBlurb,
Epigraph, Highlights, and Sidebar.
-->
<!ELEMENT Sidebar - - ((Title, TitleAbbrev?)?, (%para.gp; | %list.gp; |
%object.gp; | %admonition.gp; | %formalobject.gp; | Highlights
| BridgeHead | Procedure | Comment | Anchor)+) >
<!ATTLIST Sidebar
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- PARAGRAPH-RELATED ELEMENTS -->
<!-- ===================================================================== -->
<!ELEMENT (Abstract | AuthorBlurb) - - (Title?, (%para.gp;)+) >
<!ATTLIST (Abstract | AuthorBlurb)
%commonatts;
>
<!ELEMENT BlockQuote - - (Title?, (%component.gp;)+) >
<!ATTLIST BlockQuote
%commonatts;
>
<!ELEMENT BridgeHead - - ((%inlinechar.gp;)+) >
<!ATTLIST BridgeHead
%commonatts;
Renderas (Other | Sect1 | Sect2 | Sect3 | Sect4 |
Sect5) #IMPLIED
>
<!ELEMENT Comment - - ((%inlinechar.gp;)+) -(%ubiq.gp;) >
<!ATTLIST Comment
%commonatts;
>
<!ELEMENT Epigraph - - ((%para.gp;)+) >
<!ATTLIST Epigraph
%commonatts;
>
<!ELEMENT Footnote - - ((%para.gp; | %list.gp; | %object.gp;)+) -(Footnote) >
<!ATTLIST Footnote
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT Highlights - - ((%para.gp; | %list.gp; | %admonition.gp;)+) >
<!ATTLIST Highlights
%commonatts;
>
<!ELEMENT FormalPara - - (Title, Para) >
<!ATTLIST FormalPara
%commonatts;
>
<!ELEMENT Para - - ((%inlinechar.gp; | InlineGraphic | InlineEquation |
%list.gp; | %object.gp;)+) >
<!ATTLIST Para
%commonatts;
>
<!ELEMENT SimPara - - ((%inlineobj.gp;)+) >
<!ATTLIST SimPara
%commonatts;
>
<!--
Components not included are: Abstract, AuthorBlurb, other admonitions,
Epigraph, and Highlights.
-->
<!ELEMENT (%admonition.gp;) - - (Title?, (Anchor | BridgeHead | Comment |
%formalobject.gp; | %list.gp; | %object.gp; |
%para.gp; | Procedure | Sidebar)+) -(%admonition.gp;) >
<!ATTLIST (%admonition.gp;)
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- LISTS -->
<!-- ===================================================================== -->
<!ELEMENT GlossList - - (GlossEntry+) >
<!ATTLIST GlossList
%commonatts;
>
<!--
The Mark attribute specifies the mark that should appear
before each ListItem, such as Bullet, Dash, Box, Check.
-->
<!ELEMENT ItemizedList - - (ListItem+) >
<!ATTLIST ItemizedList
%commonatts;
Mark CDATA #IMPLIED
>
<!ELEMENT ListItem - - ((%component.gp;)+) >
<!ATTLIST ListItem
%commonatts;
Override CDATA #IMPLIED
>
<!ELEMENT OrderedList - - (ListItem+) >
<!ATTLIST OrderedList
%commonatts;
Numeration (Arabic | Upperalpha | Loweralpha
| Upperroman | Lowerroman)
#IMPLIED
InheritNum (Inherit | Ignore)
Ignore
Continuation (Continues | Restarts)
Restarts
>
<!ELEMENT SegmentedList - - ((Title, TitleAbbrev?)?, SegTitle*, SegListItem+)
>
<!ATTLIST SegmentedList
%commonatts;
>
<!ELEMENT SegTitle - - ((%inlinechar.gp;)+) >
<!ATTLIST SegTitle
%commonatts;
>
<!ELEMENT SegListItem - - (Seg, Seg+) >
<!ATTLIST SegListItem
%commonatts;
>
<!ELEMENT Seg - - ((%inlinechar.gp;)+) >
<!ATTLIST Seg
%commonatts;
>
<!ELEMENT VariableList - - ((Title, TitleAbbrev?)?, VarListEntry+) >
<!ATTLIST VariableList
%commonatts;
>
<!ELEMENT VarListEntry - - (Term+, ListItem) >
<!ATTLIST VarListEntry
%commonatts;
>
<!ELEMENT Term - - ((%inlinechar.gp;)+) >
<!ATTLIST Term
%commonatts;
>
<!-- ===================================================================== -->
<!--
SimpleList allows you to list short strings (Members) in an array or
in a normal sentence. The "inline" value of the Type attribute
presents the Members inline (you have to generate commas
and the "and" if need be). "Horiz" means set up as many columns
as are specified by the value of the Columns attribute, of equal
width, indented as for a BlockQuote, and enter the Members in
these slots from L to R, top to bottom, left justified. "Vert" means
calculate the columns the same way and determine the number of rows
as if you were using Horiz; then just fill in the positions from
top to bottom, L to R left-justified. In other words, you
don't set the number of rows, only the number of columns.
(This way, when on-line and the window resizes, you don't have to
readjust the text unless the window gets so narrow you can't
display the specified number of columns, then a renderer might
reduce the number of columns.) When Column = 1, Vert and Horiz
provide the same rendition.
-->
<!ELEMENT SimpleList - - (Member+) >
<!ATTLIST SimpleList
%commonatts;
Columns NUMBER #IMPLIED
Type (Inline | Vert | Horiz)
Vert
>
<!ELEMENT Member - - ((%inlinechar.gp;)+) >
<!ATTLIST Member
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- OBJECTS -->
<!-- ===================================================================== -->
<!-- ===================================================================== -->
<!-- EXAMPLE -->
<!-- ===================================================================== -->
<!ELEMENT Example - - (Title, TitleAbbrev?, (%para.gp; | %list.gp; |
%object.gp;)+) >
<!ATTLIST Example
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT InformalExample - - ((%para.gp; | %list.gp; | %object.gp;)+) >
<!ATTLIST InformalExample
%commonatts;
>
<!ELEMENT ProgramListing - - ((LineAnnotation | %inlinechar.gp;)+) >
<!ATTLIST ProgramListing
%commonatts;
Format NOTATION
(linespecific) linespecific
Width NUMBER #IMPLIED
>
<!ELEMENT LiteralLayout - - ((LineAnnotation | %inlinechar.gp;)+) >
<!ATTLIST LiteralLayout
%commonatts;
Format NOTATION
(linespecific) linespecific
Width NUMBER #IMPLIED
>
<!ELEMENT Screen - - ((LineAnnotation | %inlinechar.gp;)+) >
<!ATTLIST Screen
%commonatts;
Format NOTATION
(linespecific) linespecific
Width NUMBER #IMPLIED
>
<!ELEMENT ScreenShot - - (ScreenInfo?, Graphic) >
<!ATTLIST ScreenShot
%commonatts;
>
<!ELEMENT ScreenInfo - - (#PCDATA) -(%ubiq.gp;) >
<!ATTLIST ScreenInfo
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- FIGURE -->
<!-- ===================================================================== -->
<!--
N.B.: Graphic occurs in object.gp, so does not appear
explicitly in Figure.
-->
<!ELEMENT Figure - - (Title, TitleAbbrev?, (%object.gp; | %links.gp;)+) >
<!ATTLIST Figure
%commonatts;
Float %yesorno; %no;
Label CDATA #IMPLIED
>
<!--
Graphical data can be the content of Graphic, or you can
reference an external file through the Fileref attribute,
either as an entity or a filename.
-->
<!ELEMENT Graphic - - CDATA >
<!ATTLIST Graphic
%commonatts;
Entityref ENTITY #IMPLIED
Fileref CDATA #IMPLIED
Format NOTATION
(%notationtypes;)
#IMPLIED
SrcCredit CDATA #IMPLIED
>
<!ELEMENT InlineGraphic - - CDATA >
<!ATTLIST InlineGraphic
%commonatts;
Entityref ENTITY #IMPLIED
Fileref CDATA #IMPLIED
Format NOTATION
(%notationtypes;)
#IMPLIED
SrcCredit CDATA #IMPLIED
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- EQUATION -->
<!-- ===================================================================== -->
<!ELEMENT Equation - - ((Title, TitleAbbrev?)?, (InformalEquation |
%eqncontent.gp;)+) >
<!ATTLIST Equation
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT InformalEquation - - ((%eqncontent.gp;)+) >
<!ATTLIST InformalEquation
%commonatts;
>
<!ELEMENT InlineEquation - - ((%eqncontent.gp;)+) >
<!ATTLIST InlineEquation
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- TABLE -->
<!-- ===================================================================== -->
<!--
The CALS table specification derived from MIL-M-28001B. The only
difference is the content of Entry. InformalTable was derived
from Table by removing titling and the attributes: Label,
ShortEntry, and ToCentry.
-->
<!ELEMENT Table - - (Title, TitleAbbrev?, (%tblcontent.gp;))
-(Table|InformalTable)>
<!ATTLIST Table
%commonatts;
Colsep %yesorno; #IMPLIED
Frame (Top|Bottom|Topbot|All|Sides|None)
#IMPLIED
Label CDATA #IMPLIED
Orient (Port | Land) #IMPLIED
Pgwide %yesorno; #IMPLIED
Rowsep %yesorno; #IMPLIED
Shortentry %yesorno; #IMPLIED
Tabstyle NMTOKEN #IMPLIED
Tocentry %yesorno; %yes;
>
<!ELEMENT InformalTable - - ((%tblcontent.gp;)) -(Table|InformalTable)>
<!ATTLIST InformalTable
%commonatts;
Colsep %yesorno; #IMPLIED
Frame (Top|Bottom|Topbot|All|Sides|None)
#IMPLIED
Orient (Port | Land) #IMPLIED
Pgwide %yesorno; #IMPLIED
Rowsep %yesorno; #IMPLIED
Tabstyle NMTOKEN #IMPLIED
>
<!ELEMENT TGroup - O (ColSpec*, SpanSpec*, THead?, TFoot?, TBody) >
<!ATTLIST TGroup
%commonatts;
Align (Left|Right|Center|Justify|Char)
Left
Char CDATA ""
Charoff NUTOKEN "50"
Cols NUMBER #REQUIRED
Colsep %yesorno; #IMPLIED
Rowsep %yesorno; #IMPLIED
TGroupStyle NMTOKEN #IMPLIED
>
<!ELEMENT ColSpec - O EMPTY >
<!ATTLIST ColSpec
%commonatts;
Align (Left|Right|Center|Justify|Char)
#IMPLIED
Char CDATA #IMPLIED
Charoff NUTOKEN #IMPLIED
Colname NMTOKEN #IMPLIED
Colnum NUMBER #IMPLIED
Colsep %yesorno; #IMPLIED
Colwidth CDATA #IMPLIED
Rowsep %yesorno; #IMPLIED
>
<!ELEMENT SpanSpec - O EMPTY >
<!ATTLIST SpanSpec
%commonatts;
Align (Left|Right|Center|Justify|Char)
"Center"
Char CDATA #IMPLIED
Charoff NUTOKEN #IMPLIED
Colsep %yesorno; #IMPLIED
Nameend NMTOKEN #REQUIRED
Namest NMTOKEN #REQUIRED
Rowsep %yesorno; #IMPLIED
Spanname NMTOKEN #REQUIRED
>
<!ELEMENT THead - O (ColSpec*, Row+) -(EntryTbl) >
<!ATTLIST THead
%commonatts;
VAlign (Top | Middle | Bottom)
"Bottom"
>
<!ELEMENT TFoot - O (ColSpec*, Row+) -(EntryTbl) >
<!ATTLIST TFoot
%commonatts;
VAlign (Top | Middle | Bottom)
"Top"
>
<!ELEMENT TBody - O (Row+) >
<!ATTLIST TBody
%commonatts;
VAlign (Top | Middle | Bottom)
"Top"
>
<!ELEMENT Row - O ((Entry | EntryTbl)+) >
<!ATTLIST Row
%commonatts;
Rowsep %yesorno; #IMPLIED
VAlign (Top | Middle | Bottom)
#IMPLIED
>
<!--
The content model of Entry is broken into two possibilities:
paragraph-like elements (Para, Note, LiteralLayout, lists,
etc., and inline text elements (PCDATA, Command, Link, etc.).
Because of the possibility that PCDATA can occur without
being contained, you can not allow for spurious record ends
to occur between the paragraph-like elements. If the inline
text elements were contained in another element, e.g., Cell,
(it could be a sibling of Entry or part of the content model
for Entry), this issue would disappear.
-->
<!ELEMENT Entry - O ((%para.gp; | %admonition.gp; | %code.example.gp; |
%list.gp; | Graphic)+ | (%inlineobj.gp;)+) >
<!ATTLIST Entry
%commonatts;
Align (Left|Right|Center|Justify|Char)
#IMPLIED
Char CDATA #IMPLIED
Charoff NUTOKEN #IMPLIED
Colname NMTOKEN #IMPLIED
Colsep %yesorno; #IMPLIED
Morerows NUMBER "0"
Nameend NMTOKEN #IMPLIED
Namest NMTOKEN #IMPLIED
Rotate %yesorno; %no;
Rowsep %yesorno; #IMPLIED
Spanname NMTOKEN #IMPLIED
VAlign (Top | Middle | Bottom)
#IMPLIED
>
<!ELEMENT EntryTbl - - ((ColSpec*, SpanSpec*, THead?, TBody)+)
-(EntryTbl) >
<!ATTLIST EntryTbl
%commonatts;
Align (Left|Right|Center|Justify|Char)
#IMPLIED
Char CDATA #IMPLIED
Charoff NUTOKEN #IMPLIED
Colname NMTOKEN #IMPLIED
Cols NUMBER #REQUIRED
Colsep %yesorno; #IMPLIED
Nameend NMTOKEN #IMPLIED
Namest NMTOKEN #IMPLIED
Rowsep %yesorno; #IMPLIED
Spanname NMTOKEN #IMPLIED
TGroupStyle NMTOKEN #IMPLIED
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- LINKS -->
<!-- ===================================================================== -->
<!ELEMENT Anchor - O EMPTY >
<!ATTLIST Anchor
-- commonatts, but Id is required, and Pagenum replaces Lang --
Id ID #REQUIRED
Pagenum CDATA #IMPLIED
Remap CDATA #IMPLIED
Role CDATA #IMPLIED
XRefLabel CDATA #IMPLIED
>
<!--
The PageNum attribute of BeginPage, if given, specifies
the number of the page that begins at that point.
-->
<!ELEMENT BeginPage - O EMPTY >
<!ATTLIST BeginPage
%commonatts;
Pagenum CDATA #IMPLIED
>
<!--
IndexTerms occur in the text flow for generating or linking an
Index.
-->
<!ELEMENT IndexTerm - O (Primary, ((Secondary, ((Tertiary, (See | SeeAlso+)?)
| See | SeeAlso+)?) | See | SeeAlso+)?) -(%ubiq.gp;) >
<!ATTLIST IndexTerm
%commonatts;
Pagenum CDATA #IMPLIED
-- local implementations of Scope define what the default should be --
Scope (All | Global | Local)
#IMPLIED
Significance (Preferred | Normal)
Normal
-- FUTURE use: SpanEnd attribute will be renamed to indicate that it
points to the content of the indexterm being spanned.
Another attribute will be added to "flag" that the
indexterm is the other end of a spanned indexterm and
not just a point in the flow.
--
SpanEnd IDREF #CONREF
-- if Zone is used, they point to elements where they originated --
Zone IDREFS #IMPLIED
>
<!ELEMENT (Primary | Secondary | Tertiary ) - - ((%inlinechar.gp;)+) >
<!ATTLIST (Primary | Secondary | Tertiary )
%commonatts;
SortAs CDATA #IMPLIED
>
<!ELEMENT (See | SeeAlso) - - ((%inlinechar.gp;)+) >
<!ATTLIST (See | SeeAlso)
%commonatts;
>
<!-- ===================================================================== -->
<!--
Use of the HyTime terms Linkend and Endterm does not indicate
that HyTime processing is required. Link has both Endterm and
Linkend attributes: Linkend is the spot linked to, Endterm
identifies information that may be used by the Link. You
might, for example, make the Linkend a Sect2 and make the
Endterm its Title.
-->
<!ELEMENT Link - - ((%inlineobj.gp;)+) >
<!ATTLIST Link
%commonatts;
Endterm IDREF #IMPLIED
Linkend IDREF #REQUIRED
Type CDATA #IMPLIED
>
<!-- ===================================================================== -->
<!--
Hytimeish link, after Eliot Kimber. TargetDocEnt points
to an entity in the manner of HyTime's Docorsub; this could
be an FPI inside a text entity or could be a data entity.
LinkMode points to a ModeSpec, which may contain
application-specific information and may appear only in
DocInfo and BookInfo.
-->
<!ELEMENT OLink - - ((%inlineobj.gp;)+) >
<!ATTLIST OLink
%commonatts;
TargetDocEnt ENTITY #IMPLIED
LinkMode IDREF #IMPLIED
LocalInfo CDATA #IMPLIED
Type CDATA #IMPLIED
>
<!ELEMENT ModeSpec - - (#PCDATA) -(%ubiq.gp;) >
<!ATTLIST ModeSpec
%commonatts;
Application NOTATION
(%notationtypes;)
#IMPLIED
>
<!--
URL link. To point to a filename, use "file://pathname/filename" as
the value of the URL attribute
-->
<!ELEMENT ULink - - ((%inlineobj.gp;)+) >
<!ATTLIST ULink
%commonatts;
URL CDATA #REQUIRED
Type CDATA #IMPLIED
>
<!-- FUTURE Use
<!ELEMENT FootnoteRef - O EMPTY >
-->
<!ELEMENT FootnoteRef - O (#PCDATA) -(%ubiq.gp;) >
<!ATTLIST FootnoteRef
%commonatts;
Linkend IDREF #REQUIRED
-- FUTURE Use
Label CDATA #IMPLIED
--
Mark CDATA #IMPLIED
>
<!ELEMENT XRef - O EMPTY >
<!ATTLIST XRef
%commonatts;
Endterm IDREF #IMPLIED
Linkend IDREF #REQUIRED
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- DOCINFO -->
<!-- ===================================================================== -->
<!--
DOCINFO elements; some appear in BiblioEntry, too
-->
<!ELEMENT (Author | Editor | OtherCredit) - - ((Honorific | Firstname |
Surname | Lineage | OtherName | Affiliation | AuthorBlurb |
Contrib)+) >
<!ELEMENT (AuthorInitials | Contrib | CorpAuthor | CorpName | Date | Edition |
Firstname | Holder | Honorific | ISBN | InvPartNumber |
Lineage | OtherName | ProductNumber | ReleaseInfo | RevNumber
| RevRemark | Surname | Year ) - - (#PCDATA) >
<!ELEMENT Affiliation - - (ShortAffil?, JobTitle*, OrgName?, OrgDiv*,
Address*) >
<!ELEMENT JobTitle - - (#PCDATA) >
<!-- ShortAffil is for places like ToCs -->
<!ELEMENT ShortAffil - - (#PCDATA) >
<!ELEMENT Copyright - - (Year+, Holder*) >
<!ELEMENT LegalNotice - - (Title?, ( %admonition.gp; | BlockQuote |
%code.example.gp; | %list.gp; | %para.gp;)+) >
<!ELEMENT PrintHistory - - ((%para.gp;)+) >
<!ELEMENT ProductName - - ((%inlinechar.gp;)+) >
<!ATTLIST ProductName
%commonatts;
Class (Service|Trade|Registered|Copyright)
Trade
>
<!-- FUTURE Use
<!ELEMENT RevHistory - - (Revision+) >
-->
<!ELEMENT RevHistory - - (Revision*) >
<!ELEMENT Revision - - (RevNumber, Date, AuthorInitials*, RevRemark?) >
<!ATTLIST (Affiliation | Author | AuthorInitials | Contrib | Copyright |
CorpAuthor | CorpName | Date | Edition | Editor | Firstname |
Holder | Honorific | ISBN | InvPartNumber | JobTitle |
LegalNotice | Lineage | OtherCredit | OtherName | PrintHistory
| ProductNumber | ReleaseInfo | Revision | RevHistory |
RevNumber | RevRemark | ShortAffil | Surname | Year)
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- COMPUTER TERM INLINES -->
<!-- ===================================================================== -->
<!ELEMENT Application - - ((%inlinechar.gp;)+) >
<!ATTLIST Application
%commonatts;
Class (Hardware|Software)
#IMPLIED
MoreInfo (RefEntry|None) None
>
<!ELEMENT Database - - ((%cptrphrase.gp;)+) >
<!ATTLIST Database
%commonatts;
Class (Name|Table|Field|Key1|Key2|Record)
#IMPLIED
MoreInfo (RefEntry|None) None
>
<!ELEMENT Interface - - ((%cptrphrase.gp;)+) >
<!ATTLIST Interface
%commonatts;
Class (Button|Icon|Menu|MenuItem)
#IMPLIED
MoreInfo (RefEntry|None) None
>
<!ELEMENT MediaLabel - - (#PCDATA) >
<!ATTLIST MediaLabel
%commonatts;
Class (Cartridge|CDRom|Disk|Tape)
#IMPLIED
>
<!ELEMENT Parameter - - ((%cptrphrase.gp;)+) >
<!ATTLIST Parameter
%commonatts;
Class (Command|Function|Option)
#IMPLIED
MoreInfo (RefEntry|None) None
>
<!ELEMENT Replaceable - - ((%phrase.gp;)+) >
<!ATTLIST Replaceable
%commonatts;
Class (Command | Function | Option | Parameter)
#IMPLIED
>
<!ELEMENT SystemItem - - ((%cptrphrase.gp;)+) >
<!ATTLIST SystemItem
%commonatts;
Class
(Constant|EnvironVar|Macro|OSname|Prompt|Resource|SystemName)
#IMPLIED
MoreInfo (RefEntry|None) None
>
<!ELEMENT (Command | Literal) - - ((%cptrphrase.gp;)+) >
<!ATTLIST (Command | Literal)
%commonatts;
MoreInfo (RefEntry|None) None
>
<!ELEMENT (Action | Filename | Function | Hardware | KeyCap |
InterfaceDefinition | Property) - - ((%cptrphrase.gp;)+) >
<!ATTLIST (Action | Filename | Function | Hardware | KeyCap |
InterfaceDefinition | Property)
%commonatts;
MoreInfo (RefEntry|None) None
>
<!ELEMENT ComputerOutput - - ((%cptrphrase.gp;)+) >
<!ATTLIST ComputerOutput
%commonatts;
MoreInfo (RefEntry|None) None
>
<!ELEMENT UserInput - - ((%cptrphrase.gp;)+) >
<!ATTLIST UserInput
%commonatts;
MoreInfo (RefEntry|None) None
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!ELEMENT CiteTitle - - ((%inlinechar.gp;)+) >
<!ATTLIST CiteTitle
%commonatts;
-- The kind of title in a published work being cited. --
Pubwork (Article|Book|Chapter|Part|RefEntry|Section)
#IMPLIED
>
<!ELEMENT CiteRefEntry - - (RefEntryTitle, ManVolNum?) >
<!ATTLIST CiteRefEntry
%commonatts;
>
<!ELEMENT Option - - ((%cptrphrase.gp;)+) >
<!ATTLIST Option
%commonatts;
>
<!ELEMENT Quote - - ((%inlinechar.gp;)+) >
<!ATTLIST Quote
%commonatts;
>
<!ELEMENT Trademark - - ((%cptrphrase.gp;)+) >
<!ATTLIST Trademark
%commonatts;
Class (Service|Trade|Registered|Copyright)
Trade
>
<!ELEMENT (Subscript | Superscript) - - ((%phrase.gp; | Emphasis |
Replaceable)+) >
<!ATTLIST (Subscript | Superscript)
%commonatts;
>
<!ELEMENT SGMLTag - - (#PCDATA) >
<!ATTLIST SGMLTag
%commonatts;
Class (Attribute|Element|GenEntity|ParamEntity)
#IMPLIED
>
<!ELEMENT (Abbrev | Acronym | Citation | Classname | Emphasis | ErrorName |
ErrorType | FirstTerm | ForeignPhrase | KeySym | KeyCode |
LineAnnotation | Markup | PubsNumber | ReturnValue |
StructField | StructName | Symbol | Token | Type | VolumeNum |
WordAsWord) - - (#PCDATA) >
<!ATTLIST (Abbrev | Acronym | Citation | Classname | Emphasis | ErrorName |
ErrorType | FirstTerm | ForeignPhrase | KeySym | KeyCode |
LineAnnotation | Markup | PubsNumber | ReturnValue |
StructField | StructName | Symbol | Token | Type | VolumeNum |
WordAsWord)
%commonatts;
>
<!--
The element named Optional is for use in syntax lines, as in a
RefEntry, where optional parameters are shown in square
brackets. Optional should replace those brackets.
-->
<!ELEMENT Optional - - ((%cptrphrase.gp;)+) >
<!ATTLIST Optional
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- NAVIGATION -->
<!-- ===================================================================== -->
<!ELEMENT ToC - - (DocInfo?, (Title, TitleAbbrev?)?, ToCfront*, (ToCpart+ |
ToCchap+), ToCback*) >
<!ATTLIST ToC
%commonatts;
>
<!ELEMENT ToCfront - - ((%inlinechar.gp;)+) >
<!ATTLIST ToCfront
%commonatts;
Label CDATA #IMPLIED
Pagenum CDATA #IMPLIED
>
<!ELEMENT ToCentry - - ((%inlinechar.gp;)+) >
<!ATTLIST ToCentry
%commonatts;
Linkend IDREF #IMPLIED
Pagenum CDATA #IMPLIED
>
<!ELEMENT ToCpart - - (ToCentry+, ToCchap*) >
<!ATTLIST ToCpart
%commonatts;
>
<!ELEMENT ToCchap - - (ToCentry+, ToClevel1*) >
<!ATTLIST ToCchap
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT ToClevel1 - - (ToCentry+, ToClevel2*) >
<!ATTLIST ToClevel1
%commonatts;
>
<!ELEMENT ToClevel2 - - (ToCentry+, ToClevel3*) >
<!ATTLIST ToClevel2
%commonatts;
>
<!ELEMENT ToClevel3 - - (ToCentry+, ToClevel4*) >
<!ATTLIST ToClevel3
%commonatts;
>
<!ELEMENT ToClevel4 - - (ToCentry+, ToClevel5*) >
<!ATTLIST ToClevel4
%commonatts;
>
<!ELEMENT ToClevel5 - - (ToCentry+) >
<!ATTLIST ToClevel5
%commonatts;
>
<!ELEMENT ToCback - - ((%inlinechar.gp;)+) >
<!ATTLIST ToCback
%commonatts;
Label CDATA #IMPLIED
Pagenum CDATA #IMPLIED
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!ELEMENT LoT - - (DocInfo?, (Title, TitleAbbrev?)?, LoTentry+) >
<!ATTLIST LoT
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT LoTentry - - ((%inlinechar.gp;)+ ) >
<!ATTLIST LoTentry
%commonatts;
Pagenum CDATA #IMPLIED
SrcCredit CDATA #IMPLIED
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!ELEMENT Bibliography - - (DocInfo?, (Title, TitleAbbrev?)?,
(%component.gp;)*, (BiblioDiv+ | BiblioEntry+)) >
<!ATTLIST Bibliography
%commonatts;
>
<!ELEMENT BiblioDiv - - ((Title, TitleAbbrev?)?, (%component.gp;)*,
BiblioEntry+) >
<!ATTLIST BiblioDiv
%commonatts;
>
<!--
N.B. this model of BiblioEntry produces info in the order
"title, author"; TEI prefers "author, title".
-->
<!ELEMENT BiblioEntry - - (BiblioMisc?, (ArtHeader | BookBiblio | SeriesInfo),
BiblioMisc?) >
<!ATTLIST BiblioEntry
%commonatts;
>
<!ELEMENT BiblioMisc - - (#PCDATA) >
<!ATTLIST BiblioMisc
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!ELEMENT Glossary - - (DocInfo?, (Title, TitleAbbrev?)?, (%component.gp;)*,
(GlossDiv+ | GlossEntry+), Bibliography?) >
<!ATTLIST Glossary
%commonatts;
>
<!ELEMENT GlossDiv - - (Title, TitleAbbrev?, (%component.gp;)*,
GlossEntry+) >
<!ATTLIST GlossDiv
%commonatts;
>
<!ELEMENT GlossEntry - - (GlossTerm, Acronym?, Abbrev?, (GlossSee |
GlossDef+)) >
<!ATTLIST GlossEntry
%commonatts;
SortAs CDATA #IMPLIED
>
<!ELEMENT GlossTerm - - ((%inlineobj.gp;)+) >
<!ATTLIST GlossTerm
%commonatts;
>
<!ELEMENT GlossDef - - ((Comment | %para.gp; | %list.gp; | %object.gp;)+,
GlossSeeAlso*) >
<!ATTLIST GlossDef
%commonatts;
Subject CDATA #IMPLIED
>
<!ELEMENT GlossSee - O ((%inlineobj.gp;)+) >
<!ATTLIST GlossSee
%commonatts;
OtherTerm IDREF #CONREF
>
<!ELEMENT GlossSeeAlso - O ((%inlineobj.gp;)+) >
<!ATTLIST GlossSeeAlso
%commonatts;
OtherTerm IDREF #CONREF
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!ELEMENT (SetIndex | Index) - - (DocInfo?, (Title, TitleAbbrev?)?,
(%component.gp;)*, (IndexDiv+ | IndexEntry+)) -(%ndxterm.gp;) >
<!ATTLIST (SetIndex | Index)
%commonatts;
>
<!--
The IndexDiv model allows a SegmentedList as the content of
IndexDiv so SegmentedList can be used for permuted indices.
-->
<!ELEMENT IndexDiv - - ((Title, TitleAbbrev?)?, ((Anchor | Comment |
%links.gp; | ItemizedList | OrderedList | VariableList |
%object.gp; | %para.gp;)*, (IndexEntry+ | SegmentedList))) >
<!ATTLIST IndexDiv
%commonatts;
>
<!--
IndexEntries appear in the Index, not the text.
-->
<!ELEMENT IndexEntry - - (%primsee;, (%secsee;)*) >
<!ATTLIST IndexEntry
%commonatts;
>
<!ELEMENT PrimaryIE - - ((%inlinechar.gp;)+) >
<!ATTLIST PrimaryIE
%commonatts;
Linkends IDREFS #IMPLIED
>
<!ELEMENT SecondaryIE - - ((%inlinechar.gp;)+) >
<!ATTLIST SecondaryIE
%commonatts;
Linkends IDREFS #IMPLIED
>
<!ELEMENT TertiaryIE - - ((%inlinechar.gp;)+) >
<!ATTLIST TertiaryIE
%commonatts;
Linkends IDREFS #IMPLIED
>
<!ELEMENT SeeIE - - ((%inlinechar.gp;)+) >
<!ATTLIST SeeIE
%commonatts;
Linkend IDREF #IMPLIED
>
<!ELEMENT SeeAlsoIE - - ((%inlinechar.gp;)+) >
<!ATTLIST SeeAlsoIE
%commonatts;
Linkends IDREFS #IMPLIED
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- REFERENCE ENTRIES -->
<!-- ===================================================================== -->
<!ELEMENT RefEntry - - (DocInfo?, RefMeta?, (Comment | %links.gp;)*,
RefNameDiv, RefSynopsisDiv?, RefSect1+) +(%ubiq.gp;) >
<!ATTLIST RefEntry
%commonatts;
>
<!ELEMENT RefMeta - - (RefEntryTitle, ManVolNum?, RefMiscInfo*) -(BeginPage) >
<!ATTLIST RefMeta
%commonatts;
>
<!ELEMENT RefEntryTitle - - ((%inlinechar.gp;)+) >
<!ATTLIST RefEntryTitle
%commonatts;
>
<!ELEMENT ManVolNum - - (#PCDATA) >
<!ATTLIST ManVolNum
%commonatts;
>
<!ELEMENT RefMiscInfo - - (#PCDATA) >
<!ATTLIST RefMiscInfo
%commonatts;
Class CDATA #IMPLIED
>
<!ELEMENT RefNameDiv - - (RefDescriptor?, RefName+, RefPurpose, RefClass*,
(Comment | %links.gp;)*) >
<!ATTLIST RefNameDiv
%commonatts;
>
<!ELEMENT RefDescriptor - - (#PCDATA) >
<!ATTLIST RefDescriptor
%commonatts;
>
<!ELEMENT RefName - - ((#PCDATA | %computerterms.gp;)+) >
<!ATTLIST RefName
%commonatts;
>
<!ELEMENT RefPurpose - - ((%inlinechar.gp;)+) >
<!ATTLIST RefPurpose
%commonatts;
>
<!ELEMENT RefClass - - ((%refclass.gp;)+) >
<!ATTLIST RefClass
%commonatts;
>
<!ELEMENT RefSynopsisDiv - - ((Title, TitleAbbrev?)?, (((%synop.gp;)+,
RefSect2*) | (RefSect2+))) >
<!ATTLIST RefSynopsisDiv
%commonatts;
>
<!ELEMENT RefSect1 - - (Title, TitleAbbrev?, (((%component.gp;)+, RefSect2*) |
RefSect2+)) >
<!ATTLIST RefSect1
%commonatts;
>
<!ELEMENT RefSect2 - - (Title, TitleAbbrev?, (((%component.gp;)+, RefSect3*) |
RefSect3+)) >
<!ATTLIST RefSect2
%commonatts;
>
<!ELEMENT RefSect3 - - (Title, TitleAbbrev?, (%component.gp;)+) >
<!ATTLIST RefSect3
%commonatts;
>
<!ELEMENT Synopsis - - ((LineAnnotation | %inlinechar.gp; | Graphic)+) >
<!ATTLIST Synopsis
%commonatts;
Format NOTATION
(linespecific) linespecific
Label CDATA #IMPLIED
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- Example command synopsis in typical UNIX(tm) format:
rm [-f] [-r] [-i] [-] {filename|dirname}...
^ ^ ^ ^ ^ ^ ^ ^ ^
| | | | | | | | |
| optional args | | | repeat indicator
| (contain options)| | |
| | | second child of group
command name | |
| first child of group
|
required repeatable group
SGML source for this example:
<CMDSYNOPSIS>
<COMMAND>rm</COMMAND>
<ARG Choice="opt">-f</ARG> (<OPTION> not required for arg
contents unless doing extra-special
processing)
<ARG Choice="opt">-r</ARG>
<ARG Choice="opt">-i</ARG>
<ARG Choice="opt">-</ARG> (UNIX(tm) synopsis format or other
format can be generated)
<GROUP Choice="req" Rep="repeat">
<REPLACEABLE>filename</REPLACEABLE>
<REPLACEABLE>dirname</REPLACEABLE>
</GROUP>
</CMDSYNOPSIS>
-->
<!ELEMENT CmdSynopsis - - ((Arg | Group)*, Command, (Arg | Group)*,
SynopFragment*) >
<!ATTLIST CmdSynopsis
%commonatts;
Label CDATA #IMPLIED
Sepchar CDATA " "
>
<!ELEMENT Arg - - ((#PCDATA | Arg | Group | Option | SynopFragmentRef |
Replaceable)+) >
<!ATTLIST Arg
%commonatts;
%argchcatt;
%repatt;
>
<!ELEMENT Group - - ((Arg | Group | SynopFragmentRef | Replaceable)+) >
<!ATTLIST Group
%commonatts;
%grpchcatt;
%repatt;
>
<!ELEMENT SynopFragmentRef - - RCDATA >
<!ATTLIST SynopFragmentRef
%commonatts;
Linkend IDREF #REQUIRED -- to Fragment --
>
<!ELEMENT SynopFragment - - ((Arg | Group)+) >
<!ATTLIST SynopFragment
-- commonatts, but Id is required --
Id ID #REQUIRED
Lang CDATA #IMPLIED
Remap CDATA #IMPLIED
Role CDATA #IMPLIED
XRefLabel CDATA #IMPLIED
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!ELEMENT FuncSynopsis - - (FuncSynopsisInfo?, ((FuncDef, (void | varargs |
ParamDef+)))+ ) >
<!ATTLIST FuncSynopsis
%commonatts;
Label CDATA #IMPLIED
>
<!ELEMENT FuncSynopsisInfo - - ((LineAnnotation | %cptrphrase.gp;)* ) >
<!ATTLIST FuncSynopsisInfo
%commonatts;
Format NOTATION
(linespecific) linespecific
>
<!ELEMENT FuncDef - - ((#PCDATA | Replaceable | Function)*) >
<!ATTLIST FuncDef
%commonatts;
>
<!ELEMENT void - O EMPTY >
<!ATTLIST void
%commonatts;
>
<!ELEMENT varargs - O EMPTY >
<!ATTLIST varargs
%commonatts;
>
<!--
Processing assumes that only one Parameter will appear in a
ParamDef, and that funcparams will be used at most once, for
providing information on the "inner parameters" for parameters
that are pointers to functions.
-->
<!ELEMENT ParamDef - - ((#PCDATA | Replaceable | Parameter | FuncParams)*) >
<!ATTLIST ParamDef
%commonatts;
>
<!ELEMENT FuncParams - - ((%cptrphrase.gp;)*) >
<!ATTLIST FuncParams
%commonatts;
>
<!-- ===================================================================== -->
<!-- ##################################################################### -->
<!-- ===================================================================== -->
<!-- ARTICLE -->
<!-- ===================================================================== -->
<!-- This Article model is derived from the MAJOUR header DTD.
CHANGES from MAJOUR:
- Gnomic element names (oad, onm, odv, oid, kwdg, cgn, cgs, cnm . . .)
have been replaced by understandable ones.
- Quite a few elements have been dropped; others that already exist
in Docbook have been substituted for the Majour ones.
- Some of the modularity has been suppressed, empty elements
containing pointers have been eliminated, and occurrence
indicators have been changed ad lib.
- Affiliation has been nested inside Author, instead of inside
AuthorGroup.
- JournalInfo info has been folded into BookBiblio inside BookInfo,
cf. also BiblioEntry. Some of this info lies elsewhere in
the Majour model.
A journal or anthology is a Book in Docbook, and the meta for
a journal is permitted in BookInfo. Articles (Chapters)
within a journal or anthology have ArtHeaders, which may
contain the same info.
-->
<!ELEMENT Article - - (ArtHeader, (%sect1.gp;), ((%nav.gp;) | (%appendix.gp;)
| Ackno)*) +(%ubiq.gp;) >
<!ATTLIST Article
%commonatts;
ParentBook IDREF #IMPLIED
>
<!--
ArtPageNums are the page numbers of the article as published.
-->
<!ELEMENT ArtHeader - - (Title, TitleAbbrev?, Subtitle?, AuthorGroup+,
BookBiblio?, ArtPageNums, Abstract*, ConfGroup*, (ContractNum
| ContractSponsor)*) >
<!ATTLIST ArtHeader
%commonatts;
>
<!ELEMENT ArtPageNums - - (#PCDATA) >
<!ELEMENT Ackno - - (#PCDATA) >
<!ELEMENT Address - - (Street | POB | Postcode | City | State | Country |
Phone | Fax | Email | OtherAddr)*>
<!ELEMENT (Street | POB | Postcode | City | State | Country | Phone | Fax |
Email | OtherAddr) - - (#PCDATA) >
<!ELEMENT (OrgName | OrgDiv) - - (#PCDATA) >
<!ELEMENT AuthorGroup - - ((Author | Editor | Collab | CorpAuthor |
OtherCredit)+) >
<!ELEMENT Collab - - (CollabName, Affiliation*) >
<!ELEMENT CollabName - - (#PCDATA) >
<!ELEMENT ConfDates - - (#PCDATA) >
<!ELEMENT ConfGroup - - ((ConfDates | ConfTitle | ConfNum | Address |
ConfSponsor)*) >
<!ELEMENT ConfNum - - (#PCDATA) >
<!ELEMENT ConfSponsor - - (#PCDATA) >
<!ELEMENT ConfTitle - - (#PCDATA) >
<!ELEMENT ContractNum - - (#PCDATA) >
<!ELEMENT ContractSponsor - - (#PCDATA) >
<!ELEMENT ISSN - - (#PCDATA) >
<!ELEMENT IssueNum - - (#PCDATA) >
<!ELEMENT PageNums - - (#PCDATA) >
<!ELEMENT PubDate - - (#PCDATA) >
<!ELEMENT Publisher - - (PublisherName, Address*) >
<!ELEMENT PublisherName - - (#PCDATA) >
<!ELEMENT SeriesVolNums - - (#PCDATA) >
<!ATTLIST (Ackno | Address | ArtPageNums | AuthorGroup | City | Collab |
CollabName | ConfDates | ConfGroup | ConfNum | ConfSponsor |
ConfTitle | ContractNum | ContractSponsor | Country | Email |
Fax | ISSN | IssueNum | OrgDiv | OrgName | OtherAddr | POB |
PageNums | Phone | Postcode | PubDate | Publisher |
PublisherName | SeriesVolNums | State | Street)
%commonatts;
>
<!-- ===================================================================== -->
<!-- End of the DocBook DTD -->
<!-- ===================================================================== -->
|