milkfarm-onix 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. data/CHANGELOG +136 -0
  2. data/README.markdown +40 -0
  3. data/TODO +14 -0
  4. data/dtd/2.1r3/iso-amsa.ent +173 -0
  5. data/dtd/2.1r3/iso-amsb.ent +146 -0
  6. data/dtd/2.1r3/iso-amsc.ent +49 -0
  7. data/dtd/2.1r3/iso-amsn.ent +117 -0
  8. data/dtd/2.1r3/iso-amso.ent +77 -0
  9. data/dtd/2.1r3/iso-amsr.ent +205 -0
  10. data/dtd/2.1r3/iso-box.ent +67 -0
  11. data/dtd/2.1r3/iso-cyr1.ent +94 -0
  12. data/dtd/2.1r3/iso-cyr2.ent +53 -0
  13. data/dtd/2.1r3/iso-dia.ent +41 -0
  14. data/dtd/2.1r3/iso-grk3.ent +70 -0
  15. data/dtd/2.1r3/iso-lat1.ent +89 -0
  16. data/dtd/2.1r3/iso-lat2.ent +148 -0
  17. data/dtd/2.1r3/iso-mfrk.ent +79 -0
  18. data/dtd/2.1r3/iso-mopf.ent +53 -0
  19. data/dtd/2.1r3/iso-mscr.ent +79 -0
  20. data/dtd/2.1r3/iso-num.ent +103 -0
  21. data/dtd/2.1r3/iso-num.old.ent +103 -0
  22. data/dtd/2.1r3/iso-pub.ent +110 -0
  23. data/dtd/2.1r3/iso-tech.ent +183 -0
  24. data/dtd/2.1r3/onix-international.dtd +1012 -0
  25. data/dtd/2.1r3/onix-xhtml.elt +672 -0
  26. data/dtd/2.1r3/reference.elt +4758 -0
  27. data/dtd/2.1r3/xhtml-special.ent +79 -0
  28. data/dtd/2.1r3/xhtml-symbol.ent +242 -0
  29. data/lib/onix/addressee_identifier.rb +12 -0
  30. data/lib/onix/apa_product.rb +731 -0
  31. data/lib/onix/audience_range.rb +26 -0
  32. data/lib/onix/common.rb +26 -0
  33. data/lib/onix/contributor.rb +27 -0
  34. data/lib/onix/header.rb +46 -0
  35. data/lib/onix/imprint.rb +15 -0
  36. data/lib/onix/language.rb +14 -0
  37. data/lib/onix/lists/audience_code.rb +17 -0
  38. data/lib/onix/lists/country_code.rb +257 -0
  39. data/lib/onix/lists/language_code.rb +498 -0
  40. data/lib/onix/lists/language_role.rb +18 -0
  41. data/lib/onix/lists/notification_type.rb +19 -0
  42. data/lib/onix/lists/product_availability.rb +32 -0
  43. data/lib/onix/lists/product_form.rb +99 -0
  44. data/lib/onix/lists/product_form_detail.rb +157 -0
  45. data/lib/onix/market_representation.rb +19 -0
  46. data/lib/onix/measure.rb +14 -0
  47. data/lib/onix/media_file.rb +16 -0
  48. data/lib/onix/normaliser.rb +187 -0
  49. data/lib/onix/other_text.rb +17 -0
  50. data/lib/onix/price.rb +21 -0
  51. data/lib/onix/product.rb +73 -0
  52. data/lib/onix/product_identifier.rb +13 -0
  53. data/lib/onix/publisher.rb +16 -0
  54. data/lib/onix/reader.rb +187 -0
  55. data/lib/onix/sales_restriction.rb +12 -0
  56. data/lib/onix/sender_identifier.rb +14 -0
  57. data/lib/onix/series.rb +57 -0
  58. data/lib/onix/series_identifier.rb +13 -0
  59. data/lib/onix/simple_product.rb +47 -0
  60. data/lib/onix/sl_product.rb +131 -0
  61. data/lib/onix/stock.rb +15 -0
  62. data/lib/onix/subject.rb +16 -0
  63. data/lib/onix/supply_detail.rb +32 -0
  64. data/lib/onix/title.rb +17 -0
  65. data/lib/onix/website.rb +14 -0
  66. data/lib/onix/writer.rb +86 -0
  67. data/lib/onix.rb +114 -0
  68. data/spec/apa_product_spec.rb +59 -0
  69. data/spec/audience_range_spec.rb +46 -0
  70. data/spec/contributor_spec.rb +42 -0
  71. data/spec/header_spec.rb +123 -0
  72. data/spec/imprint_spec.rb +39 -0
  73. data/spec/language_spec.rb +42 -0
  74. data/spec/market_representation_spec.rb +41 -0
  75. data/spec/measure_spec.rb +43 -0
  76. data/spec/media_file_spec.rb +42 -0
  77. data/spec/normaliser_spec.rb +125 -0
  78. data/spec/other_text_spec.rb +40 -0
  79. data/spec/price_spec.rb +40 -0
  80. data/spec/product_identifier_spec.rb +40 -0
  81. data/spec/product_spec.rb +96 -0
  82. data/spec/publisher_spec.rb +38 -0
  83. data/spec/reader_spec.rb +131 -0
  84. data/spec/sales_restriction_spec.rb +35 -0
  85. data/spec/sender_identifier.rb +40 -0
  86. data/spec/series_identifier_spec.rb +38 -0
  87. data/spec/series_spec.rb +34 -0
  88. data/spec/sl_product_spec.rb +48 -0
  89. data/spec/stock_spec.rb +44 -0
  90. data/spec/subject_spec.rb +40 -0
  91. data/spec/supply_detail_spec.rb +53 -0
  92. data/spec/title_spec.rb +43 -0
  93. data/spec/website_spec.rb +41 -0
  94. data/spec/writer_spec.rb +81 -0
  95. data/support/entities.txt +1499 -0
  96. data/support/extract.rb +25 -0
  97. data/support/switch-onix-2.1-short-to-reference.xsl +23 -0
  98. data/support/switch-onix-tagnames-1.1.xsl +25 -0
  99. data/support/switch-onix-tagnames-2.0.xsl +37 -0
  100. metadata +209 -0
