index.html
177 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="http://www.w3.org/StyleSheets/TR/W3C-REC.css" type="text/css"?>
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML+RDFa 1.0//EN' 'http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd'>
<html xml:lang="en" dir="ltr" about="" property="dc:language" content="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:dc='http://purl.org/dc/terms/' xmlns:bibo='http://purl.org/ontology/bibo/'
xmlns:foaf='http://xmlns.com/foaf/0.1/' xmlns:xsd='http://www.w3.org/2001/XMLSchema#'>
<head>
<meta name="generator" content="HTML Tidy, see www.w3.org" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>XHTML-Print - Second Edition</title>
<style type="text/css">
span.entity { color: red; }
span.element { color: green; }
.del {display : none; }
*.RequiredAttribute { color: inherit; background-color: aqua }
*.AttributeNotRequired { color: inherit; background-color: white }
.code {
border-right: 1px solid;
padding-right: 4px;
border-top: 1px solid;
padding-left: 4px;
padding-bottom: 1px;
border-left: 1px solid;
padding-top: 1px;
border-bottom: 1px solid;
}
table.keys {border: none; border-collapse: separate; border-spacing: 5px}
table.keys td {border: none; padding: 5px; }
table.keys th {border-bottom: solid black 1px; }
table.memberlist td {border:none}
table {border-collapse:collapse; border: none; width: 100%; empty-cells:show;}
th {border-bottom:none}
td {border: solid #ccc 1px; padding:5px 2px 5px 5px; }
td.key { font-weight: bold; vertical-align: top}
.editorial { display: block; font-family: arial, helvetica, sans-serif;
font-size: 80%;
margin-left: .5in; margin-right: 1in ; padding: 0.125in;
color: inherit; background-color: #FFFFDD }
.tableNotes { font-size: 8pt; font-style: italic; margin-bottom: 0in; padding-bottom: 0px;}
.aTableNote { font-size: 8pt; margin:0;margin-left: .125in; padding: 0px;}
.RFC2119 { text-transform: lowercase; font-style: italic }
em em.RFC2119 { text-transform: lowercase; font-style: normal }
</style>
<link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-REC.css" />
</head>
<body>
<div class="head">
<p><a href="http://www.w3.org/"><img height="48" width="72" alt="W3C" src="http://www.w3.org/Icons/w3c_home" /></a></p>
<h1 property='dc:title' datatype="" id="title"><abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> - Second Edition</h1>
<h2 id="draft-type" property="dc:issued" datatype='xsd:dateTime' content="2010-11-23T00:00:00+0000">W3C Recommendation 23 November 2010</h2>
<dl>
<dt>This version:</dt>
<dd><a href="http://www.w3.org/TR/2010/REC-xhtml-print-20101123/">http://www.w3.org/TR/2010/REC-xhtml-print-20101123/</a></dd>
<dt>Latest version:</dt>
<dd><a href="http://www.w3.org/TR/xhtml-print">http://www.w3.org/TR/xhtml-print</a></dd>
<dt>Previous version:</dt>
<dd><a href="http://www.w3.org/TR/2010/PER-xhtml-print-20101007/">http://www.w3.org/TR/2010/PER-xhtml-print-20101007/</a></dd>
<dt>Diff-marked from previous version:</dt>
<dd><a href="xhtml-print-diff.html">xhtml-print-diff.html</a></dd>
<dt>Previous recommendation:</dt>
<dd><a rel='dc:replaces' href="http://www.w3.org/TR/2006/REC-xhtml-print-20060920/">http://www.w3.org/TR/2006/REC-xhtml-print-20060920/</a></dd>
<dt>Diff-marked from previous recommendation:</dt>
<dd><a href="xhtml-print-rec-diff.html">xhtml-print-rec-diff.html</a></dd>
<dt>Editor:</dt>
<dd rel="bibo:editor"><span typeof="foaf:Person"><a href="http://blog.halindrome.com" content="Shane McCarron" property="foaf:name" rel="foaf:homepage">Shane McCarron</a>, <a href=
"http://www.aptest.com" rel="foaf:workplaceHomepage">Applied Testing and Technology, Inc.</a> <a href="mailto:shane@aptest.com" rel="foaf:mbox">shane@aptest.com</a></span></dd>
<dt>Version 1.0 Editors:</dt>
<dd>Melinda Grant, Hewlett-Packard Co.</dd>
<dd>Jim Bigelow, Hewlett-Packard Co.</dd>
</dl>
<p>Please refer to the <a href="http://www.w3.org/MarkUp/2010/xhtml-print-2nd-edition-errata.html"><strong>errata</strong></a> for this document, which may include some normative corrections. See
also <a href="http://www.w3.org/2003/03/Translations/byTechnology?technology=xhtml-print">translations</a>.</p>
<p>This document is also available in these non-normative formats: <a href="xhtml-print.ps">PostScript version</a>, <a href="xhtml-print.pdf"><abbr title="Portable Document Format">PDF</abbr>
version</a>, <a href="xhtml-print.zip">ZIP archive</a>, and <a href="xhtml-print.tgz">Gzip'd TAR archive</a>.</p>
<p>See also <a href=" http://www.w3.org/2003/03/Translations/byTechnology?technology=xhtml-print"> <strong>translations</strong></a>.</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2006-2010 <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">
W3C</acronym></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, <a href="http://www.ercim.org/"><acronym title=
"European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href=
"http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href=
"http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p>
</div>
<!-- end of the div head -->
<hr />
<h2 id="abstract">Abstract</h2>
<p property='dc:abstract'>XHTML-Print is a member of the family of XHTML languages defined by the <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> [<a
href="#ref_xhtmlmod">XHTMLMOD</a>]. It is designed to be appropriate for printing from mobile devices to low-cost printers that might not have a full-page buffer and that generally print from
top-to-bottom and left-to-right with the paper in a portrait orientation. XHTML-Print is also targeted at printing in environments where it is not feasible or desirable to install a printer-specific
driver and where some variability in the formatting of the output is acceptable.</p>
<h2 id="status">Status of This Document</h2>
<p><em>This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of
this technical report can be found in the <a href="http://www.w3.org/TR/">W3C technical reports index</a> at http://www.w3.org/TR/.</em></p>
<p>All sections of this document are normative unless noted as informative.</p>
<p>This document is a Recommendation of XHTML Print. It supercedes the <a href="http://www.w3.org/TR/2006/REC-xhtml-print-20060920">previous version</a>. The only substantive changes in this version
are the addition of an implementation of the markup language using XML Schema.</p>
<p>This document has been reviewed by W3C Members, by software developers, and by other W3C groups and interested parties, and is endorsed by the Director as a W3C Recommendation. It is a stable
document and may be used as reference material or cited from another document. W3C's role in making the Recommendation is to draw attention to the specification and to promote its widespread
deployment. This enhances the functionality and interoperability of the Web.</p>
<p>This document incorporates minor suggestions made during the <a href="http://www.w3.org/TR/2006/PR-xhtml-print-20060131/">XHTML-Print Proposed Recommendation</a> of 31 January 2006 and also
removes any requirement for CSS support; please see the public <a href="http://www.w3.org/MarkUp/2006/xhtml-print-pr-doc.html">disposition of comments</a> for details. Evidence of interoperability
between two implementations of this specification is documented in the <a href="http://www.w3.org/MarkUp/Test/xhtml-print/implementation/">Implementation Report</a>.</p>
<p>This document has been produced by the <a href="http://www.w3.org/MarkUp/"><acronym title="World Wide Web Consortium">W3C</acronym> <acronym title="HyperText Markup Language">XHTML2</acronym>
Working Group</a> as part of the <a href="http://www.w3.org/MarkUp/Activity"><acronym title="World Wide Web Consortium">W3C</acronym> <acronym title="HyperText Markup Language">HTML</acronym>
Activity</a>.</p>
<p> This document is governed by the <a href="http://www.w3.org/TR/2002/NOTE-patent-practice-20020124">24 January 2002 CPP</a> as amended by the <a href="http://www.w3.org/2004/02/05-pp-transition">
W3C Patent Policy Transition Procedure</a>. W3C maintains a <a rel="disclosure" href="http://www.w3.org/2004/01/pp-impl/32107/status">public list of any patent disclosures</a> made in connection with
the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href=
"http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href=
"http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p>
<p>Please report errors in this document to <a href="mailto:www-html-editor@w3.org">www-html-editor@w3.org</a> (<a href="http://lists.w3.org/Archives/Public/www-html-editor/">archive</a>).</p>
<h2 id="contents">Table of Contents</h2>
<div class="toc">
<ul class="toc">
<li>1. <a href="#s_intro">Introduction</a>
<ul class="toc">
<li>1.1. <a href="#s1.1"><abbr title="Extensible HyperText Markup Language">XHTML</abbr> for Printing</a></li>
<li>1.2. <a href="#s1.2">Terminology</a></li>
<li>1.3. <a href="#s1.3">Design Rationale</a></li>
</ul>
</li>
<li>2. <a href="#s_conformance">Conformance</a>
<ul class="toc">
<li>2.1. <a href="#s2.1">Document Conformance</a></li>
<li>2.2. <a href="#s2.2">Client Conformance</a></li>
<li>2.3. <a href="#s2.3">Printer Conformance</a></li>
</ul>
</li>
<li>3. <a href="#s_xhtmlmodules">The <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> Document Type</a>
<ul class="toc">
<li>3.1. <a href="#s3.1">Attributes and Attribute Collections</a></li>
<li>3.2. <a href="#s3.2">Structure Module</a></li>
<li>3.3. <a href="#s3.3">Text Module</a></li>
<li>3.4. <a href="#s3.4">Hypertext Module</a></li>
<li>3.5. <a href="#s3.5">List Module</a></li>
<li>3.6. <a href="#s3.6">Presentation Module</a></li>
<li>3.7. <a href="#s3.7">Basic Forms Module</a></li>
<li>3.8. <a href="#s3.8">Basic Tables Module</a></li>
<li>3.9. <a href="#s3.9">Image Module</a></li>
<li>3.10. <a href="#s3.10">Object Module</a></li>
<li>3.11. <a href="#s3.11">Metainformation Module</a></li>
<li>3.12. <a href="#s3.12">Scripting Module</a></li>
<li>3.13. <a href="#s3.13">Style Sheet Module</a></li>
<li>3.14. <a href="#s3.14">Style Sheet Attribute Module</a></li>
<li>3.15. <a href="#s3.15">Link Module</a></li>
<li>3.16. <a href="#s3.16">Base Module</a></li>
<li>3.17. <a href="#s_charentities">Character Entities</a></li>
</ul>
</li>
<li>4. <a href="#s_howtouse">How to Use <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr></a>
<ul class="toc">
<li>4.1. <a href="#s.4.1">Images</a></li>
<li>4.2. <a href="#s.4.2">Style Sheets</a></li>
<li>4.3. <a href="#s.4.3">Forms Usage</a></li>
</ul>
</li>
<li>5. <a href="#s_acknowledgements">Acknowledgements</a></li>
<li>A. <a href="#a_jpeg">JPEG Decoder Requirements</a>
<ul class="toc">
<li>A.1. <a href="#a_jpeg.1">Introduction</a></li>
<li>A.2. <a href="#a_jpeg.2">Printer Behaviors</a></li>
</ul>
</li>
<li>B. <a href="#a_dtd"><abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> DTD and Modules</a>
<ul class="toc">
<li>B.1. <a href="#a_dtdDriver">XHTML-Print 1.0 DTD</a></li>
<li>B.2. <a href="#a_dtdModel"><abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> 1.0 Document Model Module</a></li>
</ul>
</li>
<li>C. <a href="#a_schema"><abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> XML Schema and Modules</a>
<ul class="toc">
<li>C.1. <a href="#a_schemaDriver">XHTML-Print 1.0 XML Schema</a></li>
<li>C.2. <a href="#a_schemaModel"><abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> 1.0 XML Schema Content Model Module</a></li>
<li>C.3. <a href="#a_schemaModules">XHTML-Print 1.0 XML Schema Modules</a></li>
</ul>
</li>
<li>D. <a href="#a_refs">References</a>
<ul class="toc">
<li>D.1. <a href="#a_normrefs">Normative References</a></li>
<li>D.2. <a href="#a_inforefs">Informative References</a></li>
</ul>
</li>
</ul>
</div>
<!--OddPage-->
<h1 typeof="bibo:Chapter" about="#s_intro" id="s_intro">1. Introduction</h1>
<p>All sections of this document are normative unless noted as informative.</p>
<h2 typeof='bibo:Chapter' about='#s1.1' id='s1.1'>1.1. <abbr title="Extensible HyperText Markup Language">XHTML</abbr> for Printing</h2>
<p>This section is informative.</p>
<p>This document specifies a simple XHTML based data stream suitable for printing as well as display. It is based on <cite>XHTML Basic</cite> [<a href="#ref_xhtmlbasic">XHTMLBASIC</a>]. Its targeted
usage is for printing in environments where it is not feasible or desirable to install a printer-specific driver and where some variability in the formatting of the output is acceptable. Throughout
this document this data stream is called "XHTML-Print."</p>
<p>XHTML-Print is designed to be appropriate for low-cost printers that might not have a full-page buffer and that generally print from top-to-bottom and left-to-right with the paper in a portrait
orientation. For other printers (i.e., those that print in another direction or orientation) a full-page buffer could be needed.</p>
<p>XHTML-Print is not appropriate when strict layout consistency and repeatability across printers are needed. The design objective of XHTML-Print is to provide a relatively simple, broadly
supportable page description format where content preservation and reproduction are the goal, i.e. "Content is King." Traditional printer page description formats such as PostScript or PCL are more
suitable when strict layout control is needed. XHTML-Print does not utilize bi-directional communications with the printer either for capabilities or status inquiries.</p>
<p>This document creates a set of conformance criteria for XHTML-Print. It provides a strong basis for consistent printing results without a detailed understanding of each individual printer's
characteristics.</p>
<p>The document type definition for <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> is implemented based on the <abbr title="Extensible HyperText Markup Language">
XHTML</abbr> modules defined in <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> [<a href="#ref_xhtmlmod">XHTMLMOD</a>].</p>
<h2 typeof='bibo:Chapter' about='#s1.2' id='s1.2'>1.2. Terminology</h2>
<p>The keywords "<em title="MUST in RFC 2119 context" class="RFC2119">MUST</em>", "<em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em>", "<em title="MUST NOT in RFC 2119 context" class=
"RFC2119">MUST NOT</em>", "<em title="SHALL NOT in RFC 2119 context" class="RFC2119">SHALL NOT</em>", "<em title="REQUIRED in RFC 2119 context" class="RFC2119">REQUIRED</em>", "<em title="SHOULD in
RFC 2119 context" class="RFC2119">SHOULD</em>", "<em title="SHOULD NOT in RFC 2119 context" class="RFC2119">SHOULD NOT</em>", "<em title="RECOMMENDED in RFC 2119 context" class=
"RFC2119">RECOMMENDED</em>", "<em title="MAY in RFC 2119 context" class="RFC2119">MAY</em>", and "<em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em>" when used in this document
are to be interpreted as described in <cite>RFC 2119</cite> [<a href="#ref_rfc2119">RFC2119</a>]. However, for readability, these words might not appear in all uppercase letters in this
specification.</p>
<h2 typeof='bibo:Chapter' about='#s1.3' id='s1.3'>1.3. Design Rationale</h2>
<p>This section explains why certain <abbr title="HyperText Markup Language">HTML</abbr> features are not part of <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr>
and any special circumstances concerning a module and printing.</p>
<h3 typeof='bibo:Chapter' about='#s1.3.1' id='s1.3.1'>1.3.1. Script and Events</h3>
<p>Scripts, as programs that are executed in conjunction with a document, are not relevant to the printed page. However, documents can provide information as an alternative to a script. Therefore,
the script module is part of XHTML-Print. Scripts <em title="MUST NOT in RFC 2119 context" class="RFC2119">MUST NOT</em> be executed and their results <em title="MUST NOT in RFC 2119 context" class=
"RFC2119">MUST NOT</em> be printed. If a <code>noscript</code> element is present, it contains alternate content that <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be printed in
place of the content of the <code>script</code> element.</p>
<p>Events are not applicable to static, printed versions of a document. Therefore, the Intrinsic Events module is not part of XHTML-Print.</p>
<h3 typeof='bibo:Chapter' about='#s1.3.2' id='s1.3.2'>1.3.2. Presentation</h3>
<p>Many simple printers cannot print a wider variety of fonts than generic serif, sans serif and monospace. It is <em title="RECOMMENDED in RFC 2119 context" class="RFC2119">RECOMMENDED</em> that
style sheets be used to create a presentation that is appropriate for a particular category of printer. How printers are categorized, what those categories are, how a printer identifies itself as a
member of a category, and how style sheets are selectively applied based on category, is outside the scope of this document.</p>
<p>The <a href="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_presentationmodule">Presentation module</a> ([<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 5.4.1) is supported to
provide simple control over basic font variants and rules.</p>
<h3 typeof='bibo:Chapter' about='#s1.3.3' id='s1.3.3'>1.3.3. Forms</h3>
<p><a href="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_sformsmodule">Basic <abbr title="Extensible HyperText Markup Language">XHTML</abbr> forms</a> ([<a href=
"#ref_xhtmlmod">XHTMLMOD</a>], section 5.5.1) are supported. Content developers <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> keep in mind that users might not be able to input
many characters from some devices (<abbr title="exempli gratia" xml:lang="lt">e.g.</abbr> from a mobile phone). Furthermore, developers are cautioned that a printer prints a static version of a form,
and the visual appearance of a form depends heavily on the implementation.</p>
<h3 typeof='bibo:Chapter' about='#s1.3.4' id='s1.3.4'>1.3.4. Tables</h3>
<p><a href="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_simpletablemodule">Basic <abbr title="Extensible HyperText Markup Language">XHTML</abbr> tables</a> ([<a href=
"#ref_xhtmlmod">XHTMLMOD</a>], section 5.6.1) are supported, but tables can be difficult to format on very low resource devices. Furthermore, content developers are cautioned that in the Basic Tables
Module, nesting of tables is prohibited.</p>
<h3 typeof='bibo:Chapter' about='#s1.3.5' id='s1.3.5'>1.3.5. Frames</h3>
<p>Frames are not supported. Frames depend on a screen interface and therefore are not applicable to printers.</p>
<h3 typeof='bibo:Chapter' about='#s1.3.6' id='s1.3.6'>1.3.6. Attributes</h3>
<p><abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> is a member of the family of XHTML languages defined by <cite>Modularization of XHTML</cite> [<a href=
"#ref_xhtmlmod">XHTMLMOD</a>]. Therefore, the elements and attributes in the modules that make up <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> are all valid
constructs of the language. However, not all the attributes are applicable to a rendering of an XHTML-Print document in printed media, especially those that are integral to a dynamic display of the
document in a browser and the submission of a form. Furthermore, special attention is given to simple printers and some attributes are deemed too complex for a such a printer to render. These
attributes are treated as discretionary in that a conforming printer is not <em title="REQUIRED in RFC 2119 context" class="RFC2119">REQUIRED</em> to support them, but if a printer wishes to provide
that support, there are requirements stated for consistency in the implementation of extensions.</p>
<h3 typeof='bibo:Chapter' about='#s.1.3.7' id='s.1.3.7'>1.3.7 Character Model</h3>
<p>The W3C architectural specification <cite>Character Model for the World Wide Web 1.0</cite> [<a href="#ref_charmod">CHARMOD</a>] gives the <em title="RECOMMENDED in RFC 2119 context" class=
"RFC2119">RECOMMENDED</em> representation of characters in XHTML-Print. Authors of XHTML-Print producing applications should be aware that low cost printers might be limited in both processing power
and memory and therefore, that normalized utf-8 encoded documents could print more quickly than documents in other forms and encodings.</p>
<!--OddPage-->
<h1 typeof='bibo:Chapter' about='#s_conformance' id="s_conformance">2. Conformance</h1>
<h2 typeof='bibo:Chapter' about='#s2.1' id='s2.1'>2.1. Document Conformance</h2>
<p>A conforming XHTML-Print document is a document that requires only the facilities described as mandatory in this specification. Such a document <em title="SHALL in RFC 2119 context" class=
"RFC2119">SHALL</em> meet all of the following criteria:</p>
<ol>
<li>The document <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> conform to the constraints expressed in the DTD found in <a href="#a_dtd">Appendix B</a> and the XML Schema found in
<a href="#a_schema">Appendix B</a> and conform to the constraints expressed in <a href="#s1.3">Design Rationale</a>.</li>
<li>The root element of the document <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be <code>html</code>.</li>
<li>The name of the default namespace on the root element <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> be the XHTML namespace name, <code>http://www.w3.org/1999/xhtml</code>.
<p>The start tag <em class="RFC2119" title="MAY in RFC 2119 context">MAY</em> also contain the declaration of the XML Schema Instance Namespace and an XML Schema Instance <code>schemaLocation</code>
attribute [<a href="#ref_xmlschema">XMLSCHEMA</a>]. Such an attribute would associate the XHTML namespace <code>http://www.w3.org/1999/xhtml</code> with the XML Schema at the URI <code>
http://www.w3.org/MarkUp/SCHEMA/xhtml-print10.xsd</code>.</p>
</li>
<li>There <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> be a DOCTYPE declaration in the document prior to the root element. If present, the public identifier included in the
DOCTYPE declaration <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> reference the DTD found in <a href="#a_dtd">Appendix B</a> of this specification, using its Formal Public
Identifier. The system identifier <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> be modified appropriately.
<div class="code " style="BORDER: 1px solid; MARGIN: 10px; PADDING-RIGHT: 40px; PADDING-LEFT: 40px; PADDING-BOTTOM: 20px; PADDING-TOP: 1px;"><br />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML-Print 1.0//EN"<br />
"http://www.w3.org/MarkUp/DTD/xhtml-print10.dtd"><br />
</div>
</li>
<li>The DTD subset <em title="MUST NOT in RFC 2119 context" class="RFC2119">MUST NOT</em> be used to override any parameter entities in the DTD.</li>
</ol>
<p>The MIME type used to refer to a conforming XHTML-Print document <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> be "application/xhtml+xml" with an <em title="OPTIONAL in RFC 2119
context" class="RFC2119">OPTIONAL</em> "profile" parameter of 'http://www.w3.org/Markup/Profile/Print'. An <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em> "charset" parameter
<em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> be provided with the MIME type. Invalid values <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be ignored and the result be
as if the value were "utf-8". Usage of the <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em> "charset" parameter is as described in Section 3.2 of <cite>RFC3023 - XML Media
Types</cite> [<a href="#ref_rfc3023">RFC3023</a>]. Usage of the <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em> "profile" parameter is as described in Section 8 of <cite>
RFC3236 - The 'application/xhtml+xml' Media Type</cite> <a href="#ref_rfc3236">RFC3236</a>].</p>
<h2 typeof='bibo:Chapter' about='#s2.2' id='s2.2'>2.2. Client Conformance</h2>
<ol>
<li>Clients <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> produce a well-formed XHTML-Print document as defined in XHTML 1.0 [<a href="#ref_xhtml1">XHTML1</a>] and in <a href=
"#s2.1">Document Conformance</a>.</li>
<li>Beyond number 1 above, clients are not <em title="REQUIRED in RFC 2119 context" class="RFC2119">REQUIRED</em> to use more of the XHTML-Print elements or style sheet attributes than necessary to
get the desired output.</li>
</ol>
<h2 typeof='bibo:Chapter' about='#s2.3' id='s2.3'>2.3 Printer Conformance</h2>
<h3 typeof='bibo:Chapter' about='#s2.3.1' id='s2.3.1'>2.3.1 Formatting/Rendering Rules</h3>
<!-- ************************************* --><!-- Printer Conformance Statement --><!-- ************************************* -->
<p>A printer user agent <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> conform to the <a href=
"http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/conformance.html#s_conform_user_agent">XHTML Family User Agent Conformance</a> section of the <cite>Modularization of <abbr title=
"Extensible HyperText Markup Language">XHTML</abbr></cite> specification ([<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 3.5) with the following exceptions and additions:</p>
<ol>
<li id="s2.3.1.images">Images:
<ul>
<li>If a printer encounters an image in a format it does not support, it <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> render any alternate content provided, and <em title="SHOULD
in RFC 2119 context" class="RFC2119">SHOULD</em> reserve the space specified by the <code>height</code> and <code>width</code> attributes and <em title="MAY in RFC 2119 Context" class="RFC2119">
MAY</em> optionally draw a box around this space of the size specified for the image.</li>
<li>If the image format is not supported and no alternate content is provided, the image is omitted and space <em title="SHOULD NOT in RFC 2119 Context" class="RFC2119">SHOULD NOT</em> be
reserved.</li>
<li>If the image format is supported and the <code>height</code> and <code>width</code> attributes are not provided, the printer <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> attempt
to print the image at its intrinsic size. If the image data contain no size information, this specification does not define the size at which the image will be rendered.</li>
<li>A printer <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support images referenced by a URI <a href="#ref_rfc3986">[RFC3986]</a> utilizing an http <a href="#ref_rfc2616">
[RFC2616]</a> scheme. Support for other schemes is <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em>.</li>
</ul>
</li>
<li>Printers that do not support the <code>xml:lang</code> attribute are not <em title="REQUIRED in RFC 2119 context" class="RFC2119">REQUIRED</em> to adhere to the rules for language specific white
space handling.</li>
</ol>
<!-- * End of Statement ****************** -->
<h3 typeof='bibo:Chapter' about='#s2.3.2' id='s2.3.2'>2.3.2 XHTML Requirements</h3>
<ol>
<li>A conforming printer <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> support all XHTML Modules listed in <a href="#s_xhtmlmodules">The XHTML-Print Document Type</a>.</li>
<li>A conforming printer <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> print a static version of a form using default and selected values as specified in the form.</li>
<li>A conforming printer <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> identify this datastream by the exact string: "XHTML-Print" (without the quotation marks) in all service
discovery records and protocols, device identification records and protocols, and in other cases where a list of supported datastreams is to be presented by the printer. Where such datastreams are
identified by a MIME media type, the identifier "application/xhtml+xml" <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> be used in combination with a "profile" parameter of
"http://www.w3.org/Markup/Profile/Print"; <em>e.g.,</em>
<div class="code" style="MARGIN: 10px; TEXT-ALIGN: center; PADDING: 10px;">application/xhtml+xml; profile="http://www.w3.org/Markup/Profile/Print"</div>
</li>
</ol>
<!--OddPage-->
<h1 typeof='bibo:Chapter' about='#s_xhtmlmodules' id="s_xhtmlmodules">3. The <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> Document Type</h1>
<p>The <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> document type is defined as a set of <abbr title="Extensible HyperText Markup Language">XHTML</abbr> modules.
All <abbr title="Extensible HyperText Markup Language">XHTML</abbr> modules are defined in the <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite>
specification [<a href="#ref_xhtmlmod">XHTMLMOD</a>].</p>
<p><abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> consists of the following <abbr title="Extensible HyperText Markup Language">XHTML</abbr> modules:</p>
<dl>
<dt>Structure Module*</dt>
<dd><code>body, head, html, title</code></dd>
<dt>Text Module*</dt>
<dd><code>abbr, acronym, address, blockquote, br, cite, code, dfn, div, em, h1, h2, h3, h4, h5, h6, kbd, p, pre, q, samp, span, strong, var</code></dd>
<dt>Hypertext Module*</dt>
<dd><code>a</code></dd>
<dt>List Module*</dt>
<dd><code>dl, dt, dd, ol, ul, li</code></dd>
<dt>Text Extension Module - Presentation**</dt>
<dd><code>b, big, hr, i, small, sub, sup, tt</code></dd>
<dt>Basic Forms Module</dt>
<dd><code>form, input, label, select, option, textarea</code></dd>
<dt>Basic Tables Module</dt>
<dd><code>caption, table, td, th, tr</code></dd>
<dt>Image Module</dt>
<dd><code>img</code></dd>
<dt>Object Module</dt>
<dd><code>object, param</code></dd>
<dt>Metainformation Module</dt>
<dd><code>meta</code></dd>
<dt>Scripting Module**</dt>
<dd><code>noscript</code>, <code>script</code></dd>
<dt>Style Sheet Module**</dt>
<dd><code>style</code></dd>
<dt>Style Attribute Module**</dt>
<dd><code>style</code> attribute</dd>
<dt>Link Module</dt>
<dd><code>link</code></dd>
<dt>Base Module</dt>
<dd><code>base</code></dd>
</dl>
<p><em>(*) = This module is a <em title="REQUIRED in RFC 2119 context" class="RFC2119">REQUIRED</em> <a href="http://www.w3.org/TR/xhtml-modularization/conformance.html#s_conform_document_type">XHTML
Host Language</a> module.<br />
(**) = These modules are not a part of XHTML Basic but are <em title="REQUIRED in RFC 2119 context" class="RFC2119">REQUIRED</em> for XHTML-Print.</em></p>
<p>An <abbr title="Extensible Markup Language">XML</abbr> 1.0 <abbr title="Document Type Definition">DTD</abbr> is available in <a href="#a_dtd">Appendix B.</a> An XML Schema implementation is
available in <a href="#a_schema">Appendix C.</a></p>
<h2 typeof='bibo:Chapter' about='#s3.1' id='s3.1'>3.1 Attributes and Attribute Collections</h2>
<p>Some of the attributes defined in the <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> [<a href="#ref_xhtmlmod">XHTMLMOD</a>] are not applicable to
the printed page or are not relevant due to the exclusion of their module from XHTML-Print. Other attributes are not <em title="REQUIRED in RFC 2119 context" class="RFC2119">REQUIRED</em> but if
supported by a printer, support <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> be provided in the <em title="RECOMMENDED in RFC 2119 context" class="RFC2119">RECOMMENDED</em>
manner.</p>
<p>Each attribute in the following sections is annotated with one of the following keywords indicating support options for a conforming printer:</p>
<table border="1" class="keys" summary="Description of Keys: Must means mandatory support, May means optional support, N/A means does not apply">
<tbody>
<tr>
<th>Key</th>
<th>Description</th>
</tr>
<tr>
<td class="key" id="Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></td>
<td>Support is mandatory; a conforming printer <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> implement this attribute. (However, the inability of a printer to implement part of this
specification due to the limitations of a particular device does not imply non-conformance. <em>E.g.,</em> the fact that a monochrome printer user agent cannot render colors does not preclude its
conformance to this specification.)</td>
</tr>
<tr>
<td class="key" id="Should_Key"><em title="SHOULD In RFC 2119 Context" class="RFC2119">SHOULD</em></td>
<td>Support for the attribute is <em title="RECOMMENDED in RFC 2119 Context" class="RFC2119">RECOMMENDED,</em> but not <em title="REQUIRED in RFC 2119 Context" class="RFC2119">REQUIRED</em>.</td>
</tr>
<tr>
<td class="key" id="May_key"><em title="MAY In RFC 2119 Context" class="RFC2119">MAY</em></td>
<td>The attribute's functionality is entirely <em title="OPTIONAL in RFC 2119 Context" class="RFC2119">OPTIONAL</em>.</td>
</tr>
<tr>
<td class="key" id="NA_key">N/A</td>
<td>The attribute does Not Apply to the printed page; a conforming printer <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> ignore this attribute for one of the following reasons, but <em
title="MUST NOT in RFC 2119 context" class="RFC2119">MUST NOT</em> treat it as an error:
<ul>
<li>The attribute applies to a user interface which is not represented on a printed page. For example, the <code>accesskey</code> attribute is irrelevant.</li>
<li>The attribute applies to form submission which is not performed by the printer, the <code>method</code> attribute of the form element for example.</li>
<li>The attribute, such as <code>title</code>, describes data which is not represented on a printed page</li>
<li>The attribute applies to objects other than JPEG images, such as Java applets.</li>
<li>The attribute does not apply since links specified by the anchor element are not followed.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>The <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ([<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 5.1) contains a set of attribute collections for
ease of presentation. This specification continues this practice with the same conditions, that is, that the collections below are informative and their contents normative.</p>
<table border="1" summary="Definitions of Attribute Collections">
<thead>
<tr>
<th abbr="Collection">Collection Name</th>
<th abbr="Attributes">Attributes in Collection</th>
<th abbr="Processing"><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td><a id="s_core_collection">Core</a></td>
<td class="RequiredAttribute">class (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_NMTOKENS">NMTOKENS</a><a href=
"#tn0">†</a></span> )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>Core</td>
<td class="RequiredAttribute">id (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_ID">ID</a><a href="#tn0">†</a></span> )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>Core</td>
<td class="AttributeNotRequired">title (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn0">†</a></span> )</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td><a id="s_i18n_collection">I18N</a></td>
<td class="AttributeNotRequired">xml:lang (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_NMTOKEN">NMTOKEN</a><a href=
"#tn0">†</a></span> )</td>
<td class="AttributeNotRequired"><a href="#May_key"><em title="MAY In RFC 2119 Context" class="RFC2119">MAY</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td><a id="s_style_collection">Style</a></td>
<td class="RequiredAttribute">style (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href="#tn0">†</a></span>
)</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td><a id="s_common_collection">Common</a></td>
<td><span class="collection"><a href="#s_core_collection">Core</a></span> + <span class="collection"><a href="#s_i18n_collection">I18N</a></span> + <span class="collection"><a href=
"#s_style_collection">Style</a></span></td>
<td>See Collections</td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Note:</p>
<p class="aTableNote" id="tn0">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<p>Note that the <code>title</code> attribute of the Core collection is not applicable to the printed page since there is no place to display such supplementary information.</p>
<p> A printer <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> support special processing based on the natural language of the document, such as the use of guillemets for quotation marks
in French text. If a printer implements processing based on the natural language of the document, that processing <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> be controlled by the
<code>xml:lang</code> attribute.</p>
<p>A printer <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> support CSS style sheets, as noted in section <a href="#s1.3.2">1.3.2 Presentation</a>, within the limits of its
capabilities.</p>
<h2 typeof='bibo:Chapter' about='#s3.2' id='s3.2'>3.2 Structure Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for Structure Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>body</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span></td>
<td>See Collection</td>
</tr>
<tr>
<td>head</td>
<td><span class="collection"><a href="#s_i18n_collection">I18N</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>head</td>
<td class="AttributeNotRequired">profile (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn1">†</a></span>
)</td>
<td class="AttributeNotRequired"><a href="#May_key"><em title="MAY In RFC 2119 Context" class="RFC2119">MAY</em></a></td>
</tr>
<tr>
<td>html</td>
<td><span class="collection"><a href="#s_i18n_collection">I18N</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>html</td>
<td class="AttributeNotRequired">version (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn1">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>html</td>
<td class="RequiredAttribute">xmlns (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn1">†</a></span> =
"http://www.w3.org/1999/xhtml")</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>title</td>
<td><span class="collection"><a href="#s_i18n_collection">I18N</a></span></td>
<td>See Collection</td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Note:</p>
<p class="aTableNote" id="tn1">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<p>If a printer implements support for meta data then it <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support the <code>profile</code> attribute of the <code>head</code>
element.</p>
<p>The <code>version</code> attribute is not applicable for printing since it was deprecated in the <cite>HTML 4.01 Specification</cite> [<a href="#ref_html4">HTML4</a>] in favor of version
information within the DTD.</p>
<p>A printer <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> ignore the content of the <code>title</code> element since it is not part of the document's body.</p>
<h2 typeof='bibo:Chapter' about='#s3.3' id='s3.3'>3.3 Text Module</h2>
<table border="1" width="100%" summary="Elements and Attributes in Text Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>abbr, acronym, address</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span></td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>blockquote</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>blockquote</td>
<td class="AttributeNotRequired">cite (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn2">†</a></span>
)</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>br</td>
<td><span class="collection"><a href="#s_core_collection">Core</a></span></td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>cite, code, dfn, div, em, h1, h2, h3, h4, h5, h6, kbd, p</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span></td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>pre</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>pre</td>
<td class="RequiredAttribute">xml:space="preserve"</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>q</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>q</td>
<td class="AttributeNotRequired">cite (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn2">†</a></span>
)</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>samp, span, strong, var</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span></td>
<td>See Collection</td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Note:</p>
<p class="aTableNote" id="tn2">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<h2 typeof='bibo:Chapter' about='#s3.4' id='s3.4'>3.4 Hypertext Module</h2>
<table border="1" width="100%" summary="The A element and its attributes">
<thead>
<tr>
<th>Element</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>a</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>a</td>
<td class="AttributeNotRequired">accesskey (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Character">Character</a><a href=
"#tn3">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>a</td>
<td class="AttributeNotRequired">charset (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Charset">Charset</a><a href=
"#tn3">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>a</td>
<td class="AttributeNotRequired">href (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn3">†</a></span>
),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>a</td>
<td class="AttributeNotRequired">hreflang (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_LanguageCode">LanguageCode</a><a href=
"#tn3">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>a</td>
<td class="AttributeNotRequired">rel (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_LinkTypes">LinkTypes</a><a href=
"#tn3">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>a</td>
<td class="AttributeNotRequired">rev (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_LinkTypes">LinkTypes</a><a href=
"#tn3">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>a</td>
<td class="AttributeNotRequired">tabindex (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href=
"#tn3">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>a</td>
<td class="AttributeNotRequired">type (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_ContentType">ContentType</a><a href=
"#tn3">†</a></span> )</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Note:</p>
<p class="aTableNote" id="tn3">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<h2 typeof='bibo:Chapter' about='#s3.5' id='s3.5'>3.5 List Module</h2>
<table border="1" width="100%" summary="Elements and Attributes of the List Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>dl, dt, dd, ol, ul, li</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span></td>
<td>See Collection</td>
</tr>
</tbody>
</table>
<h2 typeof='bibo:Chapter' about='#s3.6' id='s3.6'>3.6 Presentation Module</h2>
<table border="1" width="100%" summary="Elements and Attributes in Presentation Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>b, big, hr, i, small, sub, sup, tt</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span></td>
<td>See Collection</td>
</tr>
</tbody>
</table>
<h2 typeof='bibo:Chapter' about='#s3.7' id='s3.7'>3.7 Basic Forms Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for Basic Forms Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>form</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>form</td>
<td class="AttributeNotRequired">action<a href="#attr_req1">*</a> (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href=
"#tn4">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>form</td>
<td class="AttributeNotRequired">method ("get"<a href="#def_val1">**</a> | "post"),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>form</td>
<td class="AttributeNotRequired">enctype (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_ContentType">ContentType</a><a href=
"#tn4">†</a></span> )</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>input</td>
<td class="AttributeNotRequired">accesskey (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Character">Character</a><a href=
"#tn4">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute">checked ("checked"),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>input</td>
<td class="AttributeNotRequired">maxlength (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href=
"#tn4">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>input</td>
<td class="AttributeNotRequired">name (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn4">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute">size (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href="#tn4">†</a></span>
),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>input</td>
<td class="AttributeNotRequired">src (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn4">†</a></span>
),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>input</td>
<td class="AttributeNotRequired">tabindex (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href=
"#tn4">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute" style="vertical-align:top">type("text"<a href="#def_val1">**</a> )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute" style="vertical-align:top">type("password" )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute" style="vertical-align:top">type("checkbox" )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute" style="vertical-align:top">type("radio" )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute" style="vertical-align:top">type("submit")</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute" style="vertical-align:top">type("reset" )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute" style="vertical-align:top">type("hidden" )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>input</td>
<td class="RequiredAttribute">value (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href="#tn4">†</a></span>
)</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>label</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>label</td>
<td class="AttributeNotRequired">accesskey (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Character">Character</a><a href=
"#tn4">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>label</td>
<td class="AttributeNotRequired">for (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_IDREF">IDREF</a><a href="#tn4">†</a></span>
)</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>select</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>select</td>
<td class="AttributeNotRequired">multiple ("multiple"),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>select</td>
<td class="AttributeNotRequired">name (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn4">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>select</td>
<td class="RequiredAttribute">size (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href="#tn4">†</a></span>
),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>select</td>
<td class="AttributeNotRequired">tabindex (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href=
"#tn4">†</a></span> )</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>option</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>option</td>
<td class="RequiredAttribute">selected ("selected"),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="AttributeNotRequired">
<td>option</td>
<td class="AttributeNotRequired">value (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn4">†</a></span> )</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>textarea</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>textarea</td>
<td class="AttributeNotRequired">accesskey (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Character">Character</a><a href=
"#tn4">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>textarea</td>
<td class="RequiredAttribute">cols<a href="#attr_req1">*</a> (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a
href="#tn4">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>textarea</td>
<td class="AttributeNotRequired">name (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn4">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>textarea</td>
<td class="RequiredAttribute">rows<a href="#attr_req1">*</a> (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a
href="#tn4">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>textarea</td>
<td class="AttributeNotRequired">tabindex (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href=
"#tn4">†</a></span> )</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Notes:</p>
<p class="aTableNote" id="tn4">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<p class="aTableNote" id="attr_req1">* The attribute <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be present.</p>
<p class="aTableNote" id="def_val1">** The value is the default.</p>
<p>The <code>src</code> attribute of the <code>input</code> element is not supported since the <code>image</code> type is not part of basic forms.</p>
<p>The <code>hidden</code> type for the <code>input</code> element <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be supported even though nothing is printed, so that a printer can
correctly recognize and ignore the element.</p>
<h2 typeof='bibo:Chapter' about='#s3.8' id='s3.8'>3.8 Basic Tables Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for Basic Tables Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>caption</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span></td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>table</td>
<td><span class="collection"><a href="#s_common_collection">Common,</a></span></td>
<td>See Collection</td>
</tr>
<tr>
<td>table</td>
<td class="AttributeNotRequired">summary ( <span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Text">Text</a><a href=
"#tn5">†</a></span> )</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>td, th</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>td, th</td>
<td class="AttributeNotRequired">abbr (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Text">Text</a><a href="#tn5">†</a></span>
),</td>
<td class="AttributeNotRequired"><a href="#May_key"><em title="MAY In RFC 2119 Context" class="RFC2119">MAY</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>td, th</td>
<td class="RequiredAttribute">align ("left" | "center" | "right"),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>td, th</td>
<td class="AttributeNotRequired">axis (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn5">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>td, th</td>
<td class="RequiredAttribute">colspan (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href=
"#tn5">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>td, th</td>
<td class="AttributeNotRequired">headers (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_IDREFS">IDREFS</a><a href=
"#tn5">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>td, th</td>
<td class="RequiredAttribute">rowspan (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href=
"#tn5">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>td, th</td>
<td class="AttributeNotRequired">scope ("row" | "col"),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>td, th</td>
<td class="RequiredAttribute">valign ("top" | "middle" | "bottom")</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>tr</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>tr</td>
<td class="RequiredAttribute">align ("left" | "center" | "right"),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>tr</td>
<td class="RequiredAttribute">valign ("top" | "middle" | "bottom")</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Note:</p>
<p class="aTableNote" id="tn5">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<p>If a printer implements a feature to truncate the contents of a cell because of space constraints, it <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support the <code>abbr</code>
attribute and print the value of the <code>abbr</code> attribute (if present) instead of the cell's content.</p>
<p>A printer <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support the values <code>left</code>, <code>right</code>, and <code>center</code> for the <code>align</code> attribute of
the <code>td</code>, <code>th</code>, and <code>tr</code> elements; other values are <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em>. If the <code>align</code> attribute is
missing or has an unsupported value, a printer <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> act as if the <code>align</code> attribute has the value <code>left</code> for the <code>
td</code> and <code>tr</code> elements, and as if the <code>align</code> attribute has the value <code>center</code> for the <code>th</code> element.</p>
<p>A printer <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support the values <code>top</code>, <code>middle</code>, and <code>bottom</code> for the <code>valign</code> attribute of
the <code>td</code>, <code>th</code>, and <code>tr</code> elements, other values are <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em>. If the <code>valign</code> attribute is
missing or has unrecognized value, a printer <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> act as if the <code>valign</code> attribute has the value <code>middle</code>. Vertical
alignment is undefined across page boundaries.</p>
<h2 typeof='bibo:Chapter' about='#s3.9' id='s3.9'>3.9 Image Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for Image Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>img</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>img</td>
<td class="RequiredAttribute">alt<a href="#attr_req2">*</a> (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Text">Text</a><a href=
"#tn6">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>img</td>
<td class="RequiredAttribute">height (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Length">Length</a><a href=
"#tn6">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>img</td>
<td class="AttributeNotRequired">longdesc (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href=
"#tn6">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>img</td>
<td class="RequiredAttribute">src<a href="#attr_req2">*</a> (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href=
"#tn6">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>img</td>
<td class="RequiredAttribute">width (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Length">Length</a><a href=
"#tn6">†</a></span> )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Notes:</p>
<p class="aTableNote" id="tn6">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<p class="aTableNote" id="attr_req2">* The attribute <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be present.</p>
<p>Printers <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support the http <a href="#ref_rfc2616">[RFC2616]</a> URI scheme <a href="#ref_rfc3986">[RFC3986]</a>. Support for other
schemes is <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em>. Printers <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support the JPEG image format as defined in
<a href="#a_jpeg">Appendix A</a>.</p>
<p>Conforming documents <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> specify the width and height of the image using the <code>width</code> and <code>height</code> attributes or
equivalent styling instructions. (See <a href="#s2.3.1">2.3.1 Formatting/Rendering Rules</a>).</p>
<h2 typeof='bibo:Chapter' about='#s3.10' id='s3.10'>3.10 Object Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for Object Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>object</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collections</td>
</tr>
<tr>
<td>object</td>
<td class="AttributeNotRequired">archive (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URIs">URIs</a><a href=
"#tn7">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>object</td>
<td class="AttributeNotRequired">classid (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn7">†</a></span>
),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>object</td>
<td class="RequiredAttribute">codebase (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn7">†</a></span>
),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>object</td>
<td class="AttributeNotRequired">codetype (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_ContentType">ContentType</a><a href=
"#tn7">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>object</td>
<td class="RequiredAttribute">data (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn7">†</a></span>
),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>object</td>
<td class="AttributeNotRequired">declare ("declare"),</td>
<td class="AttributeNotRequired"><a href="#May_key"><em title="MAY In RFC 2119 Context" class="RFC2119">MAY</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>object</td>
<td class="RequiredAttribute">height (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Length">Length</a><a href=
"#tn7">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>object</td>
<td class="AttributeNotRequired">name (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn7">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>object</td>
<td class="AttributeNotRequired">standby (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Text">Text</a><a href=
"#tn7">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>object</td>
<td class="AttributeNotRequired">tabindex (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Number">Number</a><a href=
"#tn7">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>object</td>
<td class="RequiredAttribute">type ("image/jpeg"),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>object</td>
<td class="RequiredAttribute">width (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Length">Length</a><a href=
"#tn7">†</a></span> )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>param</td>
<td class="AttributeNotRequired">id (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_ID">ID</a><a href="#tn7">†</a></span>
),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>param</td>
<td class="AttributeNotRequired">name<a href="#attr_req3">*</a> (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a
href="#tn7">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>param</td>
<td class="AttributeNotRequired">type (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_ContentType">ContentType</a><a href=
"#tn7">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>param</td>
<td class="AttributeNotRequired">value (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn7">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>param</td>
<td class="AttributeNotRequired">valuetype ("data"<a href="#def_val2">**</a> | "ref" | "object")</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Notes:</p>
<p class="aTableNote" id="tn7">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<p class="aTableNote" id="attr_req3">* The attribute <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be present.</p>
<p class="aTableNote" id="def_val2">** The value is the default.</p>
<p>Printers <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support the http <a href="#ref_rfc2616">[RFC2616]</a> URI scheme <a href="#ref_rfc3986">[RFC3986]</a>. Support for other
schemes is <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em>.</p>
<p>A printer <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support resources of type "image/jpeg." A printer <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> support
other types of image formats and therefore other values of the <code>type</code> attribute. A printer <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> process the content of the <code>
object</code> element when it does not recognize or support the object type referenced by the value of the <code>type</code> attribute.</p>
<p>Conforming documents <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> specify the width and height of the image using the <code>width</code> and <code>height</code> attributes or
equivalent styling instructions. (See <a href="#s2.3.1">2.3.1 Formatting/Rendering Rules</a>).</p>
<p>The <code>param</code> element's purpose is to pass data to an application specified in the enclosing <code>object</code> element. The <code>param</code> element <em title="MAY in RFC 2119
Context" class="RFC2119">MAY</em> be completely ignored.</p>
<h2 typeof='bibo:Chapter' about='#s3.11' id='s3.11'>3.11 Metainformation Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for Metainformation Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr>
<td>meta</td>
<td><span class="collection"><a href="#s_i18n_collection">I18N</a></span>,</td>
<td>See Collection</td>
</tr>
<tr>
<td>meta</td>
<td class="AttributeNotRequired">content<a href="#attr_req4">*</a> (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a
href="#tn8">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>meta</td>
<td class="AttributeNotRequired">http-equiv (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_NMTOKEN">NMTOKEN</a><a href=
"#tn8">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>meta</td>
<td class="AttributeNotRequired">name (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_NMTOKEN">NMTOKEN</a><a href=
"#tn8">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>meta</td>
<td class="AttributeNotRequired">scheme (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a><a href=
"#tn8">†</a></span> )</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Notes:</p>
<p class="aTableNote" id="tn8">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<p class="aTableNote" id="attr_req4">* The attribute <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be present.</p>
<p>A printer <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> implement support for this element and provide implementation specific processing of the meta-information. However,
guidelines and/or recommendations for processing a document's meta-information are beyond the scope of this document.</p>
<h2 typeof='bibo:Chapter' about='#s3.12' id='s3.12'>3.12 Scripting Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for the Script Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>noscript</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collections</td>
</tr>
<tr>
<td>script</td>
<td class="AttributeNotRequired">charset (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Charset">Charset</a></span>),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>script</td>
<td class="AttributeNotRequired">defer ("defer"),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>script</td>
<td class="AttributeNotRequired">src(<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a>)</span>,</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>script</td>
<td class="AttributeNotRequired">type (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_ContentType">ContentType</a></span>),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr>
<td>script</td>
<td class="AttributeNotRequired">scheme (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_CDATA">CDATA</a></span>)</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
</tbody>
</table>
<p>Scripts, as programs that are executed in conjunction with a document, are not relevant to the printed page and <em title="MUST NOT in RFC 2119 context" class="RFC2119">MUST NOT</em> be executed
or printed. The <code>noscript</code> element contains alternate content that <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be printed in place of the content of the <code>
script</code> element when present.</p>
<h2 typeof='bibo:Chapter' about='#s3.13' id='s3.13'>3.13 Style Sheet Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for Style Sheet Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr>
<td>style</td>
<td><span class="collection"><a href="#s_i18n_collection">I18N</a></span>,</td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>style</td>
<td class="RequiredAttribute">media (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_MediaDesc">MediaDesc</a><a href=
"#tn9">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Should_Key"><em title="SHOULD In RFC 2119 Context" class="RFC2119">SHOULD</em></a></td>
</tr>
<tr>
<td>style</td>
<td class="AttributeNotRequired">title (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Text">Text</a><a href="#tn9">†</a></span>
),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>style</td>
<td class="RequiredAttribute">type<a href="#attr_req5">*</a>,</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>style</td>
<td class="RequiredAttribute">xml:space="preserve"</td>
<td class="RequiredAttribute"><a href="#Should_Key"><em title="SHOULD In RFC 2119 Context" class="RFC2119">SHOULD</em></a></td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Notes:</p>
<p class="aTableNote" id="tn9">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<p class="aTableNote" id="attr_req5">* The attribute <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be present.</p>
<p>A printer <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> read and process the content of <code>style</code> elements where the <code>media</code> attribute has the value <code>
print</code> or <code>all</code>. A printer <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> read and process the content of <code>style</code> elements where the <code>media</code>
attribute has the value <code>projection</code>. A printer <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> ignore the content of <code>style</code> elements where the <code>
media</code> attribute has any other value. The absence of the <code>media</code> attribute <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be treated as if the <code>media</code>
attribute had the value <code>all</code>.</p>
<p>A printer <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> read and process the content of <code>style</code> elements where the value of the <code>type</code> attribute is
"text/css"; a printer <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> read and process the content of <code>style</code> elements where the value of the <code>type</code> attribute is
other than "text/css"; all unsupported values for <code>type</code> <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> cause the content to be ignored. Style elements without a <code>
type</code> attribute will be treated in an implementation-dependent manner.</p>
<h2 typeof='bibo:Chapter' about='#s3.14' id='s3.14'>3.14 Style Sheet Attribute Module</h2>
<p>This module adds the style attribute to the <span class="collection"><a href="#s_common_collection">Common</a></span> attribute collection (section 3.1).</p>
<h2 typeof='bibo:Chapter' about='#s3.15' id='s3.15'>3.15 Link Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for Link Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>link</td>
<td><span class="collection"><a href="#s_common_collection">Common</a></span>,</td>
<td>See Collection</td>
</tr>
<tr class="RequiredAttribute">
<td>link</td>
<td class="RequiredAttribute">charset (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_Charset">Charset</a><a href=
"#tn10">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>link</td>
<td class="RequiredAttribute">href (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href="#tn10">†</a></span>
),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>link</td>
<td class="AttributeNotRequired">hreflang (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_LanguageCode">LanguageCode</a><a href=
"#tn10">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#May_key"><em title="MAY In RFC 2119 Context" class="RFC2119">MAY</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>link</td>
<td class="RequiredAttribute">media (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_MediaDesc">MediaDesc</a><a href=
"#tn10">†</a></span> ),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr class="RequiredAttribute">
<td>link</td>
<td class="RequiredAttribute">rel ("stylesheet"),</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
<tr>
<td>link</td>
<td class="AttributeNotRequired">rev (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_LinkTypes">LinkTypes</a><a href=
"#tn10">†</a></span> ),</td>
<td class="AttributeNotRequired"><a href="#NA_key">N/A</a></td>
</tr>
<tr class="RequiredAttribute">
<td>link</td>
<td class="RequiredAttribute">type</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Note:</p>
<p class="aTableNote" id="tn10">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite> ( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4.3 )</p>
<p>Printers <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support the http <a href="#ref_rfc2616">[RFC2616]</a> URI scheme <a href="#ref_rfc3986">[RFC3986]</a>. Support for other
schemes is <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em>.</p>
<p>If the printer implements processing based on the natural language of the document, then the <code>hreflang</code> attribute <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be
supported.</p>
<p>A printer <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> read and process the content of external style sheets where the <code>media</code> attribute has the value <code>
print</code> or <code>all</code>. A printer <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> read and process the content of external style sheets where the <code>media</code> attribute
has the value <code>projection</code>. A printer <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> ignore the content of external style sheets where the <code>media</code> attribute
has any other value. The absence of the <code>media</code> attribute <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be treated as if the <code>media</code> attribute had the value
<code>all</code>.</p>
<p>A printer <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> support the value <code>stylesheet</code> for the <code>rel</code> attribute along with the value "text/css" for the
<code>type</code> attribute; all other values are <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em>.</p>
<h2 typeof='bibo:Chapter' about='#s3.16' id='s3.16'>3.16 Base Module</h2>
<table border="1" width="100%" summary="Elements and Attributes for Base Module">
<thead>
<tr>
<th>Elements</th>
<th>Attributes</th>
<th><em title="REQUIRED In RFC 2119 Context" class="RFC2119">REQUIRED</em> Processing</th>
</tr>
</thead>
<tbody>
<tr class="RequiredAttribute">
<td>base</td>
<td class="RequiredAttribute">href<a href="#attr_req6">*</a> (<span class="datatype"><a href="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstraction.html#dt_URI">URI</a><a href=
"#tn11">†</a></span> )</td>
<td class="RequiredAttribute"><a href="#Y_key"><em title="MUST In RFC 2119 Context" class="RFC2119">MUST</em></a></td>
</tr>
</tbody>
</table>
<p class="tableNotes">Table Notes:</p>
<p class="aTableNote" id="tn11">† See <cite>Modularization of <abbr title="Extensible HyperText Markup Language">XHTML</abbr></cite>( [<a href="#ref_xhtmlmod">XHTMLMOD</a>], section 4. 3</p>
<p class="aTableNote" id="attr_req6">* The attribute <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> be present.</p>
<p>Printers <em title="MUST in RFC 2119 context" class="RFC2119">MUST</em> support the http <a href="#ref_rfc2616">[RFC2616]</a> URI scheme <a href="#ref_rfc3986">[RFC3986]</a>. Support for other
schemes is <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em>.</p>
<!-- ######################### --><!-- End of Doc type definition --><!-- ######################### -->
<h2 typeof='bibo:Chapter' about='#s_charentities' id='s_charentities'>3.17 Character Entities</h2>
<p>XHTML-Print is in the family of XHTML document types, since it is created by combining XHTML modules. The character entities that are part of XHTML-Print are, therefore, defined in <a href=
"http://www.w3.org/TR/xhtml-modularization/dtd_module_defs.html#a_dtd_xhtml_character_entities">XHTML Character Entities</a> ([<a href="#ref_xhtmlmod">XHTMLMOD</a>], Section F.1).</p>
<!--OddPage-->
<h1 typeof='bibo:Chapter' about='#s_howtouse' id="s_howtouse">4. How to Use <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr></h1>
<p>XHTML-Print inherits all the structure, encoding and other basic infrastructure specified by <cite>XHTML 1.0</cite> [<a href="#ref_xhtml1">XHTML1</a>]. The following sections describe and clarify
the application and usage restrictions of XHTML-Print.</p>
<h2 typeof='bibo:Chapter' about='#s.4.1' id='s.4.1'>4.1 Images</h2>
<p>This document specifies only one mandatory image format: baseline JPEG as defined in <cite>JPEG File Interchange Format</cite> [<a href="#ref_jpeg">JPEG</a>]. See <a href="#a_jpeg">Appendix A</a>
for a description of JPEG decoder requirements. Printers are not <em title="REQUIRED in RFC 2119 context" class="RFC2119">REQUIRED</em> to support:</p>
<ul>
<li>Embedded thumbnails</li>
<li>Rotation</li>
<li>Progressive rendering</li>
</ul>
<p>within the JFIF (JPEG File Interchange Format) and EXIF (Exchangeable Image File Format) files.</p>
<h3 typeof='bibo:Chapter' about='#s.4.1.1' id='s.4.1.1'>4.1.1 Recommended Attributes on the <code>img</code> and <code>object</code> Elements</h3>
<p>Because many printers create the page in a serial manner from top to bottom, it is important for the printer to know the size of images before retrieving the image data itself. This information is
then used to create portions of the page layout.<br />
</p>
<p>Therefore, the document <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> include the <code>height</code> and <code>width</code> attributes within the <code>img</code> or the
<code>object</code> element (or equivalent styling instructions). These attributes <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> be expressed as pixels or percentages within the <code>
img</code> or the <code>object</code> element. Percentages are relative to the parent element and not the page width or printable area.<br />
</p>
<h3 typeof='bibo:Chapter' about='#s.4.1.2' id='s.4.1.2'>4.1.2 Image Data</h3>
<p>[Informative]</p>
<p>In traditional Web-based applications of XHTML, image data is contained in a separate file on a Web server that the user agent retrieves.</p>
<p>However, there are circumstances where it is desirable to include the image data along with the rest of the print data. For example, some low cost, resource constrained clients might want to
include images in their print output but cannot afford to include an HTTP server. Furthermore, circumstances could require that all the print data be encapsulated in a single file for
transportability, avoiding firewall issues, etc. Therefore, conforming XHTML-Print printers <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> optionally support a format that contains both
a document and its referenced image data as well as the <em title="REQUIRED in RFC 2119 context" class="REQUIRED">REQUIRED</em> traditional format that contains only the document.</p>
<p>The format recommended for including image data along with xhtml-print markup is defined by <cite>RFC3391 - The MIME Application/Vnd.pwg-multiplexed Content-type</cite>. [<a href=
"#ref_mimempx">MIMEMPX</a>].</p>
<div>
<p>Including image data as defined in <cite>RFC2397 - The data URL scheme</cite> [<a href="#ref_rfc2397">RFC2397</a>] may be appropriate for printers capable of buffering large amounts of data, but
will not achieve the intended results for most cost- and memory-constrained printer UA's. Because this method normally encodes the binary image data using base64 encoding, a significant increase in
the size of the data transmitted will be experienced. This should be avoided over low speed connections. Printers supporting included data can support base64 encoding using the <code>img</code> or
<code>object</code> element.</p>
<div class="code" style="BORDER-RIGHT: 1px solid; PADDING-RIGHT: 4px; BORDER-TOP: 1px solid; PADDING-LEFT: 4px; PADDING-BOTTOM: 1px; BORDER-LEFT: 1px solid; PADDING-TOP: 1px; BORDER-BOTTOM: 1px
solid"><br />
<object height="20 mm" width="20 mm" type="image/jpeg"<br />
   data="data:image/jpeg;base64,aGh67Fghsapa0Hji7dfGSweTa . . ."><br />
   Example Image </object><br />
</div>
or
<div class="code" style="BORDER-RIGHT: 1px solid; PADDING-RIGHT: 4px; BORDER-TOP: 1px solid; PADDING-LEFT: 4px; PADDING-BOTTOM: 1px; BORDER-LEFT: 1px solid; PADDING-TOP: 1px; BORDER-BOTTOM: 1px
solid"><img height="20 mm" width="20 mm" alt="Example Image"<br />
   src="data:image/jpeg;base64,aGh67Fghsapa0Hji7dfGSweTa . . . " /></div>
</div>
<p>Mechanisms for determining whether or not a printer supports either of the above <em title="OPTIONAL in RFC 2119 context" class="RFC2119">OPTIONAL</em> document formats is outside the scope of
this specification.</p>
<h3 typeof='bibo:Chapter' about='#s.4.1.3' id='s.4.1.3'>4.1.3 Side-by-Side Images</h3>
<p>Low-cost printers today often have very little memory into which page data can be stored before being printed. As such, they may build and print the page in swaths on the fly from the top of the
page to the bottom. To enable the use of XHTML-Print in these low cost printers, some restrictions on the order of images contained in the XHTML-Print data stream must be added.</p>
<ol>
<li>If two or more images will be even partially side-by-side on the printed page (<em>i.e.,</em> a line across the short axis of the page will intersect more than one image), they <em title="SHOULD
in RFC 2119 context" class="RFC2119">SHOULD</em> be included by reference; for example <code><img src="http://example.com/example.jpg"></code>. This allows the printer to get chunks of the
image, as it needs it, as it prints down the page. Interleaved or included image data, as discussed in <a href="#s.4.1.2">Section 4.1.2</a>, is discouraged.</li>
<li>An XHTML-Print conforming printer lacking sufficient buffer space to hold multiple side-by-side images <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> choose to reformat the layout
of the page to preserve content. Printers <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> attempt to preserve content when encountering side-by-side images that <em title="MAY in RFC
2119 context" class="RFC2119">MAY</em> be impossible to print as specified within the XHTML-Print. Discarding the second and subsequent of the side-by-side images <em title="SHOULD in RFC 2119
context" class="RFC2119">SHOULD</em> be avoided unless preservation of content is best achieved by doing so. Other than attempting to best preserve content, this specification does not mandate any
specific behavior when encountering this situation. Clients providing images <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> order them from left-to-right top-to-bottom unless the
print direction is known to be otherwise.</li>
</ol>
<h2 typeof='bibo:Chapter' about='#s.4.2' id='s.4.2'>4.2 Style Sheets</h2>
<p>Conforming XHTML-Print printers <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> support both in-line and referenced style sheets within the <code>style</code> element or <code>
link</code> element in the <code>head</code> element of a document. Conforming XHTML-Print printers <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> also support the <code>
style</code> attribute (i.e. in-line style) when used within other elements as defined by <cite>XHTML 1.1</cite>[<a href="#ref_xhtml11">XHTML1.1</a>]. Normal cascading rules apply.</p>
<h2 typeof='bibo:Chapter' about='#s.4.3' id='s.4.3'>4.3 Forms Usage</h2>
<p>This section is informative.</p>
<p>An HTML form is a dynamic entity when the document is displayed in a browser: data can be entered into text fields, buttons can be pushed, selections made, and options checked. None of this
dynamic activity can be rendered on a printed page. However, a printed page can permanently record a particular state of the form. For example, users might wish to print forms that record products
ordered or payments made.</p>
<p>The following discussion illustrates the activity involved when interacting with and printing forms. Please refer to <a href="#SeqDiag_1">Sequence Diagram 1</a></p>
<p><img id="SeqDiag_1" src="formsUsageModel.jpg" height="404" width="600" alt="Sequence diagram of user, browser, and printer interactions, refer to the following steps" /><br />
<span class="Caption">Sequence Diagram 1. Forms Usage</span></p>
<p>Steps:</p>
<ol>
<li>The User enters a URL into the Browser</li>
<li>The Browser fetches the form from the Server and displays it</li>
<li>The User enters data into the form</li>
<li>The User asks the Browser to print the form</li>
<li>The Browser composes a page with the form and the user data</li>
<li>The Browser sends the newly composed form to the printer</li>
<li>The User selects the Submit button on the form</li>
<li>The Browser sends the user data to the Server</li>
</ol>
<div>
<p>Detailed discussion of Steps:</p>
<ol>
<li>The user interacts with a browser on a mobile device to access a form presented by a server on the network (steps 1 and 2 of <a href="#SeqDiag_1">Sequence Diagram 1</a>). The following fragment
of an XHTML-Print document shows what the server sends to the browser to present to the user. Please note, that the form is blank when first presented to the user.
<div class="code"><form action="http://example.com/prog/adduser" method="post"><br />
<label for="firstname">First name: </label><br />
<input type="text" id="firstname" /><br /><br />
<label for="lastname">Last name: </label><br />
<input type="text" id="lastname" /><br /><br />
<label for="email">email: </label><br />
<input type="text" id="email" size="40" /><br /><br />
<input type="checkbox" name="member" value="IEEE" /> IEEE <br /><br />
<input type="checkbox" name="member" value="ACM" /> ACM <br /><br />
<input type="submit" value="Send" /> <input type="reset" /><br />
</form><br />
</div>
<p>Here is an example presentation of the above form as the user would see it:</p>
<form method="post" action="http://example.com/prog/adduser">
<div><label for="firstname1">First name:</label> <input type="text" size="20" id="firstname1" /><br />
<label for="lastname1">Last name:</label> <input type="text" size="20" id="lastname1" /><br />
<label for="email1">email:</label> <input type="text" size="20" id="email1" /><br />
<input type="checkbox" name="member" value="IEEE" /> IEEE<br />
<input type="checkbox" name="member" value="ACM" /> ACM<br />
<input type="submit" value="Send" /> <input type="reset" value="Reset" name="Reset" /><br />
</div>
</form>
</li>
<li>The user enters data (step 3 of <a href="#SeqDiag_1">Sequence Diagram 1</a>) into the text fields and checks the IEEE check box so that the form now looks like the following:<br />
<form method="post" action="http://example.com/prog/adduser">
<div><label for="firstname">First name:</label> <input type="text" size="20" id="firstname" value="John" /><br />
<label for="lastname">Last name:</label> <input type="text" size="20" id="lastname" value="Doe" /><br />
<label for="email">email:</label> <input type="text" size="40" id="email" value="johnd@example.org" /><br />
<input type="checkbox" checked="checked" name="member" value="IEEE" /> IEEE<br />
<input type="checkbox" name="member" value="ACM" /> ACM<br />
<input type="submit" value="Send" /> <input type="reset" value="Reset" name="Reset" /><br />
</div>
</form>
</li>
<li>The user then clicks on the browser's print button (step 4 of <a href="#SeqDiag_1">Sequence Diagram 1</a>), to print the form as it currently appears.</li>
<li>The browser then creates a, possibly new, document (step 5 of <a href="#SeqDiag_1">Sequence Diagram 1</a>) containing the original form and the users data. Note in the XHTML-Print document below,
created by the browser, that the user's data is included either by a value attribute or a checked attribute.
<div class="code"><form action="http://example.com/prog/adduser" method="post"><br />
<label for="firstname">First name: </label><br />
<input type="text" id="firstname" <span style="background: yellow">value="John"</span>/><br /><br />
<label for="lastname">Last name: </label><br />
<input type="text" id="lastname" <span style="background: yellow">value="Doe"</span>/><br /><br />
<label for="email">email: </label><br />
<input type="text" id="email" <span style="background: yellow">value="johnd@example.org"</span> /><br /><br />
<input type="checkbox" name="member" <span style="background: yellow">checked="checked"</span> value="IEEE" /> IEEE <br /><br />
<input type="checkbox" name="member" value="ACM" /> ACM <br /><br />
<input type="submit" value="Send" /> <input type="reset" /><br /><br />
</form></div>
</li>
<li>The browser sends (step 6 of <a href="#SeqDiag_1">Sequence Diagram 1</a>) the document created in step 5 to the printer.</li>
<li>Sometime later the user clicks on the submit form button (step 7 of <a href="#SeqDiag_1">Sequence Diagram 1</a>) and the browser submits the form (step 8 of <a href="#SeqDiag_1">Sequence Diagram
1</a>) using the procedures given in the <cite>HTML 4.01 Specification</cite> ([<a href="#ref_html4">HTML4</a>], <a href="http://www.w3.org/TR/html401/interact/forms.html#h-17.13">Forms
Submission</a>).</li>
</ol>
</div>
<!--OddPage-->
<h1 typeof='bibo:Chapter' about='#s_acknowledgements' id="s_acknowledgements">5. Acknowledgements</h1>
<p>This section is informative.</p>
<p> This specification was prepared by the W3C HTML Working Group. The participants at the time of publication were:</p>
<div>
<ul>
<li>Mark Birbeck</li>
<li>Beth Epperson</li>
<li>Melinda Grant</li>
<li>Luca Mascaro</li>
<li>Shinichi Matsui</li>
<li>Shane McCarron</li>
<li>Steven Pemberton</li>
<li>Brad Petit</li>
<li>Richard Schwerdtfeger</li>
</ul>
<p>At publication of the second edition, the membership was:</p>
<ul>
<li>Roland Merrick, <acronym title="International Business Machines">IBM</acronym> (<acronym title="Extensible HyperText Markup Language">XHTML</acronym> 2 Working Group Co-Chair)</li>
<li>Steven Pemberton, <acronym title="Centrum voor Wiskunde en Informatica" xml:lang="nl">CWI</acronym> (<acronym title="Extensible HyperText Markup Language">XHTML</acronym> 2 Working Group
Co-Chair)</li>
<li>Mark Birbeck, webBackplane (Invited Expert)</li>
<li>Susan Borgrink, Progeny Systems</li>
<li>Christina Bottomley, Society for Technical Communication (STC)</li>
<li>Alessio Cartocci, International Webmasters Association / HTML Writers Guild (IWA-HWG)</li>
<li>Alexander Graf, University of Innsbruck</li>
<li>Markus Gylling, <a href="http://www.daisy.org">DAISY Consortium</a></li>
<li>Tina Holmboe, Greytower Technologies (Invited Expert)</li>
<li>John Kugelman, Progeny Systems</li>
<li>Luca Mascaro, International Webmasters Association / HTML Writers Guild (IWA-HWG)</li>
<li>Shane McCarron, Applied Testing and Technology, Inc. (Invited Expert)</li>
<li>Michael Rawling, IVIS Group Limited</li>
<li>Gregory Rosmaita, Invited Expert</li>
<li>Sebastian Schnitzenbaumer, Dreamlab Technologies AG</li>
<li>Richard Schwerdtfeger, <acronym title="International Business Machines">IBM</acronym></li>
<li>Elias Torres, <acronym title="International Business Machines">IBM</acronym></li>
<li>Masataka Yakura, Mitsue-Links Co., Ltd.</li>
<li>Toshihiko Yamakami, ACCESS Co., Ltd.</li>
</ul>
</div>
<p>This specification is based in large part on the specification of the same name, <cite><abbr title="Extensible HyperText Markup Language for Printing">XHTML™-Print</abbr></cite> [<a href=
"#ref-XHTMLPrint">XHTMLPRINT</a>], from the <a href="http://www.pwg.org/">Printer Working Group</a>, a program of and through the IEEE Industry Standards and Technology Organization, Inc.; and which
was in turn based in large part upon an earlier work with the same name by Fujisawa, Grant, Wright, and Zehler. <!-- [<a href="#ref-XHP">XHP</a>]. --> The editors wish to express their gratitude to
all who contributed to this and earlier versions.</p>
<!--OddPage-->
<h1 about='#a_jpeg' typeof='bibo:Chapter' id="a_jpeg">A. JPEG Decoder Requirements</h1>
<h2 typeof='bibo:Chapter' about='#a_jpeg.1' id='a_jpeg.1'>A.1 Introduction</h2>
<h3 typeof='bibo:Chapter' about='#a_jpeg.1.1' id='a_jpeg.1.1'>A.1.1 Intent</h3>
<p>This appendix describes <em title="REQUIRED in RFC 2119 context" class="RFC2119">REQUIRED</em> behaviors for JPEG decoders in XHTML-Print devices. Many of the behaviors described in this document
follow directly from language already present in the relevant JPEG standards, but are repeated here to emphasize their importance.</p>
<h3 typeof='bibo:Chapter' about='#a_jpeg.1.2' id='a_jpeg.1.2'>A.1.2 Objectives</h3>
<p>The decoder behaviors described in this document are intended to minimize implementation complexity, while retaining maximum compatibility with existing JPEG files. In particular, these
recommendations seek to ensure compatibility with both EXIF (Exchangeable Image File Format) and baseline JFIF (JPEG File Interchange Format); i.e., the subset of JFIF files that use only baseline
JPEG processes. Support for JPEG streams using non-baseline processes, such as arithmetic coding or progressive coding, is not mandated for XHTML-Print compliance.</p>
<h2 typeof='bibo:Chapter' about='#a_jpeg.2' id='a_jpeg.2'>A.2 Printer Behaviors</h2>
<p>This section describes behaviors of JPEG decoders for XHTML-Print conformant implementations.</p>
<h3 typeof='bibo:Chapter' about='#a_jpeg.2.1' id='a_jpeg.2.1'>A.2.1 JPEG Processes</h3>
<p>A JPEG decoder for an XHTML-Print printer <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> support all baseline JPEG processes as defined in [<a href="#ref_ccitt">CCITT</a>],
except for 2- and 4-component images. These processes include grayscale and 3-component images, 8-bit/component sample depth, Huffman entropy coding, 444, 422, 411, and 400 subsampling modes, and
sequential (i.e. non-progressive) scan.</p>
<h3 typeof='bibo:Chapter' about='#a_jpeg.2.2' id='a_jpeg.2.2'>A.2.2 Handling of APPx Markers</h3>
<p>Baseline decoders <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> ignore application-specific markers, such as the JFIF APP0 marker and the EXIF APP1/APP2 markers; rotation fields
within these markers <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> be ignored. (Specifically, conforming printers <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD
NOT</em> decode the TIFF IFDs embedded in the EXIF APP1 and APP2 markers, as described in Section 2.6.4 of [<a href="#ref_jeida">JEIDA</a>].) This implies images will print in the orientation in
which they are stored, unless style markup indicates otherwise. The image size <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> be rendered as specified in the JPEG SOF marker, if
not overridden by style mark-up. A JPEG decoder for a conforming printer <em title="SHALL NOT in RFC 2119 context" class="RFC2119">SHALL NOT</em> fail as a consequence of encountering an unsupported
APPx marker (i.e. all such markers <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> be correctly parsed, even if they are ignored).</p>
<h3 typeof='bibo:Chapter' about='#a_jpeg.2.3' id='a_jpeg.2.3'>A.2.3 Color Management</h3>
<p>This section describes a <em title="RECOMMENDED in RFC 2119 context" class="RFC2119">RECOMMENDED</em> color management approach for XHTML-Print printers.</p>
<h4 typeof='bibo:Chapter' about='#a_jpeg.grayscale' id='a_jpeg.grayscale'>Grayscale Images</h4>
<p>Sample values in a grayscale (single-component) JPEG image <em title="MAY in RFC 2119 context" class="RFC2119">MAY</em> be converted to the sRGB color space by setting</p>
<p style="text-align:center">R<sub>out</sub>= G<sub>out</sub>= B<sub>out</sub>= Gray<sub>in</sub></p>
<p>or by other suitable algorithm specific to the XHTML-Print device.</p>
<h4 typeof='bibo:Chapter' about='#a_jpeg.color' id='a_jpeg.color'>Color Images</h4>
<p>Sample values in 3-component JPEG images <em title="SHALL in RFC 2119 context" class="RFC2119">SHALL</em> be interpreted as YCbCr samples, as would be obtained by applying the matrices described
in ITU BT.601 <strong>[<a href="#ref_bt601">BT601.5</a>]</strong> to sRGB input data.</p>
<!--OddPage-->
<h1 about='#a_dtd' typeof='bibo:Chapter' id="a_dtd">B. <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> DTD and Modules</h1>
<p>This section contains the pieces of the XHTML-Print DTD that are unique to XHTML-Print. The remaining entities and modules are as specified in reference [<a href="#ref_xhtmlmod">XHTMLMOD</a>].</p>
<p>The following <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> be used from Modularization of XHTML [<a href="#ref_xhtmlmod">XHTMLMOD</a>]:</p>
<ol>
<li>xhtml-attribs-1.mod</li>
<li>xhtml-base-1.mod</li>
<li>xhtml-basic-form-1.mod</li>
<li>xhtml-basic-table-1.mod</li>
<li>xhtml-blkphras-1.mod</li>
<li>xhtml-blkpres-1.mod</li>
<li>xhtml-blkstruct-1.mod</li>
<li>xhtml-charent-1.mod</li>
<li>xhtml-datatypes-1.mod</li>
<li>xhtml-framework-1.mod</li>
<li>xhtml-hypertext-1.mod</li>
<li>xhtml-image-1.mod</li>
<li>xhtml-inlphras-1.mod</li>
<li>xhtml-inlpres-1.mod</li>
<li>xhtml-inlstruct-1.mod</li>
<li>xhtml-inlstyle-1.mod</li>
<li>xhtml-lat1.ent</li>
<li>xhtml-link-1.mod</li>
<li>xhtml-list-1.mod</li>
<li>xhtml-meta-1.mod</li>
<li>xhtml-notations-1.mod</li>
<li>xhtml-object-1.mod</li>
<li>xhtml-param-1.mod</li>
<li>xhtml-pres-1.mod</li>
<li>xhtml-qname-1.mod</li>
<li>xhtml-script-1.mod</li>
<li>xhtml-special.ent</li>
<li>xhtml-struct-1.mod</li>
<li>xhtml-style-1.mod</li>
<li>xhtml-symbol.ent</li>
<li>xhtml-text-1.mod</li>
</ol>
<h2 typeof='bibo:Chapter' about='#a_dtdDriver' id='a_dtdDriver'>B.1. XHTML-Print 1.0 DTD</h2>
<p>Available for download at <a href="DTD/xhtml-print10.dtd">xhtml-print10.dtd</a>.</p>
<pre class="dtd">
<!-- ....................................................................... -->
<!-- XHTML-Print 1.0 DTD ................................................... -->
<!-- file: xhtml-print10.dtd
-->
<!-- XHTML-Print 1.0 DTD
This is XHTML-Print 1.0, a variant of XHTML Basic for printing.
Copyright 1998-2003 World Wide Web Consortium
(Massachusetts Institute of Technology, European Research
Consortium for Informatics and Mathematics, Keio University).
All Rights Reserved.
Permission to use, copy, modify and distribute the XHTML-Print DTD and
its accompanying documentation for any purpose and without fee is hereby
granted in perpetuity, provided that the above copyright notice and
this paragraph appear in all copies. The copyright holders make no
representation about the suitability of the DTD for any purpose.
It is provided "as is" without expressed or implied warranty.
Primary Author: Jun Fujisawa <fujisawa.jun@canon.co.jp>
Editors: Jim Bigelow <jim.bigelow@hp.com>,
Shane McCarron <shane@aptest.com>,
Masayasu Ishikawa <mimasa@w3.org>
Revision: $Id: Overview.html,v 1.2 2010/11/24 21:23:24 bertails Exp $
-->
<!-- This is the driver file for version 1.0 of the XHTML-Print DTD.
This DTD is identified by the PUBLIC and SYSTEM identifiers:
PUBLIC "-//W3C//DTD XHTML-Print 1.0//EN"
SYSTEM "http://www.w3.org/MarkUp/DTD/xhtml-print10.dtd"
-->
<!ENTITY <span class="entity">% XHTML.version</span> "-//W3C//DTD XHTML-Print 1.0//EN" >
<!-- Use this URI to identify the default namespace:
"http://www.w3.org/1999/xhtml"
-->
<!ENTITY <span class="entity">% NS.prefixed</span> "IGNORE" >
<!ENTITY <span class="entity">% XHTML.prefix</span> "" >
<!-- Reserved for use with the XLink namespace:
-->
<!ENTITY <span class="entity">% XLINK.xmlns</span> "" >
<!ENTITY <span class="entity">% XLINK.xmlns.attrib</span> "" >
<!-- reserved for future use with document profiles -->
<!ENTITY <span class="entity">% XHTML.profile</span> "" >
<!-- Bidirectional Text features
This feature-test entity is used to declare elements
and attributes used for bidirectional text support.
-->
<!ENTITY <span class="entity">% XHTML.bidi</span> "IGNORE" >
<!-- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!ENTITY <span class="entity">% xhtml-events.module</span> "IGNORE" >
<!ENTITY <span class="entity">% xhtml-bdo.module</span> "%XHTML.bidi;" >
<!-- Style Attribute Module ............................ -->
<!ENTITY <span class="entity">% xhtml-inlstyle.module</span> "INCLUDE" >
<![%xhtml-inlstyle.module;[
<!ENTITY <span class="entity">% xhtml-inlstyle.mod</span>
PUBLIC "-//W3C//ENTITIES XHTML Inline Style 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-inlstyle-1.mod" >
%xhtml-inlstyle.mod;]]>
<!-- Document Model Module ............................. -->
<!ENTITY <span class="entity">% xhtml-model.mod</span>
PUBLIC "-//W3C//ENTITIES XHTML-Print 1.0 Document Model 1.0//EN"
"xhtml-print10-model-1.mod" >
<!-- Modular Framework Module (required) ............... -->
<!ENTITY <span class="entity">% xhtml-framework.mod</span>
PUBLIC "-//W3C//ENTITIES XHTML Modular Framework 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-framework-1.mod" >
%xhtml-framework.mod;
<!-- Text Module (required) ............................ -->
<!ENTITY <span class="entity">% xhtml-text.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Text 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-text-1.mod" >
%xhtml-text.mod;
<!-- Hypertext Module (required) ....................... -->
<!ENTITY <span class="entity">% xhtml-hypertext.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Hypertext 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-hypertext-1.mod" >
%xhtml-hypertext.mod;
<!-- Lists Module (required) ........................... -->
<!ENTITY <span class="entity">% xhtml-list.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Lists 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-list-1.mod" >
%xhtml-list.mod;
<!-- ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- Presentation Module ............................... -->
<!ENTITY <span class="entity">% xhtml-pres.module</span> "INCLUDE" >
<![%xhtml-pres.module;[
<!ENTITY <span class="entity">% xhtml-pres.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Presentation 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-pres-1.mod" >
%xhtml-pres.mod;]]>
<!-- Image Module ...................................... -->
<!ENTITY <span class="entity">% xhtml-image.module</span> "INCLUDE" >
<![%xhtml-image.module;[
<!ENTITY <span class="entity">% xhtml-image.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Images 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-image-1.mod" >
%xhtml-image.mod;]]>
<!-- Tables Module ..................................... -->
<!ENTITY <span class="entity">% xhtml-table.module</span> "INCLUDE" >
<![%xhtml-table.module;[
<!ENTITY <span class="entity">% xhtml-table.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Basic Tables 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-basic-table-1.mod" >
%xhtml-table.mod;]]>
<!-- Forms Module ...................................... -->
<!ENTITY <span class="entity">% xhtml-form.module</span> "INCLUDE" >
<![%xhtml-form.module;[
<!ENTITY <span class="entity">% xhtml-form.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Basic Forms 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-basic-form-1.mod" >
%xhtml-form.mod;]]>
<!-- Scripting Module ................................. -->
<!ENTITY <span class="entity">% xhtml-script.module</span> "INCLUDE" >
<![%xhtml-script.module;[
<!ENTITY <span class="entity">% xhtml-script.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Scripting 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-script-1.mod" >
%xhtml-script.mod;]]>
<!-- Style Sheet Module ................................ -->
<!ENTITY <span class="entity">% xhtml-style.module</span> "INCLUDE" >
<![%xhtml-style.module;[
<!ENTITY <span class="entity">% xhtml-style.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Style Sheets 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-style-1.mod" >
%xhtml-style.mod;]]>
<!-- Link Module ....................................... -->
<!ENTITY <span class="entity">% xhtml-link.module</span> "INCLUDE" >
<![%xhtml-link.module;[
<!ENTITY <span class="entity">% xhtml-link.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Link Element 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-link-1.mod" >
%xhtml-link.mod;]]>
<!-- Metainformation Module ............................ -->
<!ENTITY <span class="entity">% xhtml-meta.module</span> "INCLUDE" >
<![%xhtml-meta.module;[
<!ENTITY <span class="entity">% xhtml-meta.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Metainformation 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-meta-1.mod" >
%xhtml-meta.mod;]]>
<!-- Base Module ....................................... -->
<!ENTITY <span class="entity">% xhtml-base.module</span> "INCLUDE" >
<![%xhtml-base.module;[
<!ENTITY <span class="entity">% xhtml-base.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Base Element 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-base-1.mod" >
%xhtml-base.mod;]]>
<!-- Param Module ...................................... -->
<!ENTITY <span class="entity">% xhtml-param.module</span> "INCLUDE" >
<![%xhtml-param.module;[
<!ENTITY <span class="entity">% xhtml-param.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Param Element 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-param-1.mod" >
%xhtml-param.mod;]]>
<!-- Object Module ..................................... -->
<!ENTITY <span class="entity">% xhtml-object.module</span> "INCLUDE" >
<![%xhtml-object.module;[
<!ENTITY <span class="entity">% xhtml-object.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Embedded Object 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-object-1.mod" >
%xhtml-object.mod;]]>
<!-- Structure Module (required) ....................... -->
<!ENTITY <span class="entity">% xhtml-struct.mod</span>
PUBLIC "-//W3C//ELEMENTS XHTML Document Structure 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-struct-1.mod" >
%xhtml-struct.mod;
<!-- end of XHTML-Print 1.0 DTD ............................................ -->
<!-- ....................................................................... -->
</pre>
<h2 typeof='bibo:Chapter' about='#a_dtdModel' id='a_dtdModel'>B.2. <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> 1.0 Document Model Module</h2>
<p>Available for download at <a href="DTD/xhtml-print10-model-1.mod">xhtml-print10-model-1.mod</a>.</p>
<pre class="dtd">
<!-- ....................................................................... -->
<!-- XHTML-Print 1.0 Document Model Module ................................. -->
<!-- file: xhtml-print10-model-1.mod
This is XHTML-Print 1.0, a variant of XHTML Basic for printing.
Copyright 1998-2003 W3C (MIT, ERCIM, Keio), All Rights Reserved.
Revision: $Id: Overview.html,v 1.2 2010/11/24 21:23:24 bertails Exp $
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
PUBLIC "-//W3C//ENTITIES XHTML-Print 1.0 Document Model 1.0//EN"
SYSTEM "http://www.w3.org/MarkUp/DTD/xhtml-print10-model-1.mod"
....................................................................... -->
<!-- XHTML-Print 1.0 Document Model
This module describes the groupings of elements that make up
common content models for XHTML-Print elements.
-->
<!-- Optional Elements in head ......................... -->
<!ENTITY <span class="entity">% HeadOpts.mix</span>
"( %script.qname; | %style.qname; | %meta.qname; | %link.qname;
| %object.qname; )*" >
<!-- Miscellaneous Elements ............................ -->
<!ENTITY <span class="entity">% Script.class</span> "| %script.qname; | %noscript.qname;" >
<!ENTITY <span class="entity">% Misc.extra</span> "" >
<!ENTITY <span class="entity">% Misc.class</span>
"%Script.class;
%Misc.extra;"
>
<!-- Inline Elements ................................... -->
<!ENTITY <span class="entity">% InlStruct.class</span> "%br.qname; | %span.qname;" >
<!ENTITY <span class="entity">% InlPhras.class</span>
"| %em.qname; | %strong.qname; | %dfn.qname; | %code.qname;
| %samp.qname; | %kbd.qname; | %var.qname; | %cite.qname;
| %abbr.qname; | %acronym.qname; | %q.qname;" >
<!ENTITY <span class="entity">% InlPres.class</span>
"| %tt.qname; | %i.qname; | %b.qname; | %big.qname;
| %small.qname; | %sub.qname; | %sup.qname; " >
<!ENTITY <span class="entity">% I18n.class</span> "" >
<!ENTITY <span class="entity">% Anchor.class</span> "| %a.qname;" >
<!ENTITY <span class="entity">% InlSpecial.class</span> "| %img.qname; | %object.qname;" >
<!ENTITY <span class="entity">% InlForm.class</span>
"| %input.qname; | %select.qname; | %textarea.qname;
| %label.qname;"
>
<!ENTITY <span class="entity">% Inline.extra</span> "" >
<!ENTITY <span class="entity">% Inline.class</span>
"%InlStruct.class;
%InlPhras.class;
%InlPres.class;
%Anchor.class;
%InlSpecial.class;
%InlForm.class;
%Inline.extra;"
>
<!ENTITY <span class="entity">% InlNoAnchor.class</span>
"%InlStruct.class;
%InlPhras.class;
%InlPres.class;
%InlSpecial.class;
%InlForm.class;
%Inline.extra;"
>
<!ENTITY <span class="entity">% InlNoAnchor.mix</span>
"%InlNoAnchor.class;
%Misc.class;"
>
<!ENTITY <span class="entity">% Inline.mix</span>
"%Inline.class;
%Misc.class;"
>
<!-- Block Elements .................................... -->
<!ENTITY <span class="entity">% Heading.class</span>
"%h1.qname; | %h2.qname; | %h3.qname;
| %h4.qname; | %h5.qname; | %h6.qname;"
>
<!ENTITY <span class="entity">% List.class</span> "%ul.qname; | %ol.qname; | %dl.qname;" >
<!ENTITY <span class="entity">% Table.class</span> "| %table.qname;" >
<!ENTITY <span class="entity">% Form.class</span> "| %form.qname;" >
<!ENTITY <span class="entity">% BlkStruct.class</span> "%p.qname; | %div.qname;" >
<!ENTITY <span class="entity">% BlkPhras.class</span>
"| %pre.qname; | %blockquote.qname; | %address.qname;"
>
<!ENTITY <span class="entity">% BlkPres.class</span> "| %hr.qname;" >
<!ENTITY <span class="entity">% BlkSpecial.class</span>
"%Table.class;
%Form.class;"
>
<!ENTITY <span class="entity">% Block.extra</span> "" >
<!ENTITY <span class="entity">% Block.class</span>
"%BlkStruct.class;
%BlkPhras.class;
%BlkPres.class;
%BlkSpecial.class;
%Block.extra;"
>
<!ENTITY <span class="entity">% Block.mix</span>
"%Heading.class;
| %List.class;
| %Block.class;
%Misc.class;"
>
<!-- All Content Elements .............................. -->
<!ENTITY <span class="entity">% FlowNoTable.mix</span>
"%Heading.class;
| %List.class;
| %BlkStruct.class;
%BlkPhras.class;
%BlkPres.class;
%Form.class;
%Block.extra;
| %Inline.class;
%Misc.class;"
>
<!ENTITY <span class="entity">% Flow.mix</span>
"%Heading.class;
| %List.class;
| %Block.class;
| %Inline.class;
%Misc.class;"
>
<!-- end of xhtml-print10-model-1.mod -->
</pre>
<!--OddPage-->
<h1 about='#a_schema' typeof='bibo:Chapter' id="a_schema">C. <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> Schema and Modules</h1>
<p>This section contains the pieces of the XHTML-Print XML Schema implementation that are unique to XHTML-Print. The remaining entities and modules are as specified in reference [<a href=
"#ref_xhtmlmod">XHTMLMOD</a>].</p>
<p>The following <em title="SHOULD in RFC 2119 context" class="RFC2119">SHOULD</em> be used from Modularization of XHTML [<a href="#ref_xhtmlmod">XHTMLMOD</a>]:</p>
<ol>
<li>xhtml-attribs-1.xsd</li>
<li>xhtml-base-1.xsd</li>
<li>xhtml-basic-form-1.xsd</li>
<li>xhtml-basic-table-1.xsd</li>
<li>xhtml-blkphras-1.xsd</li>
<li>xhtml-blkpres-1.xsd</li>
<li>xhtml-blkstruct-1.xsd</li>
<li>xhtml-charent-1.xsd</li>
<li>xhtml-datatypes-1.xsd</li>
<li>xhtml-framework-1.xsd</li>
<li>xhtml-hypertext-1.xsd</li>
<li>xhtml-image-1.xsd</li>
<li>xhtml-inlphras-1.xsd</li>
<li>xhtml-inlpres-1.xsd</li>
<li>xhtml-inlstruct-1.xsd</li>
<li>xhtml-inlstyle-1.xsd</li>
<li>xhtml-lat1.ent</li>
<li>xhtml-link-1.xsd</li>
<li>xhtml-list-1.xsd</li>
<li>xhtml-meta-1.xsd</li>
<li>xhtml-notations-1.xsd</li>
<li>xhtml-object-1.xsd</li>
<li>xhtml-param-1.xsd</li>
<li>xhtml-pres-1.xsd</li>
<li>xhtml-script-1.xsd</li>
<li>xhtml-special.ent</li>
<li>xhtml-struct-1.xsd</li>
<li>xhtml-style-1.xsd</li>
<li>xhtml-symbol.ent</li>
<li>xhtml-text-1.xsd</li>
</ol>
<h2 typeof='bibo:Chapter' about='#a_schemaDriver' id='a_schemaDriver'>C.1. XHTML-Print 1.0 XML Schema</h2>
<p>Available for download at <a href="SCHEMA/xhtml-print-1.xsd">xhtml-print-1.xsd</a>.</p>
<!-- INCLUDING SCHEMA SCHEMA/xhtml-print-1.xsd.mhtml -->
<pre class="dtd">
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3.org/1999/xhtml"
xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/"
xmlns="http://www.w3.org/1999/xhtml"
elementFormDefault="qualified" >
<xs:annotation>
<xs:documentation>
This is the XML Schema driver for XHTML Print 1.0
Please use this namespace for XHTML elements:
"http://www.w3.org/1999/xhtml"
$Id: Overview.html,v 1.2 2010/11/24 21:23:24 bertails Exp $
</xs:documentation>
<xs:documentation source="xhtml-copyright-1.xsd"/>
</xs:annotation>
<xs:annotation>
<xs:documentation>
This is the Schema Driver file for XHTML Print 1.0
Document Type
This schema
+ imports external schemas (xml.xsd)
+ refedines (and include)s schema modules for XHTML1.1 Document Type.
+ includes Schema for Named content model for the
XHTML Print 1.0 Document Type
XHTML Print 1.0 Document Type includes the following Modules
XHTML Core modules (Required for XHTML Family Conformance)
+ text
+ hypertext
+ lists
+ structure
Other XHTML modules
+ Edit
+ Bdo
+ Presentational
+ Link
+ Meta
+ Base
+ Scripting
+ Style
+ Image
+ Applet
+ Object
+ Param (Applet/Object modules require Param Module)
+ Basic Tables
+ Basic Forms
</xs:documentation>
</xs:annotation>
<xs:import
namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="http://www.w3.org/2001/xml.xsd">
<xs:annotation>
<xs:documentation>
This import brings in the XML namespace attributes
The XML attributes are used by various modules.
</xs:documentation>
</xs:annotation>
</xs:import>
<xs:include
schemaLocation="xhtml-print-model-1.xsd">
<xs:annotation>
<xs:documentation>
Document Model module for the XHTML Print 1.0 Document Type.
This schema file defines all named models used by XHTML
Modularization Framework for XHTML Print 1.0 Document Type
</xs:documentation>
</xs:annotation>
</xs:include>
<xs:import
namespace="http://www.w3.org/1999/xhtml/datatypes/"
schemaLocation="xhtml-datatypes-1.xsd"/>
<xs:include
schemaLocation="xhtml-print-modules-1.xsd">
<xs:annotation>
<xs:documentation>
Schema that includes all modules (and redefinitions)
for XHTML Print Document Type.
</xs:documentation>
</xs:annotation>
</xs:include>
</xs:schema>
</pre>
<!-- END OF FILE SCHEMA/xhtml-print-1.xsd.mhtml -->
<h2 typeof='bibo:Chapter' about='#a_schemaModel' id='a_schemaModel'>C.2. <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> 1.0 XML Schema Content Model Module</h2>
<p>Available for download at <a href="SCHEMA/xhtml-print-model-1.xsd">xhtml-print-model-1.xsd</a>.</p>
<!-- INCLUDING SCHEMA SCHEMA/xhtml-print-model-1.xsd.mhtml -->
<pre class="dtd">
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/"
elementFormDefault="qualified" >
<xs:import
namespace="http://www.w3.org/1999/xhtml/datatypes/"
schemaLocation="xhtml-datatypes-1.xsd"/>
<xs:annotation>
<xs:documentation>
This is the XML Schema module of common content models for XHTML Print 1.0
$Id: Overview.html,v 1.2 2010/11/24 21:23:24 bertails Exp $
</xs:documentation>
<xs:documentation source="xhtml-copyright-1.xsd"/>
</xs:annotation>
<xs:annotation>
<xs:documentation>
XHTML Document Model
This module describes the groupings of elements/attributes
that make up common content models for XHTML elements.
XHTML has following basic content models:
xhtml.Inline.mix; character-level elements
xhtml.Block.mix; block-like elements, e.g., paragraphs and lists
xhtml.Flow.mix; any block or inline elements
xhtml.HeadOpts.mix; Head Elements
xhtml.InlinePre.mix; Special class for pre content model
xhtml.InlineNoAnchor.mix; Content model for Anchor
Any groups declared in this module may be used to create
element content models, but the above are considered 'global'
(insofar as that term applies here). XHTML has the
following Attribute Groups
xhtml.Core.extra.attrib
xhtml.I18n.extra.attrib
xhtml.Common.extra
The above attribute Groups are considered Global
</xs:documentation>
</xs:annotation>
<xs:attributeGroup
name="xhtml.I18n.extra.attrib">
<xs:annotation>
<xs:documentation> Extended I18n attribute </xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup
name="xhtml.Common.extra">
<xs:annotation>
<xs:documentation> Extended Common Attributes </xs:documentation>
</xs:annotation>
<xs:attributeGroup
ref="xhtml.style.attrib">
<xs:annotation>
<xs:documentation>
"style" attribute from Inline Style Module
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup
name="xhtml.Core.extra.attrib">
<xs:annotation>
<xs:documentation> Extend Core Attributes </xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup
name="xhtml.Global.core.extra.attrib">
<xs:annotation>
<xs:documentation> Extended Global Core Attributes </xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup
name="xhtml.Global.I18n.extra.attrib">
<xs:annotation>
<xs:documentation> Extended Global I18n attributes </xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:attributeGroup
name="xhtml.Global.Common.extra">
<xs:annotation>
<xs:documentation> Extended Global Common Attributes </xs:documentation>
</xs:annotation>
</xs:attributeGroup>
<xs:group
name="xhtml.Head.extra">
<xs:sequence/>
</xs:group>
<xs:group
name="xhtml.HeadOpts.mix">
<xs:choice>
<xs:element
name="script"
type="xhtml.script.type"/>
<xs:element
name="style"
type="xhtml.style.type"/>
<xs:element
name="meta"
type="xhtml.meta.type"/>
<xs:element
name="link"
type="xhtml.link.type"/>
<xs:element
name="object"
type="xhtml.object.type"/>
<xs:group
ref="xhtml.Head.extra"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.head.content">
<xs:sequence>
<xs:group
ref="xhtml.HeadOpts.mix"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:choice>
<xs:sequence>
<xs:element
name="title"
minOccurs="1"
maxOccurs="1"
type="xhtml.title.type"/>
<xs:group
ref="xhtml.HeadOpts.mix"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:sequence
minOccurs="0">
<xs:element
name="base"
type="xhtml.base.type"/>
<xs:group
ref="xhtml.HeadOpts.mix"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:sequence>
<xs:sequence>
<xs:element
name="base"
type="xhtml.base.type"
minOccurs="1"
maxOccurs="1"/>
<xs:group
ref="xhtml.HeadOpts.mix"
minOccurs="0"
maxOccurs="unbounded"/>
<xs:element
name="title"
minOccurs="1"
maxOccurs="1"
type="xhtml.title.type"/>
<xs:group
ref="xhtml.HeadOpts.mix"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:choice>
</xs:sequence>
</xs:group>
<!--
script and noscript are used to contain scripts
and alternative content
-->
<xs:group
name="xhtml.Script.class">
<xs:choice>
<xs:element
name="script"
type="xhtml.script.type"/>
<xs:element
name="noscript"
type="xhtml.noscript.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.Misc.extra">
<xs:sequence/>
</xs:group>
<!--
These elements are neither block nor inline, and can
essentially be used anywhere in the document body.
-->
<xs:group
name="xhtml.Misc.class">
<xs:choice>
<xs:group
ref="xhtml.Script.class"/>
<xs:group
ref="xhtml.Misc.extra"/>
</xs:choice>
</xs:group>
<!-- Inline Elements -->
<xs:group
name="xhtml.InlStruct.class">
<xs:choice>
<xs:element
name="br"
type="xhtml.br.type"/>
<xs:element
name="span"
type="xhtml.span.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.InlPhras.class">
<xs:choice>
<xs:element
name="em"
type="xhtml.em.type"/>
<xs:element
name="strong"
type="xhtml.strong.type"/>
<xs:element
name="dfn"
type="xhtml.dfn.type"/>
<xs:element
name="code"
type="xhtml.code.type"/>
<xs:element
name="samp"
type="xhtml.samp.type"/>
<xs:element
name="kbd"
type="xhtml.kbd.type"/>
<xs:element
name="var"
type="xhtml.var.type"/>
<xs:element
name="cite"
type="xhtml.cite.type"/>
<xs:element
name="abbr"
type="xhtml.abbr.type"/>
<xs:element
name="acronym"
type="xhtml.acronym.type"/>
<xs:element
name="q"
type="xhtml.q.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.InlPres.class">
<xs:choice>
<xs:element
name="tt"
type="xhtml.InlPres.type"/>
<xs:element
name="i"
type="xhtml.InlPres.type"/>
<xs:element
name="b"
type="xhtml.InlPres.type"/>
<xs:element
name="big"
type="xhtml.InlPres.type"/>
<xs:element
name="small"
type="xhtml.InlPres.type"/>
<xs:element
name="sub"
type="xhtml.InlPres.type"/>
<xs:element
name="sup"
type="xhtml.InlPres.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.I18n.class" >
<xs:sequence/>
</xs:group>
<xs:group
name="xhtml.Anchor.class">
<xs:sequence>
<xs:element
name="a"
type="xhtml.a.type"/>
</xs:sequence>
</xs:group>
<xs:group
name="xhtml.InlSpecial.class">
<xs:choice>
<xs:element
name="img"
type="xhtml.img.type"/>
<xs:element
name="object"
type="xhtml.object.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.InlForm.class">
<xs:choice>
<xs:element
name="input"
type="xhtml.input.type"/>
<xs:element
name="select"
type="xhtml.select.type"/>
<xs:element
name="textarea"
type="xhtml.textarea.type"/>
<xs:element
name="label"
type="xhtml.label.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.Inline.extra">
<xs:sequence/>
</xs:group>
<!--
Inline.class includes all inline elements,
used as a component in mixes
-->
<xs:group
name="xhtml.Inline.class">
<xs:choice>
<xs:group
ref="xhtml.InlStruct.class"/>
<xs:group
ref="xhtml.InlPhras.class"/>
<xs:group
ref="xhtml.InlPres.class"/>
<xs:group
ref="xhtml.Anchor.class"/>
<xs:group
ref="xhtml.InlSpecial.class"/>
<xs:group
ref="xhtml.InlForm.class"/>
<xs:group
ref="xhtml.Inline.extra"/>
</xs:choice>
</xs:group>
<!--
InlinePre.mix
Used as a component in pre model
-->
<xs:group
name="xhtml.InlinePre.mix">
<xs:choice>
<xs:group
ref="xhtml.InlStruct.class"/>
<xs:group
ref="xhtml.InlPhras.class"/>
<xs:element
name="tt"
type="xhtml.InlPres.type"/>
<xs:element
name="i"
type="xhtml.InlPres.type"/>
<xs:element
name="b"
type="xhtml.InlPres.type"/>
<xs:group
ref="xhtml.Anchor.class"/>
<xs:group
ref="xhtml.Misc.class"/>
<xs:group
ref="xhtml.Inline.extra"/>
</xs:choice>
</xs:group>
<!--
InlNoAnchor.class includes all non-anchor inlines,
used as a component in mixes
-->
<xs:group
name="xhtml.InlNoAnchor.class">
<xs:choice>
<xs:group
ref="xhtml.InlStruct.class"/>
<xs:group
ref="xhtml.InlPhras.class"/>
<xs:group
ref="xhtml.InlPres.class"/>
<xs:group
ref="xhtml.InlSpecial.class"/>
<xs:group
ref="xhtml.InlForm.class"/>
<xs:group
ref="xhtml.Inline.extra"/>
</xs:choice>
</xs:group>
<!--
InlNoAnchor.mix includes all non-anchor inlines
-->
<xs:group
name="xhtml.InlNoAnchor.mix">
<xs:choice>
<xs:group
ref="xhtml.InlNoAnchor.class"/>
<xs:group
ref="xhtml.Misc.class"/>
</xs:choice>
</xs:group>
<!--
Inline.mix includes all inline elements, including Misc.class
-->
<xs:group
name="xhtml.Inline.mix">
<xs:choice>
<xs:group
ref="xhtml.Inline.class"/>
<xs:group
ref="xhtml.Misc.class"/>
</xs:choice>
</xs:group>
<!--
In the HTML 4 DTD, heading and list elements were included
in the block group. The Heading.class and
List.class groups must now be included explicitly
on element declarations where desired.
-->
<xs:group
name="xhtml.Heading.class">
<xs:choice>
<xs:element
name="h1"
type="xhtml.h1.type"/>
<xs:element
name="h2"
type="xhtml.h2.type"/>
<xs:element
name="h3"
type="xhtml.h3.type"/>
<xs:element
name="h4"
type="xhtml.h4.type"/>
<xs:element
name="h5"
type="xhtml.h5.type"/>
<xs:element
name="h6"
type="xhtml.h6.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.List.class">
<xs:choice>
<xs:element
name="ul"
type="xhtml.ul.type"/>
<xs:element
name="ol"
type="xhtml.ol.type"/>
<xs:element
name="dl"
type="xhtml.dl.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.Table.class">
<xs:choice>
<xs:element
name="table"
type="xhtml.table.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.Form.class">
<xs:choice>
<xs:element
name="form"
type="xhtml.form.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.BlkStruct.class">
<xs:choice>
<xs:element
name="p"
type="xhtml.p.type"/>
<xs:element
name="div"
type="xhtml.div.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.BlkPhras.class">
<xs:choice>
<xs:element
name="pre"
type="xhtml.pre.type"/>
<xs:element
name="blockquote"
type="xhtml.blockquote.type"/>
<xs:element
name="address"
type="xhtml.address.type"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.BlkPres.class">
<xs:sequence>
<xs:element
name="hr"
type="xhtml.hr.type"/>
</xs:sequence>
</xs:group>
<xs:group
name="xhtml.BlkSpecial.class">
<xs:choice>
<xs:group
ref="xhtml.Table.class"/>
<xs:group
ref="xhtml.Form.class"/>
</xs:choice>
</xs:group>
<xs:group
name="xhtml.Block.extra">
<xs:sequence/>
</xs:group>
<!--
Block.class includes all block elements,
used as an component in mixes
-->
<xs:group
name="xhtml.Block.class">
<xs:choice>
<xs:group
ref="xhtml.BlkStruct.class"/>
<xs:group
ref="xhtml.BlkPhras.class"/>
<xs:group
ref="xhtml.BlkPres.class"/>
<xs:group
ref="xhtml.BlkSpecial.class"/>
<xs:group
ref="xhtml.Block.extra"/>
</xs:choice>
</xs:group>
<!--
Block.mix includes all block elements plus %Misc.class;
-->
<xs:group
name="xhtml.Block.mix">
<xs:choice>
<xs:group
ref="xhtml.Heading.class"/>
<xs:group
ref="xhtml.List.class"/>
<xs:group
ref="xhtml.Block.class"/>
<xs:group
ref="xhtml.Misc.class"/>
</xs:choice>
</xs:group>
<!--
All Content Elements
Flow.mix includes all text content, block and inline
Note that the "any" element included here allows us
to add data from any other namespace, a necessity
for compound document creation.
Note however that it is not possible to add
to any head level element without further
modification. To add RDF metadata to the head
of a document, modify the structure module.
-->
<xs:group
name="xhtml.Flow.mix">
<xs:choice>
<xs:group
ref="xhtml.Heading.class"/>
<xs:group
ref="xhtml.List.class"/>
<xs:group
ref="xhtml.Block.class"/>
<xs:group
ref="xhtml.Inline.class"/>
<xs:group
ref="xhtml.Misc.class"/>
</xs:choice>
</xs:group>
<xs:group name="xhtml.FlowNoTable.mix">
<xs:choice>
<xs:group ref="xhtml.Heading.class"/>
<xs:group ref="xhtml.List.class"/>
<xs:group ref="xhtml.BlkStruct.class"/>
<xs:group ref="xhtml.BlkPhras.class"/>
<xs:group ref="xhtml.Form.class"/>
<xs:group ref="xhtml.Inline.class"/>
<xs:group ref="xhtml.Misc.class"/>
</xs:choice>
</xs:group>
<!--
BlkNoForm.mix includes all non-form block elements,
plus Misc.class
-->
<xs:group
name="xhtml.BlkNoForm.mix">
<xs:choice>
<xs:group
ref="xhtml.Heading.class"/>
<xs:group
ref="xhtml.List.class"/>
<xs:group
ref="xhtml.BlkStruct.class"/>
<xs:group
ref="xhtml.BlkPhras.class"/>
<xs:group
ref="xhtml.BlkPres.class"/>
<xs:group
ref="xhtml.Table.class"/>
<xs:group
ref="xhtml.Block.extra"/>
<xs:group
ref="xhtml.Misc.class"/>
</xs:choice>
</xs:group>
<xs:element
name="html"
type="xhtml.html.type"/>
</xs:schema>
</pre>
<!-- END OF FILE SCHEMA/xhtml-print-model-1.xsd.mhtml -->
<h2 typeof='bibo:Chapter' about='#a_schemaModules' id='a_schemaModules'>C.3. <abbr title="Extensible HyperText Markup Language for Printing">XHTML-Print</abbr> 1.0 XML Schema Modules</h2>
<p>Available for download at <a href="SCHEMA/xhtml-print-modules-1.xsd">xhtml-print-modules-1.xsd</a>.</p>
<!-- INCLUDING SCHEMA SCHEMA/xhtml-print-modules-1.xsd.mhtml -->
<pre class="dtd">
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
xmlns:xh11d="http://www.w3.org/1999/xhtml/datatypes/" >
<xs:import namespace="http://www.w3.org/1999/xhtml/datatypes/"
schemaLocation="xhtml-datatypes-1.xsd" />
<xs:annotation>
<xs:documentation>
This schema includes all modules for XHTML1.1 Document Type.
$Id: Overview.html,v 1.2 2010/11/24 21:23:24 bertails Exp $
</xs:documentation>
<xs:documentation source="xhtml-copyright-1.xsd"/>
</xs:annotation>
<xs:annotation>
<xs:documentation>
This schema includes all modules (and redefinitions)
for XHTML1.1 Document Type.
XHTML1.1 Document Type includes the following Modules
XHTML Core modules (Required for XHTML Family Conformance)
+ text
+ hypertext
+ lists
+ structure
Other XHTML modules
+ Edit
+ Presentational
+ Link
+ Meta
+ Base
+ Scripting
+ Style
+ Image
+ Object
+ Param (Applet/Object modules require Param Module)
+ Basic Tables
+ Target
+ Basic Forms
</xs:documentation>
</xs:annotation>
<xs:include schemaLocation="xhtml-framework-1.xsd">
<xs:annotation>
<xs:documentation>
Schema Framework Component Modules:
+ notations
+ datatypes
+ common attributes
+ character entities
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_commonatts"/>
</xs:annotation>
</xs:include>
<xs:include schemaLocation="xhtml-text-1.xsd">
<xs:annotation>
<xs:documentation>
Text module
The Text module includes declarations for all core
text container elements and their attributes.
+ block phrasal
+ block structural
+ inline phrasal
+ inline structural
Elements defined here:
* address, blockquote, pre, h1, h2, h3, h4, h5, h6
* div, p
* abbr, acronym, cite, code, dfn, em, kbd, q, samp, strong, var
* br, span
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_textmodule"/>
</xs:annotation>
</xs:include>
<xs:redefine schemaLocation="xhtml-hypertext-1.xsd">
<xs:annotation>
<xs:documentation>
Hypertext module
Elements defined here:
* a
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_hypertextmodule"/>
</xs:annotation>
<xs:attributeGroup name="xhtml.a.attlist">
<xs:attributeGroup ref="xhtml.a.attlist"/>
</xs:attributeGroup>
</xs:redefine>
<xs:include schemaLocation="xhtml-list-1.xsd">
<xs:annotation>
<xs:documentation>
Lists module
Elements defined here:
* dt, dd, dl, ol, ul, li
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_listmodule"/>
</xs:annotation>
</xs:include>
<xs:redefine schemaLocation="xhtml-struct-1.xsd">
<xs:annotation>
<xs:documentation>
Structural module
Elements defined here:
* title, head, body, html
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/abstract_modules.html#s_structuremodule"/>
</xs:annotation>
<xs:attributeGroup name="xhtml.version.attrib">
<xs:annotation>
<xs:documentation>
Redefinition by the XHTML Print 1.0 Markup (for value of version attr)
</xs:documentation>
</xs:annotation>
<xs:attribute name="version" type="xh11d:CDATA" fixed="-//W3C//DTD XHTML 1.1//EN"/>
</xs:attributeGroup>
<xs:attributeGroup name="xhtml.body.attlist">
<xs:attributeGroup ref="xhtml.body.attlist">
<xs:annotation>
<xs:documentation>
Original Body Attlist
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
</xs:redefine>
<xs:include schemaLocation="xhtml-pres-1.xsd">
<xs:annotation>
<xs:documentation>
Presentational module
Elements defined here:
* hr, b, big, i, small,sub, sup, tt
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_presentationmodule"/>
</xs:annotation>
</xs:include>
<xs:redefine schemaLocation="xhtml-link-1.xsd">
<xs:annotation>
<xs:documentation>
Link module
Elements defined here:
* link
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_linkmodule"/>
</xs:annotation>
<xs:attributeGroup name="xhtml.link.attlist">
<xs:annotation>
<xs:documentation>
Changes to XHTML Link Attlist
</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="xhtml.link.attlist">
<xs:annotation>
<xs:documentation>
Original Link Attributes (declared in Link Module)
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
</xs:redefine>
<xs:include schemaLocation="xhtml-meta-1.xsd">
<xs:annotation>
<xs:documentation>
Meta module
Elements defined here:
* meta
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_metamodule"/>
</xs:annotation>
</xs:include>
<xs:redefine schemaLocation="xhtml-base-1.xsd">
<xs:annotation>
<xs:documentation>
Base module
Elements defined here:
* base
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_basemodule"/>
</xs:annotation>
<xs:attributeGroup name="xhtml.base.attlist">
<xs:annotation>
<xs:documentation>
Changes to XHTML base Attlist
</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="xhtml.base.attlist">
<xs:annotation>
<xs:documentation>
Original Base Attributes (declared in Base Module)
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
</xs:redefine>
<xs:include schemaLocation="xhtml-script-1.xsd">
<xs:annotation>
<xs:documentation>
Scripting module
Elements defined here:
* script, noscript
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_scriptmodule"/>
</xs:annotation>
</xs:include>
<xs:include schemaLocation="xhtml-style-1.xsd">
<xs:annotation>
<xs:documentation>
Style module
Elements defined here:
* style
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_stylemodule"/>
</xs:annotation>
</xs:include>
<xs:include schemaLocation="xhtml-inlstyle-1.xsd">
<xs:annotation>
<xs:documentation>
Style attribute module
Attribute defined here:
* style
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_styleattributemodule"/>
</xs:annotation>
</xs:include>
<xs:redefine schemaLocation="xhtml-image-1.xsd">
<xs:annotation>
<xs:documentation>
Image module
Elements defined here:
* img
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_imagemodule"/>
</xs:annotation>
<xs:attributeGroup name="xhtml.img.attlist">
<xs:attributeGroup ref="xhtml.img.attlist">
<xs:annotation>
<xs:documentation>
Original Image Attributes (in Image Module)
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
</xs:redefine>
<xs:redefine schemaLocation="xhtml-object-1.xsd">
<xs:annotation>
<xs:documentation>
Object module
Elements defined here:
* object
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_objectmodule"/>
</xs:annotation>
<xs:attributeGroup name="xhtml.object.attlist">
<xs:attributeGroup ref="xhtml.object.attlist">
<xs:annotation>
<xs:documentation>
Original Object Attlist
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
</xs:redefine>
<xs:include schemaLocation="xhtml-param-1.xsd">
<xs:annotation>
<xs:documentation>
Param module
Elements defined here:
* param
</xs:documentation>
</xs:annotation>
</xs:include>
<xs:include schemaLocation="xhtml-basic-table-1.xsd">
<xs:annotation>
<xs:documentation>
Tables module
Elements defined here:
* table, caption, tr, th, td
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_basictablemodule"/>
</xs:annotation>
</xs:include>
<xs:redefine schemaLocation="xhtml-basic-form-1.xsd">
<xs:annotation>
<xs:documentation>
Forms module
Elements defined here:
* form, label, input, select, option,
* textarea
</xs:documentation>
<xs:documentation source="http://www.w3.org/TR/xhtml-modularization/abstract_modules.html#s_extformsmodule"/>
</xs:annotation>
<xs:attributeGroup name="xhtml.form.attlist">
<xs:annotation>
<xs:documentation>
Changes to XHTML Form Attlist
</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="xhtml.form.attlist">
<xs:annotation>
<xs:documentation>
Original Form Attributes (declared in Forms Module)
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup name="xhtml.input.attlist">
<xs:annotation>
<xs:documentation>
Changes to XHTML Form Input Element
</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="xhtml.input.attlist">
<xs:annotation>
<xs:documentation>
Original Input Attributes (in Forms Module)
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup name="xhtml.label.attlist">
<xs:attributeGroup ref="xhtml.label.attlist">
<xs:annotation>
<xs:documentation>
Original Label Attributes (in Forms Module)
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup name="xhtml.select.attlist">
<xs:attributeGroup ref="xhtml.select.attlist">
<xs:annotation>
<xs:documentation>
Original Select Attributes (in Forms Module)
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
<xs:attributeGroup name="xhtml.textarea.attlist">
<xs:attributeGroup ref="xhtml.textarea.attlist">
<xs:annotation>
<xs:documentation>
Original TextArea Attributes (in Forms Module)
</xs:documentation>
</xs:annotation>
</xs:attributeGroup>
</xs:attributeGroup>
</xs:redefine>
</xs:schema>
</pre>
<!-- END OF FILE SCHEMA/xhtml-print-modules-1.xsd.mhtml --><!--OddPage-->
<h1 about='#a_refs' typeof='bibo:Chapter' id="a_refs">D. References</h1>
<h2 typeof='bibo:Chapter' about='#a_normrefs' id='a_normrefs'>D.1. Normative References</h2>
<dl>
<dt class="normref" id="ref_charmod">[CHARMOD]</dt>
<dd><cite><a rel='dc:requires' href="http://www.w3.org/TR/2005/REC-charmod-20050215/">Character Model for the World Wide Web 1.0: Fundamentals</a></cite>, W3C Recommendation, M. Dürst, F.
Yergeau, R. Ishida, M. Wolf. T. Texin, eds., World Wide Web Consortium, 15 February 2005. Available at: http://www.w3.org/TR/2005/REC-charmod-20050215/. The <a href="http://www.w3.org/TR/charmod/">
latest version</a> is available at: http://www.w3.org/TR/charmod/</dd>
<dt class="normref" id="ref_html4">[HTML4]</dt>
<dd><cite><a rel='dc:requires' href="http://www.w3.org/TR/1999/REC-html401-19991224/">HTML 4.01 Specification</a></cite>, W3C Recommendation, D. Raggett, A. Le Hors, I. Jacobs, eds., World Wide
Web Consortium, 24 December 1999. Available at: http://www.w3.org/TR/1999/REC-html401-19991224. The <a href="http://www.w3.org/TR/html4/">latest version</a> is available at:
http://www.w3.org/TR/html4</dd>
<dt class="normref" id="ref_xhtml1">[XHTML1]</dt>
<dd><cite><a rel='dc:requires' href="http://www.w3.org/TR/2002/REC-xhtml1-20020801/">XHTML 1.0: The Extensible HyperText Markup Language (Second Edition) - A Reformulation of HTML 4 in XML
1.0</a></cite>, W3C Recommendation, Steven Pemberton, <i>et al.</i>, World Wide Web Consortium, 26 January 2000, revised 1 August 2002. Available at: http://www.w3.org/TR/2002/REC-xhtml1-20020801.
The <a href="http://www.w3.org/TR/xhtml1/">latest version</a> is available at: http://www.w3.org/TR/xhtml1</dd>
<dt class="normref" id="ref_xhtml11">[XHTML1.1]</dt>
<dd><cite><a rel='dc:requires' href="http://www.w3.org/TR/2010/PER-xhtml11-20101007/">XHTML 1.1 Second Edition - Module-based XHTML</a></cite>, W3C Proposed Edited Recommendation, S. McCarron, ed.,
World Wide Web Consortium, 7 October 2010. Available at: http://www.w3.org/TR/2010/PER-xhtml11-20101007. The <a href="http://www.w3.org/TR/xhtml11/">latest version</a> is available at:
http://www.w3.org/TR/xhtml11</dd>
<dt class="normref" id="ref_xhtmlmod">[XHTMLMOD]</dt>
<dd>"<cite><a rel='dc:requires' href="http://www.w3.org/TR/2010/REC-xhtml-modularization-20100729">Modularization of XHTML 1.1 Second Edition</a></cite>", W3C Recommendation, S. McCarron, <i><abbr
title="editor">ed.</abbr></i>, 29 July 2010.<br />
Available at: http://www.w3.org/TR/2010/REC-xhtml-modularization-20100729<br />
The <a href="http://www.w3.org/TR/xhtml-modularization">latest version</a> is available at: http://www.w3.org/TR/xhtml-modularization</dd>
<dt class="normref" id="ref_xml">[XML]</dt>
<dd><cite><a rel='dc:requires' href="http://www.w3.org/TR/2006/REC-xml-20060816/">Extensible Markup Language (XML) 1.0 (Fourth Edition)</a></cite>, W3C Recommendation, T. Bray, J. Paoli, C. M.
Sperberg-McQueen, E. Maler, F. Yergeau, eds., World Wide Web Consortium, 16 August 2006. Available at: http://www.w3.org/TR/2006/REC-xml-20060816. The <a href="http://www.w3.org/TR/REC-xml/">latest
version</a> is available at: http://www.w3.org/TR/REC-xml</dd>
<dt class="normref" id="ref_xmlschema">[XMLSCHEMA]</dt>
<dd>"<cite><a rel='dc:requires' href="http://www.w3.org/TR/2004/REC-xmlschema-1-20041028/">XML Schema Part 1: Structures Second Edition</a></cite>", W3C Recommendation, H. S. Thompson <i xml:lang=
"la">et al.</i>, <i><abbr title="editors">eds.</abbr></i>, 28 October 2004.<br />
Available at: http://www.w3.org/TR/2004/REC-xmlschema-1-20041028/<br />
"<cite><a rel='dc:requires' href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/">XML Schema Part 2: Datatypes Second Edition</a></cite>", W3C Recommendation, P. V. Biron, A. Malhotra, <i><abbr
title="editors">eds.</abbr></i>, 28 October 2004.<br />
Available at: http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/</dd>
<dt class="normref" id="ref_rfc2119">[RFC2119]</dt>
<dd><cite><a rel='dc:requires' href="http://www.ietf.org/rfc/rfc2119.txt">RFC2119 - Key words for use in RFCs to Indicate Requirement Levels</a></cite>, S. Bradner, The Internet Engineering Task
Force, March 1997. It is available from http://www.ietf.org/rfc/rfc2119.txt</dd>
<dt class="normref" id="ref_jpeg">[JPEG]</dt>
<dd><cite>JPEG File Interchange Format, version 1.02, September 1, 1992</cite>, Eric Hamilton, C-Cube Microsystems, 1 September 1992. Available from <a rel='dc:requires' href=
"ftp://ftp.uu.net/graphics/jpeg/jfif.ps.gz">ftp://ftp.uu.net/graphics/jpeg/jfif.ps.gz</a> or <a rel='dc:requires' href="ftp://ftp.uu.net/graphics/jpeg/jfif.txt.gz">
ftp://ftp.uu.net/graphics/jpeg/jfif.txt.gz</a></dd>
<dt class="normref" id="ref_ccitt">[CCITT]</dt>
<dd><cite>CCITT Recommendation T.81 | ISO/IEC 10918-1, Digital Compression and Coding of Continuous-tone Still Images: Requirements and Guidelines</cite>, ISO, 21 January 2000. Available from <a rel=
'dc:requires' href="http://www.iso.org/iso/search.htm">http://www.iso.org/iso/search.htm</a></dd>
<dt class="normref" id="ref_jeida">[JEIDA]</dt>
<dd><cite>JEIDA-49-1998 Digital still camera image file format standard(exif)</cite>, Japan Electronics and Information Technology Industries Association (JEITA). Available from <a rel='dc:requires'
href="http://www.jeita.or.jp/">http://www.jeita.or.jp/</a></dd>
<dt class="normref" id="ref_rfc3986">[RFC3986]</dt>
<dd><cite><a rel='dc:requires' href="http://www.ietf.org/rfc/rfc3986.txt">Uniform Resource Identifier (URI): Generic Syntax</a></cite>, T. Berners-Lee, R. Fielding, L. Masinter, Network Working
Group, January 2005. It is available from http://www.ietf.org/rfc/rfc3986.txt</dd>
<dt class="normref" id="ref_rfc2616">[RFC2616]</dt>
<dd><cite><a rel='dc:requires' href="http://www.ietf.org/rfc/rfc2616.txt">Hypertext Transfer Protocol -- HTTP/1.1</a></cite>, T. Fielding, J. Gettys, J. Mogul, H. Frystyk, L. Masinter, P. Leach, T.
Berners-Lee, The Internet Engineering Task Force, June 1999. It is available from http://www.ietf.org/rfc/rfc2616.txt</dd>
<dt id="ref_rfc3023">[RFC3023]</dt>
<dd><cite><a rel='dc:requires' href="http://www.ietf.org/rfc/rfc3023.txt">RFC3023 - XML Media Types</a></cite>, M. Murata, S. St.Laurent, and D. Kohn, The Internet Engineering Task Force, January
2001. It is available from http://www.ietf.org/rfc/rfc3023.txt.</dd>
<dt class="normref" id="ref_rfc3236">[RFC3236]</dt>
<dd><cite><a rel='dc:requires' href="http://www.ietf.org/rfc/rfc3236.txt">RFC3236 - The 'application/xhtml+xml' Media Type</a></cite>, M. Baker, The Internet Engineering Task Force, January 2002. It
is available from http://www.ietf.org/rfc/rfc3236.txt.</dd>
<dt class="normref" id="ref_bt601">[BT601.5]</dt>
<dd><cite><a rel='dc:requires' href="http://www.itu.int/ITU-R/">ITU-R Recommendation BT.601-5</a></cite>, "Studio Encoding Parameters of Digital Television for Standard 4:3 and Wide-Screen 16:9
Aspect Ratios", International Telecommunications Union, October 1995. It is available from http://www.itu.int/ITU-R</dd>
</dl>
<h2 typeof='bibo:Chapter' about='#a_inforefs' id='a_inforefs'>D.2. Informative References</h2>
<dl>
<dt class="inforef" id="ref_css_pp">[CSSPP]</dt>
<dd><cite><a rel='dc:references' href="http://www.w3.org/TR/2004/CR-css-print-20040225/">CSS Print Profile</a></cite>, W3C Candidate Recommendation, Jim Bigelow, ed., World Wide Web Consortium, 18
December 2003. Available at: http://www.w3.org/TR/2004/CR-css-print-20040225/. The <a href="http://www.w3.org/TR/css-print/">latest version</a> is available at: http://www.w3.org/TR/css-print/</dd>
<dt class="inforef" id="ref_mimempx">[MIMEMPX]</dt>
<dd><cite><a rel='dc:references' href="http://www.ietf.org/rfc/rfc3391.txt">RFC3391 - The MIME Application/Vnd.pwg-multiplexed Content-Type</a></cite>, R. Herriot, The Internet Engineering Task
Force, December 2002. It is available from http://www.ietf.org/rfc/rfc3391.txt</dd>
<dt class="inforef" id="ref_rfc2392">[RFC2392]</dt>
<dd><cite><a rel='dc:references' href="http://www.ietf.org/rfc/rfc2392.txt">Content-ID and Message-ID Uniform Resource Locators</a></cite>, E.Levinson, The Internet Engineering Task Force, August
1998. It is available from http://www.ietf.org/rfc/rfc2392.txt</dd>
<dt class="inforef" id="ref_rfc2397">[RFC2397]</dt>
<dd><cite><a rel='dc:references' href="http://www.ietf.org/rfc/rfc2397.txt">RFC2397 - The "data" URL scheme</a></cite>, L. Masinter, The Internet Engineering Task Force, August 1998. It is available
from http://www.ietf.org/rfc/rfc2397.txt</dd>
<dt class="inforef" id="ref_rfc2557">[RFC2557]</dt>
<dd><cite><a rel='dc:references' href="http://www.ietf.org/rfc/rfc2557.txt">RFC2557 - MIME Encapsulation of Aggregate Documents, such as HTML (MHTML)</a></cite>, J.Palme, A. Hopmann, N. Shelness, The
Internet Engineering Task Force, March 1999. It is available from http://www.ietf.org/rfc/rfc2557.txt.</dd>
<dt class="inforef" id="ref_xhtmlbasic">[XHTMLBASIC]</dt>
<dd><cite><a rel='dc:references' href="http://www.w3.org/TR/2000/REC-xhtml-basic-20001219/">XHTML Basic</a></cite>, W3C Recommendation, M. Baker, M. Ishikawa, <i>et al.</i>, eds., World Wide Web
Consortium, 19 December 2000. Available at: http://www.w3.org/TR/2000/REC-xhtml-basic-20001219. The <a href="http://www.w3.org/TR/xhtml-basic/">latest version</a> is available at:
http://www.w3.org/TR/xhtml-basic</dd>
<!--
<dt class="inforef" id="ref-XHP">[XHP]</dt>
<dd><cite><a href="ftp://ftp.xhtml-print.org/pub/pwg/xhtml-print/drafts/xhtml-print-draft-095.pdf">XHTML-Print</a>
</cite>, Don Wright, Melinda Grant, Peter Zehler, and Jun Fujisawa, eds. 7 March 2002. Available
at: "ftp://ftp.xhtml-print.org/pub/pwg/xhtml-print/drafts/xhtml-print-draft-095.pdf".</dd>
-->
<dt class="inforef" id="ref-XHTMLPrint">[XHTMLPRINT]</dt>
<dd><cite><a rel='dc:references' href="http://www.pwg.org/xhtml-print/HTML-Version/XHTML-Print.html">XHTML-Print</a></cite>, Printer Working Group Proposed Standard 5102.1, Don Wright, Melinda Grant,
Peter Zehler, Jun Fujisawa, and Jim Bigelow, eds. Printer Working Group, 31 March 2003. Available at: http://www.pwg.org/xhtml-print/HTML-Version/XHTML-Print.html.</dd>
</dl>
</body>
</html>