@@ -0,0 +1,103 @@
1
+
2
+ <!--
3
+ File isonum.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1986
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY amp "&#x26;#x00026;" ><!--=ampersand -->
29
+ <!ENTITY apos "&#x00027;" ><!--=apostrophe -->
30
+ <!ENTITY ast "&#x0002A;" ><!--/ast B: =asterisk -->
31
+ <!ENTITY brvbar "&#x000A6;" ><!--=broken (vertical) bar -->
32
+ <!ENTITY bsol "&#x0005C;" ><!--/backslash =reverse solidus -->
33
+ <!ENTITY cent "&#x000A2;" ><!--=cent sign -->
34
+ <!ENTITY colon "&#x0003A;" ><!--/colon P: -->
35
+ <!ENTITY comma "&#x0002C;" ><!--P: =comma -->
36
+ <!ENTITY commat "&#x00040;" ><!--=commercial at -->
37
+ <!ENTITY copy "&#x000A9;" ><!--=copyright sign -->
38
+ <!ENTITY curren "&#x000A4;" ><!--=general currency sign -->
39
+ <!ENTITY darr "&#x02193;" ><!--/downarrow A: =downward arrow -->
40
+ <!ENTITY deg "&#x000B0;" ><!--=degree sign -->
41
+ <!ENTITY divide "&#x000F7;" ><!--/div B: =divide sign -->
42
+ <!ENTITY dollar "&#x00024;" ><!--=dollar sign -->
43
+ <!ENTITY equals "&#x0003D;" ><!--=equals sign R: -->
44
+ <!ENTITY excl "&#x00021;" ><!--=exclamation mark -->
45
+ <!ENTITY frac12 "&#x000BD;" ><!--=fraction one-half -->
46
+ <!ENTITY frac14 "&#x000BC;" ><!--=fraction one-quarter -->
47
+ <!ENTITY frac18 "&#x0215B;" ><!--=fraction one-eighth -->
48
+ <!ENTITY frac34 "&#x000BE;" ><!--=fraction three-quarters -->
49
+ <!ENTITY frac38 "&#x0215C;" ><!--=fraction three-eighths -->
50
+ <!ENTITY frac58 "&#x0215D;" ><!--=fraction five-eighths -->
51
+ <!ENTITY frac78 "&#x0215E;" ><!--=fraction seven-eighths -->
52
+ <!ENTITY gt "&#x0003E;" ><!--=greater-than sign R: -->
53
+ <!ENTITY half "&#x000BD;" ><!--=fraction one-half -->
54
+ <!ENTITY horbar "&#x02015;" ><!--=horizontal bar -->
55
+ <!ENTITY hyphen "&#x02010;" ><!--=hyphen -->
56
+ <!ENTITY iexcl "&#x000A1;" ><!--=inverted exclamation mark -->
57
+ <!ENTITY iquest "&#x000BF;" ><!--=inverted question mark -->
58
+ <!ENTITY laquo "&#x000AB;" ><!--=angle quotation mark, left -->
59
+ <!ENTITY larr "&#x02190;" ><!--/leftarrow /gets A: =leftward arrow -->
60
+ <!ENTITY lcub "&#x0007B;" ><!--/lbrace O: =left curly bracket -->
61
+ <!ENTITY ldquo "&#x0201C;" ><!--=double quotation mark, left -->
62
+ <!ENTITY lowbar "&#x0005F;" ><!--=low line -->
63
+ <!ENTITY lpar "&#x00028;" ><!--O: =left parenthesis -->
64
+ <!ENTITY lsqb "&#x0005B;" ><!--/lbrack O: =left square bracket -->
65
+ <!ENTITY lsquo "&#x02018;" ><!--=single quotation mark, left -->
66
+ <!ENTITY lt "&#x26;#x0003C;" ><!--=less-than sign R: -->
67
+ <!ENTITY micro "&#x000B5;" ><!--=micro sign -->
68
+ <!ENTITY middot "&#x000B7;" ><!--/centerdot B: =middle dot -->
69
+ <!ENTITY nbsp "&#x000A0;" ><!--=no break (required) space -->
70
+ <!ENTITY not "&#x000AC;" ><!--/neg /lnot =not sign -->
71
+ <!ENTITY num "&#x00023;" ><!--=number sign -->
72
+ <!ENTITY ohm "&#x02126;" ><!--=ohm sign -->
73
+ <!ENTITY ordf "&#x000AA;" ><!--=ordinal indicator, feminine -->
74
+ <!ENTITY ordm "&#x000BA;" ><!--=ordinal indicator, masculine -->
75
+ <!ENTITY para "&#x000B6;" ><!--=pilcrow (paragraph sign) -->
76
+ <!ENTITY percnt "&#x00025;" ><!--=percent sign -->
77
+ <!ENTITY period "&#x0002E;" ><!--=full stop, period -->
78
+ <!ENTITY plus "&#x0002B;" ><!--=plus sign B: -->
79
+ <!ENTITY plusmn "&#x000B1;" ><!--/pm B: =plus-or-minus sign -->
80
+ <!ENTITY pound "&#x000A3;" ><!--=pound sign -->
81
+ <!ENTITY quest "&#x0003F;" ><!--=question mark -->
82
+ <!ENTITY quot "&#x00022;" ><!--=quotation mark -->
83
+ <!ENTITY raquo "&#x000BB;" ><!--=angle quotation mark, right -->
84
+ <!ENTITY rarr "&#x02192;" ><!--/rightarrow /to A: =rightward arrow -->
85
+ <!ENTITY rcub "&#x0007D;" ><!--/rbrace C: =right curly bracket -->
86
+ <!ENTITY rdquo "&#x0201D;" ><!--=double quotation mark, right -->
87
+ <!ENTITY reg "&#x000AE;" ><!--/circledR =registered sign -->
88
+ <!ENTITY rpar "&#x00029;" ><!--C: =right parenthesis -->
89
+ <!ENTITY rsqb "&#x0005D;" ><!--/rbrack C: =right square bracket -->
90
+ <!ENTITY rsquo "&#x02019;" ><!--=single quotation mark, right -->
91
+ <!ENTITY sect "&#x000A7;" ><!--=section sign -->
92
+ <!ENTITY semi "&#x0003B;" ><!--=semicolon P: -->
93
+ <!ENTITY shy "&#x000AD;" ><!--=soft hyphen -->
94
+ <!ENTITY sol "&#x0002F;" ><!--=solidus -->
95
+ <!ENTITY sung "&#x0266A;" ><!--=music note (sung text sign) -->
96
+ <!ENTITY sup1 "&#x000B9;" ><!--=superscript one -->
97
+ <!ENTITY sup2 "&#x000B2;" ><!--=superscript two -->
98
+ <!ENTITY sup3 "&#x000B3;" ><!--=superscript three -->
99
+ <!ENTITY times "&#x000D7;" ><!--/times B: =multiply sign -->
100
+ <!ENTITY trade "&#x02122;" ><!--=trade mark sign -->
101
+ <!ENTITY uarr "&#x02191;" ><!--/uparrow A: =upward arrow -->
102
+ <!ENTITY verbar "&#x0007C;" ><!--/vert =vertical bar -->
103
+ <!ENTITY yen "&#x000A5;" ><!--/yen =yen sign -->
@@ -0,0 +1,103 @@
1
+
2
+ <!--
3
+ File isonum.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1986
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY amp "&#x26;&#x00026;" ><!--=ampersand -->
29
+ <!ENTITY apos "&#x00027;" ><!--=apostrophe -->
30
+ <!ENTITY ast "&#x0002A;" ><!--/ast B: =asterisk -->
31
+ <!ENTITY brvbar "&#x000A6;" ><!--=broken (vertical) bar -->
32
+ <!ENTITY bsol "&#x0005C;" ><!--/backslash =reverse solidus -->
33
+ <!ENTITY cent "&#x000A2;" ><!--=cent sign -->
34
+ <!ENTITY colon "&#x0003A;" ><!--/colon P: -->
35
+ <!ENTITY comma "&#x0002C;" ><!--P: =comma -->
36
+ <!ENTITY commat "&#x00040;" ><!--=commercial at -->
37
+ <!ENTITY copy "&#x000A9;" ><!--=copyright sign -->
38
+ <!ENTITY curren "&#x000A4;" ><!--=general currency sign -->
39
+ <!ENTITY darr "&#x02193;" ><!--/downarrow A: =downward arrow -->
40
+ <!ENTITY deg "&#x000B0;" ><!--=degree sign -->
41
+ <!ENTITY divide "&#x000F7;" ><!--/div B: =divide sign -->
42
+ <!ENTITY dollar "&#x00024;" ><!--=dollar sign -->
43
+ <!ENTITY equals "&#x0003D;" ><!--=equals sign R: -->
44
+ <!ENTITY excl "&#x00021;" ><!--=exclamation mark -->
45
+ <!ENTITY frac12 "&#x000BD;" ><!--=fraction one-half -->
46
+ <!ENTITY frac14 "&#x000BC;" ><!--=fraction one-quarter -->
47
+ <!ENTITY frac18 "&#x0215B;" ><!--=fraction one-eighth -->
48
+ <!ENTITY frac34 "&#x000BE;" ><!--=fraction three-quarters -->
49
+ <!ENTITY frac38 "&#x0215C;" ><!--=fraction three-eighths -->
50
+ <!ENTITY frac58 "&#x0215D;" ><!--=fraction five-eighths -->
51
+ <!ENTITY frac78 "&#x0215E;" ><!--=fraction seven-eighths -->
52
+ <!ENTITY gt "&#x0003E;" ><!--=greater-than sign R: -->
53
+ <!ENTITY half "&#x000BD;" ><!--=fraction one-half -->
54
+ <!ENTITY horbar "&#x02015;" ><!--=horizontal bar -->
55
+ <!ENTITY hyphen "&#x02010;" ><!--=hyphen -->
56
+ <!ENTITY iexcl "&#x000A1;" ><!--=inverted exclamation mark -->
57
+ <!ENTITY iquest "&#x000BF;" ><!--=inverted question mark -->
58
+ <!ENTITY laquo "&#x000AB;" ><!--=angle quotation mark, left -->
59
+ <!ENTITY larr "&#x02190;" ><!--/leftarrow /gets A: =leftward arrow -->
60
+ <!ENTITY lcub "&#x0007B;" ><!--/lbrace O: =left curly bracket -->
61
+ <!ENTITY ldquo "&#x0201C;" ><!--=double quotation mark, left -->
62
+ <!ENTITY lowbar "&#x0005F;" ><!--=low line -->
63
+ <!ENTITY lpar "&#x00028;" ><!--O: =left parenthesis -->
64
+ <!ENTITY lsqb "&#x0005B;" ><!--/lbrack O: =left square bracket -->
65
+ <!ENTITY lsquo "&#x02018;" ><!--=single quotation mark, left -->
66
+ <!ENTITY lt "&#x26;&#x0003C;" ><!--=less-than sign R: -->
67
+ <!ENTITY micro "&#x000B5;" ><!--=micro sign -->
68
+ <!ENTITY middot "&#x000B7;" ><!--/centerdot B: =middle dot -->
69
+ <!ENTITY nbsp "&#x000A0;" ><!--=no break (required) space -->
70
+ <!ENTITY not "&#x000AC;" ><!--/neg /lnot =not sign -->
71
+ <!ENTITY num "&#x00023;" ><!--=number sign -->
72
+ <!ENTITY ohm "&#x02126;" ><!--=ohm sign -->
73
+ <!ENTITY ordf "&#x000AA;" ><!--=ordinal indicator, feminine -->
74
+ <!ENTITY ordm "&#x000BA;" ><!--=ordinal indicator, masculine -->
75
+ <!ENTITY para "&#x000B6;" ><!--=pilcrow (paragraph sign) -->
76
+ <!ENTITY percnt "&#x00025;" ><!--=percent sign -->
77
+ <!ENTITY period "&#x0002E;" ><!--=full stop, period -->
78
+ <!ENTITY plus "&#x0002B;" ><!--=plus sign B: -->
79
+ <!ENTITY plusmn "&#x000B1;" ><!--/pm B: =plus-or-minus sign -->
80
+ <!ENTITY pound "&#x000A3;" ><!--=pound sign -->
81
+ <!ENTITY quest "&#x0003F;" ><!--=question mark -->
82
+ <!ENTITY quot "&#x00022;" ><!--=quotation mark -->
83
+ <!ENTITY raquo "&#x000BB;" ><!--=angle quotation mark, right -->
84
+ <!ENTITY rarr "&#x02192;" ><!--/rightarrow /to A: =rightward arrow -->
85
+ <!ENTITY rcub "&#x0007D;" ><!--/rbrace C: =right curly bracket -->
86
+ <!ENTITY rdquo "&#x0201D;" ><!--=double quotation mark, right -->
87
+ <!ENTITY reg "&#x000AE;" ><!--/circledR =registered sign -->
88
+ <!ENTITY rpar "&#x00029;" ><!--C: =right parenthesis -->
89
+ <!ENTITY rsqb "&#x0005D;" ><!--/rbrack C: =right square bracket -->
90
+ <!ENTITY rsquo "&#x02019;" ><!--=single quotation mark, right -->
91
+ <!ENTITY sect "&#x000A7;" ><!--=section sign -->
92
+ <!ENTITY semi "&#x0003B;" ><!--=semicolon P: -->
93
+ <!ENTITY shy "&#x000AD;" ><!--=soft hyphen -->
94
+ <!ENTITY sol "&#x0002F;" ><!--=solidus -->
95
+ <!ENTITY sung "&#x0266A;" ><!--=music note (sung text sign) -->
96
+ <!ENTITY sup1 "&#x000B9;" ><!--=superscript one -->
97
+ <!ENTITY sup2 "&#x000B2;" ><!--=superscript two -->
98
+ <!ENTITY sup3 "&#x000B3;" ><!--=superscript three -->
99
+ <!ENTITY times "&#x000D7;" ><!--/times B: =multiply sign -->
100
+ <!ENTITY trade "&#x02122;" ><!--=trade mark sign -->
101
+ <!ENTITY uarr "&#x02191;" ><!--/uparrow A: =upward arrow -->
102
+ <!ENTITY verbar "&#x0007C;" ><!--/vert =vertical bar -->
103
+ <!ENTITY yen "&#x000A5;" ><!--/yen =yen sign -->
@@ -0,0 +1,110 @@
1
+
2
+ <!--
3
+ File isopub.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1986
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY blank "&#x02423;" ><!--=significant blank symbol -->
29
+ <!ENTITY blk12 "&#x02592;" ><!--=50% shaded block -->
30
+ <!ENTITY blk14 "&#x02591;" ><!--=25% shaded block -->
31
+ <!ENTITY blk34 "&#x02593;" ><!--=75% shaded block -->
32
+ <!ENTITY block "&#x02588;" ><!--=full block -->
33
+ <!ENTITY bull "&#x02022;" ><!--/bullet B: =round bullet, filled -->
34
+ <!ENTITY caret "&#x02041;" ><!--=caret (insertion mark) -->
35
+ <!ENTITY check "&#x02713;" ><!--/checkmark =tick, check mark -->
36
+ <!ENTITY cir "&#x025CB;" ><!--/circ B: =circle, open -->
37
+ <!ENTITY clubs "&#x02663;" ><!--/clubsuit =club suit symbol -->
38
+ <!ENTITY copysr "&#x02117;" ><!--=sound recording copyright sign -->
39
+ <!ENTITY cross "&#x02717;" ><!--=ballot cross -->
40
+ <!ENTITY dagger "&#x02020;" ><!--/dagger B: =dagger -->
41
+ <!ENTITY Dagger "&#x02021;" ><!--/ddagger B: =double dagger -->
42
+ <!ENTITY dash "&#x02010;" ><!--=hyphen (true graphic) -->
43
+ <!ENTITY diams "&#x02666;" ><!--/diamondsuit =diamond suit symbol -->
44
+ <!ENTITY dlcrop "&#x0230D;" ><!--downward left crop mark -->
45
+ <!ENTITY drcrop "&#x0230C;" ><!--downward right crop mark -->
46
+ <!ENTITY dtri "&#x025BF;" ><!--/triangledown =down triangle, open -->
47
+ <!ENTITY dtrif "&#x025BE;" ><!--/blacktriangledown =dn tri, filled -->
48
+ <!ENTITY emsp "&#x02003;" ><!--=em space -->
49
+ <!ENTITY emsp13 "&#x02004;" ><!--=1/3-em space -->
50
+ <!ENTITY emsp14 "&#x02005;" ><!--=1/4-em space -->
51
+ <!ENTITY ensp "&#x02002;" ><!--=en space (1/2-em) -->
52
+ <!ENTITY female "&#x02640;" ><!--=female symbol -->
53
+ <!ENTITY ffilig "&#x0FB03;" ><!--small ffi ligature -->
54
+ <!ENTITY fflig "&#x0FB00;" ><!--small ff ligature -->
55
+ <!ENTITY ffllig "&#x0FB04;" ><!--small ffl ligature -->
56
+ <!ENTITY filig "&#x0FB01;" ><!--small fi ligature -->
57
+ <!ENTITY flat "&#x0266D;" ><!--/flat =musical flat -->
58
+ <!ENTITY fllig "&#x0FB02;" ><!--small fl ligature -->
59
+ <!ENTITY frac13 "&#x02153;" ><!--=fraction one-third -->
60
+ <!ENTITY frac15 "&#x02155;" ><!--=fraction one-fifth -->
61
+ <!ENTITY frac16 "&#x02159;" ><!--=fraction one-sixth -->
62
+ <!ENTITY frac23 "&#x02154;" ><!--=fraction two-thirds -->
63
+ <!ENTITY frac25 "&#x02156;" ><!--=fraction two-fifths -->
64
+ <!ENTITY frac35 "&#x02157;" ><!--=fraction three-fifths -->
65
+ <!ENTITY frac45 "&#x02158;" ><!--=fraction four-fifths -->
66
+ <!ENTITY frac56 "&#x0215A;" ><!--=fraction five-sixths -->
67
+ <!ENTITY hairsp "&#x0200A;" ><!--=hair space -->
68
+ <!ENTITY hellip "&#x02026;" ><!--=ellipsis (horizontal) -->
69
+ <!ENTITY hybull "&#x02043;" ><!--rectangle, filled (hyphen bullet) -->
70
+ <!ENTITY incare "&#x02105;" ><!--=in-care-of symbol -->
71
+ <!ENTITY ldquor "&#x0201E;" ><!--=rising dbl quote, left (low) -->
72
+ <!ENTITY lhblk "&#x02584;" ><!--=lower half block -->
73
+ <!ENTITY loz "&#x025CA;" ><!--/lozenge - lozenge or total mark -->
74
+ <!ENTITY lozf "&#x029EB;" ><!--/blacklozenge - lozenge, filled -->
75
+ <!ENTITY lsquor "&#x0201A;" ><!--=rising single quote, left (low) -->
76
+ <!ENTITY ltri "&#x025C3;" ><!--/triangleleft B: l triangle, open -->
77
+ <!ENTITY ltrif "&#x025C2;" ><!--/blacktriangleleft R: =l tri, filled -->
78
+ <!ENTITY male "&#x02642;" ><!--=male symbol -->
79
+ <!ENTITY malt "&#x02720;" ><!--/maltese =maltese cross -->
80
+ <!ENTITY marker "&#x025AE;" ><!--=histogram marker -->
81
+ <!ENTITY mdash "&#x02014;" ><!--=em dash -->
82
+ <!ENTITY mldr "&#x02026;" ><!--em leader -->
83
+ <!ENTITY natur "&#x0266E;" ><!--/natural - music natural -->
84
+ <!ENTITY ndash "&#x02013;" ><!--=en dash -->
85
+ <!ENTITY nldr "&#x02025;" ><!--=double baseline dot (en leader) -->
86
+ <!ENTITY numsp "&#x02007;" ><!--=digit space (width of a number) -->
87
+ <!ENTITY phone "&#x0260E;" ><!--=telephone symbol -->
88
+ <!ENTITY puncsp "&#x02008;" ><!--=punctuation space (width of comma) -->
89
+ <!ENTITY rdquor "&#x0201D;" ><!--rising dbl quote, right (high) -->
90
+ <!ENTITY rect "&#x025AD;" ><!--=rectangle, open -->
91
+ <!ENTITY rsquor "&#x02019;" ><!--rising single quote, right (high) -->
92
+ <!ENTITY rtri "&#x025B9;" ><!--/triangleright B: r triangle, open -->
93
+ <!ENTITY rtrif "&#x025B8;" ><!--/blacktriangleright R: =r tri, filled -->
94
+ <!ENTITY rx "&#x0211E;" ><!--pharmaceutical prescription (Rx) -->
95
+ <!ENTITY sext "&#x02736;" ><!--sextile (6-pointed star) -->
96
+ <!ENTITY sharp "&#x0266F;" ><!--/sharp =musical sharp -->
97
+ <!ENTITY spades "&#x02660;" ><!--/spadesuit =spades suit symbol -->
98
+ <!ENTITY squ "&#x025A1;" ><!--=square, open -->
99
+ <!ENTITY squf "&#x025AA;" ><!--/blacksquare =sq bullet, filled -->
100
+ <!ENTITY star "&#x022C6;" ><!--=star, open -->
101
+ <!ENTITY starf "&#x02605;" ><!--/bigstar - star, filled -->
102
+ <!ENTITY target "&#x02316;" ><!--register mark or target -->
103
+ <!ENTITY telrec "&#x02315;" ><!--=telephone recorder symbol -->
104
+ <!ENTITY thinsp "&#x02009;" ><!--=thin space (1/6-em) -->
105
+ <!ENTITY uhblk "&#x02580;" ><!--=upper half block -->
106
+ <!ENTITY ulcrop "&#x0230F;" ><!--upward left crop mark -->
107
+ <!ENTITY urcrop "&#x0230E;" ><!--upward right crop mark -->
108
+ <!ENTITY utri "&#x025B5;" ><!--/triangle =up triangle, open -->
109
+ <!ENTITY utrif "&#x025B4;" ><!--/blacktriangle =up tri, filled -->
110
+ <!ENTITY vellip "&#x022EE;" ><!--vertical ellipsis -->
@@ -0,0 +1,183 @@
1
+
2
+ <!--
3
+ File isotech.ent produced by the XSL script mmldtd.xsl
4
+ from input data in unicode.xml.
5
+
6
+ Please report any errors to
7
+ David Carlisle <davidc@nag.co.uk>.
8
+
9
+ The numeric character values assigned to each entity
10
+ (should) match either official Unicode assignments
11
+ or assignments provisionally allocated by the
12
+ Unicode Consortium based on the characters in the `STIX'
13
+ propsal for mathematics. Note that these assignments
14
+ have not been ratified by the corresponding ISO
15
+ committee and thus should be considered liable to
16
+ change.
17
+
18
+ Entity names in this file are derived from files carrying the
19
+ following notice:
20
+
21
+ (C) International Organization for Standardization 1991
22
+ Permission to copy in any form is granted for use with
23
+ conforming SGML systems and applications as defined in
24
+ ISO 8879, provided this notice is included in all copies.
25
+
26
+ -->
27
+
28
+ <!ENTITY acd "&#x0223F;" ><!--ac current -->
29
+ <!ENTITY aleph "&#x02135;" ><!--/aleph aleph, Hebrew -->
30
+ <!ENTITY and "&#x02227;" ><!--/wedge /land B: logical and -->
31
+ <!ENTITY And "&#x02A53;" ><!--dbl logical and -->
32
+ <!ENTITY andand "&#x02A55;" ><!--two logical and -->
33
+ <!ENTITY andd "&#x02A5C;" ><!--and, horizontal dash -->
34
+ <!ENTITY andslope "&#x02A58;" ><!--sloping large and -->
35
+ <!ENTITY andv "&#x02A5A;" ><!--and with middle stem -->
36
+ <!ENTITY angrt "&#x0221F;" ><!--right (90 degree) angle -->
37
+ <!ENTITY angsph "&#x02222;" ><!--/sphericalangle angle-spherical -->
38
+ <!ENTITY angst "&#x0212B;" ><!--Angstrom capital A, ring -->
39
+ <!ENTITY ap "&#x02248;" ><!--/approx R: approximate -->
40
+ <!ENTITY apacir "&#x02A6F;" ><!--approximate, circumflex accent -->
41
+ <!ENTITY awconint "&#x02233;" ><!--contour integral, anti-clockwise -->
42
+ <!ENTITY awint "&#x02A11;" ><!--anti clock-wise integration -->
43
+ <!ENTITY becaus "&#x02235;" ><!--/because R: because -->
44
+ <!ENTITY bernou "&#x0212C;" ><!--Bernoulli function (script capital B) -->
45
+ <!ENTITY bne "&#x0003D;&#x020E5;" ><!--reverse not equal -->
46
+ <!ENTITY bnequiv "&#x02261;&#x020E5;" ><!--reverse not equivalent -->
47
+ <!ENTITY bnot "&#x02310;" ><!--reverse not -->
48
+ <!ENTITY bNot "&#x02AED;" ><!--reverse not with two horizontal strokes -->
49
+ <!ENTITY bottom "&#x022A5;" ><!--/bot bottom -->
50
+ <!ENTITY cap "&#x02229;" ><!--/cap B: intersection -->
51
+ <!ENTITY Cconint "&#x02230;" ><!--triple contour integral operator -->
52
+ <!ENTITY cirfnint "&#x02A10;" ><!--circulation function -->
53
+ <!ENTITY compfn "&#x02218;" ><!--/circ B: composite function (small circle) -->
54
+ <!ENTITY cong "&#x02245;" ><!--/cong R: congruent with -->
55
+ <!ENTITY conint "&#x0222E;" ><!--/oint L: contour integral operator -->
56
+ <!ENTITY Conint "&#x0222F;" ><!--double contour integral operator -->
57
+ <!ENTITY ctdot "&#x022EF;" ><!--/cdots, three dots, centered -->
58
+ <!ENTITY cup "&#x0222A;" ><!--/cup B: union or logical sum -->
59
+ <!ENTITY cwconint "&#x02232;" ><!--contour integral, clockwise -->
60
+ <!ENTITY cwint "&#x02231;" ><!--clockwise integral -->
61
+ <!ENTITY cylcty "&#x0232D;" ><!--cylindricity -->
62
+ <!ENTITY disin "&#x022F2;" ><!--set membership, long horizontal stroke -->
63
+ <!ENTITY Dot "&#x000A8;" ><!--dieresis or umlaut mark -->
64
+ <!ENTITY DotDot "&#x020DC;" ><!--four dots above -->
65
+ <!ENTITY dsol "&#x029F6;" ><!--solidus, bar above -->
66
+ <!ENTITY dtdot "&#x022F1;" ><!--/ddots, three dots, descending -->
67
+ <!ENTITY dwangle "&#x029A6;" ><!--large downward pointing angle -->
68
+ <!ENTITY epar "&#x022D5;" ><!--parallel, equal; equal or parallel -->
69
+ <!ENTITY eparsl "&#x029E3;" ><!--parallel, slanted, equal; homothetically congruent to -->
70
+ <!ENTITY equiv "&#x02261;" ><!--/equiv R: identical with -->
71
+ <!ENTITY eqvparsl "&#x029E5;" ><!--equivalent, equal; congruent and parallel -->
72
+ <!ENTITY exist "&#x02203;" ><!--/exists at least one exists -->
73
+ <!ENTITY fnof "&#x00192;" ><!--function of (italic small f) -->
74
+ <!ENTITY forall "&#x02200;" ><!--/forall for all -->
75
+ <!ENTITY fpartint "&#x02A0D;" ><!--finite part integral -->
76
+ <!ENTITY ge "&#x02265;" ><!--/geq /ge R: greater-than-or-equal -->
77
+ <!ENTITY hamilt "&#x0210B;" ><!--Hamiltonian (script capital H) -->
78
+ <!ENTITY iff "&#x021D4;" ><!--/iff if and only if -->
79
+ <!ENTITY iinfin "&#x029DC;" ><!--infinity sign, incomplete -->
80
+ <!ENTITY imped "&#x1D543;" ><!--impedance -->
81
+ <!ENTITY infin "&#x0221E;" ><!--/infty infinity -->
82
+ <!ENTITY int "&#x0222B;" ><!--/int L: integral operator -->
83
+ <!ENTITY Int "&#x0222C;" ><!--double integral operator -->
84
+ <!ENTITY intlarhk "&#x02A17;" ><!--integral, left arrow with hook -->
85
+ <!ENTITY isin "&#x02208;" ><!--/in R: set membership -->
86
+ <!ENTITY isindot "&#x022F5;" ><!--set membership, dot above -->
87
+ <!ENTITY isinE "&#x022F9;" ><!--set membership, two horizontal strokes -->
88
+ <!ENTITY isins "&#x022F4;" ><!--set membership, vertical bar on horizontal stroke -->
89
+ <!ENTITY isinsv "&#x022F3;" ><!--large set membership, vertical bar on horizontal stroke -->
90
+ <!ENTITY isinv "&#x02208;" ><!--set membership, variant -->
91
+ <!ENTITY lagran "&#x02112;" ><!--Lagrangian (script capital L) -->
92
+ <!ENTITY lang "&#x02329;" ><!--/langle O: left angle bracket -->
93
+ <!ENTITY Lang "&#x0300A;" ><!--left angle bracket, double -->
94
+ <!ENTITY lArr "&#x021D0;" ><!--/Leftarrow A: is implied by -->
95
+ <!ENTITY lbbrk "&#x03014;" ><!--left broken bracket -->
96
+ <!ENTITY le "&#x02264;" ><!--/leq /le R: less-than-or-equal -->
97
+ <!ENTITY loang "&#x0F558;" ><!--left open angular bracket -->
98
+ <!ENTITY lobrk "&#x0301A;" ><!--left open bracket -->
99
+ <!ENTITY lopar "&#x03018;" ><!--left open parenthesis -->
100
+ <!ENTITY lowast "&#x02217;" ><!--low asterisk -->
101
+ <!ENTITY minus "&#x02212;" ><!--B: minus sign -->
102
+ <!ENTITY mnplus "&#x02213;" ><!--/mp B: minus-or-plus sign -->
103
+ <!ENTITY nabla "&#x02207;" ><!--/nabla del, Hamilton operator -->
104
+ <!ENTITY ne "&#x02260;" ><!--/ne /neq R: not equal -->
105
+ <!ENTITY nedot "&#x02260;&#x0FE00;" ><!--not equal, dot -->
106
+ <!ENTITY nhpar "&#x02AF2;" ><!--not, horizontal, parallel -->
107
+ <!ENTITY ni "&#x0220B;" ><!--/ni /owns R: contains -->
108
+ <!ENTITY nis "&#x022FC;" ><!--contains, vertical bar on horizontal stroke -->
109
+ <!ENTITY nisd "&#x022FA;" ><!--contains, long horizontal stroke -->
110
+ <!ENTITY niv "&#x0220B;" ><!--contains, variant -->
111
+ <!ENTITY Not "&#x02AEC;" ><!--not with two horizontal strokes -->
112
+ <!ENTITY notin "&#x02209;" ><!--/notin N: negated set membership -->
113
+ <!ENTITY notindot "&#x022F6;&#x0FE00;" ><!--negated set membership, dot above -->
114
+ <!ENTITY notinva "&#x02209;&#x00338;" ><!--negated set membership, variant -->
115
+ <!ENTITY notinvb "&#x022F7;" ><!--negated set membership, variant -->
116
+ <!ENTITY notinvc "&#x022F6;" ><!--negated set membership, variant -->
117
+ <!ENTITY notni "&#x0220C;" ><!--negated contains -->
118
+ <!ENTITY notniva "&#x0220C;" ><!--negated contains, variant -->
119
+ <!ENTITY notnivb "&#x022FE;" ><!--contains, variant -->
120
+ <!ENTITY notnivc "&#x022FD;" ><!--contains, variant -->
121
+ <!ENTITY nparsl "&#x02225;&#x0FE00;&#x020E5;" ><!--not parallel, slanted -->
122
+ <!ENTITY npart "&#x02202;&#x00338;" ><!--not partial differential -->
123
+ <!ENTITY npolint "&#x02A14;" ><!--line integration, not including the pole -->
124
+ <!ENTITY nvinfin "&#x029DE;" ><!--not, vert, infinity -->
125
+ <!ENTITY olcross "&#x029BB;" ><!--circle, cross -->
126
+ <!ENTITY or "&#x02228;" ><!--/vee /lor B: logical or -->
127
+ <!ENTITY Or "&#x02A54;" ><!--dbl logical or -->
128
+ <!ENTITY ord "&#x02A5D;" ><!--or, horizontal dash -->
129
+ <!ENTITY order "&#x02134;" ><!--order of (script small o) -->
130
+ <!ENTITY oror "&#x02A56;" ><!--two logical or -->
131
+ <!ENTITY orslope "&#x02A57;" ><!--sloping large or -->
132
+ <!ENTITY orv "&#x02A5B;" ><!--or with middle stem -->
133
+ <!ENTITY par "&#x02225;" ><!--/parallel R: parallel -->
134
+ <!ENTITY parsl "&#x02225;&#x0FE00;" ><!--parallel, slanted -->
135
+ <!ENTITY part "&#x02202;" ><!--/partial partial differential -->
136
+ <!ENTITY permil "&#x02030;" ><!--per thousand -->
137
+ <!ENTITY perp "&#x022A5;" ><!--/perp R: perpendicular -->
138
+ <!ENTITY pertenk "&#x02031;" ><!--per 10 thousand -->
139
+ <!ENTITY phmmat "&#x02133;" ><!--physics M-matrix (script capital M) -->
140
+ <!ENTITY pointint "&#x02A15;" ><!--integral around a point operator -->
141
+ <!ENTITY prime "&#x02032;" ><!--/prime prime or minute -->
142
+ <!ENTITY Prime "&#x02033;" ><!--double prime or second -->
143
+ <!ENTITY profalar "&#x0232E;" ><!--all-around profile -->
144
+ <!ENTITY profline "&#x02312;" ><!--profile of a line -->
145
+ <!ENTITY profsurf "&#x02313;" ><!--profile of a surface -->
146
+ <!ENTITY prop "&#x0221D;" ><!--/propto R: is proportional to -->
147
+ <!ENTITY qint "&#x02A0C;" ><!--/iiiint quadruple integral operator -->
148
+ <!ENTITY qprime "&#x02057;" ><!--quadruple prime -->
149
+ <!ENTITY quatint "&#x02A16;" ><!--quaternion integral operator -->
150
+ <!ENTITY radic "&#x0221A;" ><!--/surd radical -->
151
+ <!ENTITY rang "&#x0232A;" ><!--/rangle C: right angle bracket -->
152
+ <!ENTITY Rang "&#x0300B;" ><!--right angle bracket, double -->
153
+ <!ENTITY rArr "&#x021D2;" ><!--/Rightarrow A: implies -->
154
+ <!ENTITY rbbrk "&#x03015;" ><!--right broken bracket -->
155
+ <!ENTITY roang "&#x0F559;" ><!--right open angular bracket -->
156
+ <!ENTITY robrk "&#x0301B;" ><!--right open bracket -->
157
+ <!ENTITY ropar "&#x03019;" ><!--right open parenthesis -->
158
+ <!ENTITY rppolint "&#x02A12;" ><!--line integration, rectangular path around pole -->
159
+ <!ENTITY scpolint "&#x02A13;" ><!--line integration, semi-circular path around pole -->
160
+ <!ENTITY sim "&#x0223C;" ><!--/sim R: similar -->
161
+ <!ENTITY simdot "&#x02A6A;" ><!--similar, dot -->
162
+ <!ENTITY sime "&#x02243;" ><!--/simeq R: similar, equals -->
163
+ <!ENTITY smeparsl "&#x029E4;" ><!--similar, parallel, slanted, equal -->
164
+ <!ENTITY square "&#x025A1;" ><!--/square, square -->
165
+ <!ENTITY squarf "&#x025AA;" ><!--/blacksquare, square, filled -->
166
+ <!ENTITY sub "&#x02282;" ><!--/subset R: subset or is implied by -->
167
+ <!ENTITY sube "&#x02286;" ><!--/subseteq R: subset, equals -->
168
+ <!ENTITY sup "&#x02283;" ><!--/supset R: superset or implies -->
169
+ <!ENTITY supe "&#x02287;" ><!--/supseteq R: superset, equals -->
170
+ <!ENTITY tdot "&#x020DB;" ><!--three dots above -->
171
+ <!ENTITY there4 "&#x02234;" ><!--/therefore R: therefore -->
172
+ <!ENTITY tint "&#x0222D;" ><!--/iiint triple integral operator -->
173
+ <!ENTITY top "&#x022A4;" ><!--/top top -->
174
+ <!ENTITY topbot "&#x02336;" ><!--top and bottom -->
175
+ <!ENTITY topcir "&#x02AF1;" ><!--top, circle below -->
176
+ <!ENTITY tprime "&#x02034;" ><!--triple prime -->
177
+ <!ENTITY utdot "&#x022F0;" ><!--three dots, ascending -->
178
+ <!ENTITY uwangle "&#x029A7;" ><!--large upward pointing angle -->
179
+ <!ENTITY vangrt "&#x022BE;" ><!--right angle, variant -->
180
+ <!ENTITY veeeq "&#x0225A;" ><!--logical or, equals -->
181
+ <!ENTITY Verbar "&#x02016;" ><!--/Vert dbl vertical bar -->
182
+ <!ENTITY wedgeq "&#x02259;" ><!--/wedgeq R: corresponds to (wedge, equals) -->
183
+ <!ENTITY xnis "&#x022FB;" ><!--large contains, vertical bar on horizontal stroke -->