File: svgdtd.html

package info (click to toggle)
w3-recs 20110107-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 195,972 kB
  • ctags: 48,964
  • sloc: xml: 67,284; makefile: 115; perl: 31
file content (1781 lines) | stat: -rw-r--r-- 151,148 bytes parent folder | download
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">

<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >

    <title>DTD - SVG 1.0 - 20010904</title>

    <link rel="stylesheet" type="text/css" media="screen" href="style/svg-style.css" >
    <link rel="stylesheet" type="text/css" media="screen" href="http://www.w3.org/StyleSheets/TR/W3C-REC" >

    <link rel="prev" href="extend.html" >
    <link rel="next" href="svgdom.html" >
    <link rel="contents" href="index.html#minitoc" >
    <link rel="element" href="eltindex.html" title="elements" >
    <link rel="attributes" href="attindex.html" title="attributes" >
    <link rel="CSS-properties" href="propidx.html" title="properties" >
    <link rel="index" href="indexlist.html" title="index" >
  </head>

  <body>
    <div class="navlinks">
      <p><a href="extend.html">previous</a> &nbsp; <a href="svgdom.html">next</a>
      &nbsp; <a href="index.html#minitoc">contents</a>
      &nbsp; <a href="eltindex.html">elements</a>
      &nbsp; <a href="attindex.html">attributes</a>
      &nbsp; <a href="propidx.html">properties</a>
      &nbsp; <a href="indexlist.html">index</a> &nbsp;</p>
    </div>
    <hr class="navbar" />
    <div class='noprint' style='text-align: right'>
      <p style='font-family: monospace;font-size:small'>04 September 2001</p>
    </div>

    <h1>Appendix A: DTD</h1>
    <h3>Contents</h3>

    <ul class="toc">
      <li class="tocline2 tocxref"><a href="svgdtd.html#EntitiesDataTypes" class="tocxref">ENTITY DECLARATIONS: Data types</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#EntitiesCommonAttributes" class="tocxref">ENTITY DECLARATIONS: Collections of common attributes</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#EntitiesPresentationAttributes" class="tocxref">ENTITY DECLARATIONS: Collections of presentation attributes</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#EntitiesDTDExtensions" class="tocxref">ENTITY DECLARATIONS: DTD extensions</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsStruct" class="tocxref">DECLARATIONS CORRESPONDING TO: Document Structure</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsStyling" class="tocxref">DECLARATIONS CORRESPONDING TO: Styling</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsPaths" class="tocxref">DECLARATIONS CORRESPONDING TO: Paths</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsShapes" class="tocxref">DECLARATIONS CORRESPONDING TO: Basic Shapes</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsText" class="tocxref">DECLARATIONS CORRESPONDING TO: Text</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsPainting" class="tocxref">DECLARATIONS CORRESPONDING TO: Painting: Filling, Stroking and Marker Symbols</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsColor" class="tocxref">DECLARATIONS CORRESPONDING TO: Color</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsPservers" class="tocxref">DECLARATIONS CORRESPONDING TO: Gradients and Patterns</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsMasking" class="tocxref">DECLARATIONS CORRESPONDING TO: Clipping, Masking and Compositing</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsFilters" class="tocxref">DECLARATIONS CORRESPONDING TO: Filter Effects</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsInteract" class="tocxref">DECLARATIONS CORRESPONDING TO: Interactivity</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsLinking" class="tocxref">DECLARATIONS CORRESPONDING TO: Linking</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsScripting" class="tocxref">DECLARATIONS CORRESPONDING TO: Scripting</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsAnimate" class="tocxref">DECLARATIONS CORRESPONDING TO: Animation</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsFonts" class="tocxref">DECLARATIONS CORRESPONDING TO: Fonts</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsMetadata" class="tocxref">DECLARATIONS CORRESPONDING TO: Metadata</a></li>
      <li class="tocline2 tocxref"><a href="svgdtd.html#DefinitionsExtend" class="tocxref">DECLARATIONS CORRESPONDING TO: Extensibility</a></li>
    </ul>

    <p><strong>This appendix is normative.</strong></p>

<pre>
&lt;!-- =====================================================================
  This is the DTD for SVG 1.0.

  The specification for SVG that corresponds to this DTD is available at:

    http://www.w3.org/TR/2001/REC-SVG-20010904/

  Copyright (c) 2000 W3C (MIT, INRIA, Keio), All Rights Reserved.

  For SVG 1.0:

    Namespace:
      http://www.w3.org/2000/svg  

    Public identifier:
      PUBLIC "-//W3C//DTD SVG 1.0//EN"

    URI for the DTD:
      http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd
============================================================================= --&gt;

<a name="EntitiesDataTypes" id="EntitiesDataTypes"></a>
&lt;!-- ==============================================================
     ENTITY DECLARATIONS: Data types 
     ============================================================== --&gt;

&lt;!ENTITY % BaselineShiftValue "CDATA"&gt;
    &lt;!-- 'baseline-shift' property/attribute value (e.g., 'baseline', 'sub', etc.) --&gt;

&lt;!ENTITY % Boolean "(false | true)"&gt;
    &lt;!-- feature specification --&gt;

&lt;!ENTITY % ClassList "CDATA"&gt;
    &lt;!-- list of classes --&gt;

&lt;!ENTITY % ClipValue "CDATA"&gt;
    &lt;!-- 'clip' property/attribute value (e.g., 'auto', rect(...)) --&gt;

&lt;!ENTITY % ClipPathValue "CDATA"&gt;
    &lt;!-- 'clip-path' property/attribute value (e.g., 'none', <a href="struct.html#uriReferenceDefinition">%URI;</a>) --&gt;

&lt;!ENTITY % ClipFillRule "(nonzero | evenodd | inherit)"&gt;
    &lt;!-- 'clip-rule' or fill-rule property/attribute value --&gt;

&lt;!ENTITY % ContentType "CDATA"&gt;
    &lt;!-- media type, as per [<a href="http://www.ietf.org/rfc/rfc2045.txt">RFC2045</a>] --&gt;

&lt;!ENTITY % Coordinate "CDATA"&gt;
    &lt;!-- a <a href="types.html#DataTypeCoordinate">&lt;coordinate&gt;</a> --&gt;

&lt;!ENTITY % Coordinates "CDATA"&gt;
    &lt;!-- a list of <a href="types.html#DataTypeCoordinate">&lt;coordinate&gt;</a>s --&gt;

&lt;!ENTITY % Color "CDATA"&gt;
    &lt;!-- a <a href="types.html#DataTypeColor">&lt;color&gt;</a> value --&gt;

&lt;!ENTITY % CursorValue "CDATA"&gt;
    &lt;!-- 'cursor' property/attribute value (e.g., 'crosshair', <a href="struct.html#uriReferenceDefinition">%URI;</a>) --&gt;

&lt;!ENTITY % EnableBackgroundValue "CDATA"&gt;
    &lt;!-- 'enable-background' property/attribute value (e.g., 'new', 'accumulate') --&gt;

&lt;!ENTITY % ExtensionList "CDATA"&gt;
    &lt;!-- extension list specification --&gt;

&lt;!ENTITY % FeatureList "CDATA"&gt;
    &lt;!-- feature list specification --&gt;

&lt;!ENTITY % FilterValue "CDATA"&gt;
    &lt;!-- 'filter' property/attribute value (e.g., 'none', <a href="struct.html#uriReferenceDefinition">%URI;</a>) --&gt;

&lt;!ENTITY % FontFamilyValue "CDATA"&gt;
    &lt;!-- 'font-family' property/attribute value (i.e., list of fonts) --&gt;

&lt;!ENTITY % FontSizeValue "CDATA"&gt;
    &lt;!-- 'font-size' property/attribute value --&gt;

&lt;!ENTITY % FontSizeAdjustValue "CDATA"&gt;
    &lt;!-- 'font-size-adjust' property/attribute value --&gt;

&lt;!ENTITY % GlyphOrientationHorizontalValue "CDATA"&gt;
    &lt;!-- 'glyph-orientation-horizontal' property/attribute value (e.g., &lt;angle&gt;) --&gt;

&lt;!ENTITY % GlyphOrientationVerticalValue "CDATA"&gt;
    &lt;!-- 'glyph-orientation-vertical' property/attribute value (e.g., 'auto', &lt;angle&gt;) --&gt;

&lt;!ENTITY % Integer "CDATA"&gt;
    &lt;!-- a <a href="types.html#DataTypeInteger">&lt;integer&gt;</a> --&gt;

&lt;!ENTITY % KerningValue "CDATA"&gt;
    &lt;!-- 'kerning' property/attribute value (e.g., auto | <a href="types.html#DataTypeLength">&lt;length&gt;</a>) --&gt;

&lt;!ENTITY % LanguageCode "NMTOKEN"&gt;
    &lt;!-- a language code, as per [<a href="http://www.ietf.org/rfc/rfc3066.txt">RFC3066</a>] --&gt;

&lt;!ENTITY % LanguageCodes "CDATA"&gt;
    &lt;!-- comma-separated list of language codes, as per [<a href="http://www.ietf.org/rfc/rfc3066.txt">RFC3066</a>] --&gt;

&lt;!ENTITY % Length "CDATA"&gt;
    &lt;!-- a <a href="types.html#DataTypeLength">&lt;length&gt;</a> --&gt;

&lt;!ENTITY % Lengths "CDATA"&gt;
    &lt;!-- a list of <a href="types.html#DataTypeLength">&lt;length&gt;</a>s --&gt;

&lt;!ENTITY % LinkTarget "NMTOKEN"&gt;
    &lt;!-- link to this target --&gt;

&lt;!ENTITY % MarkerValue "CDATA"&gt;
    &lt;!-- 'marker' property/attribute value (e.g., 'none', <a href="struct.html#uriReferenceDefinition">%URI;</a>) --&gt;

&lt;!ENTITY % MaskValue "CDATA"&gt;
    &lt;!-- 'mask' property/attribute value (e.g., 'none', <a href="struct.html#uriReferenceDefinition">%URI;</a>) --&gt;

&lt;!ENTITY % MediaDesc "CDATA"&gt;
    &lt;!-- comma-separated list of media descriptors. --&gt;

&lt;!ENTITY % Number "CDATA"&gt;
    &lt;!-- a <a href="types.html#DataTypeNumber">&lt;number&gt;</a> --&gt;

&lt;!ENTITY % NumberOptionalNumber "CDATA"&gt;
    &lt;!-- list of <a href="types.html#DataTypeNumber">&lt;number&gt;</a>s, but at least one and at most two --&gt;

&lt;!ENTITY % NumberOrPercentage "CDATA"&gt;
    &lt;!-- a <a href="types.html#DataTypeNumber">&lt;number&gt;</a> or a  <a href="types.html#DataTypePercentage">&lt;percentage&gt;</a> --&gt;

&lt;!ENTITY % Numbers "CDATA"&gt;
    &lt;!-- a list of <a href="types.html#DataTypeNumber">&lt;number&gt;</a>s --&gt;

&lt;!ENTITY % OpacityValue "CDATA"&gt;
    &lt;!-- opacity value (e.g., <a href="types.html#DataTypeNumber">&lt;number&gt;</a>) --&gt;

&lt;!ENTITY % Paint "CDATA"&gt;
    &lt;!-- a 'fill' or 'stroke' property/attribute value: <a href="painting.html#SpecifyingPaint">&lt;paint&gt;</a> --&gt;

&lt;!ENTITY % PathData "CDATA"&gt;
    &lt;!-- a <a href="paths.html#PathData">path data specification</a> --&gt;

&lt;!ENTITY % Points "CDATA"&gt;
    &lt;!-- a <a href="shapes.html#PointsBNF">list of points</a> --&gt;

&lt;!ENTITY % PreserveAspectRatioSpec "CDATA"&gt;
    &lt;!-- 'preserveAspectRatio' attribute specification --&gt;

&lt;!ENTITY % Script "CDATA"&gt;
    &lt;!-- script expression --&gt;

&lt;!ENTITY % SpacingValue "CDATA"&gt;
    &lt;!-- 'letter-spacing' or 'word-spacing' property/attribute value (e.g., normal | <a href="types.html#DataTypeLength">&lt;length&gt;</a>) --&gt;

&lt;!ENTITY % StrokeDashArrayValue "CDATA"&gt;
    &lt;!-- 'stroke-dasharray' property/attribute value (e.g., 'none', list of <a href="types.html#DataTypeNumber">&lt;number&gt;</a>s) --&gt;

&lt;!ENTITY % StrokeDashOffsetValue "CDATA"&gt;
    &lt;!-- 'stroke-dashoffset' property/attribute value (e.g., 'none', <a href="types.html#DataTypeLength">&lt;legnth&gt;</a>) --&gt;

&lt;!ENTITY % StrokeMiterLimitValue "CDATA"&gt;
    &lt;!-- 'stroke-miterlimit' property/attribute value (e.g., <a href="types.html#DataTypeNumber">&lt;number&gt;</a>) --&gt;

&lt;!ENTITY % StrokeWidthValue "CDATA"&gt;
    &lt;!-- 'stroke-width' property/attribute value (e.g., <a href="types.html#DataTypeLength">&lt;length&gt;</a>) --&gt;

&lt;!ENTITY % StructuredText
  "content CDATA #FIXED 'structured text'" &gt;

&lt;!ENTITY % StyleSheet "CDATA"&gt;
    &lt;!-- style sheet data --&gt;

&lt;!ENTITY % SVGColor "CDATA"&gt;
    &lt;!-- An <a href="color.html#ColorIntroduction">SVG color</a> value (RGB plus optional ICC) --&gt;

&lt;!ENTITY % Text "CDATA"&gt;
    &lt;!-- arbitrary text string --&gt;

&lt;!ENTITY % TextDecorationValue "CDATA"&gt;
    &lt;!-- 'text-decoration' property/attribute value (e.g., 'none', 'underline') --&gt;

&lt;!ENTITY % TransformList "CDATA"&gt;
    &lt;!-- list of transforms --&gt;

&lt;!ENTITY % URI "CDATA"&gt;
    &lt;!-- a Uniform Resource Identifier, see [<a href="http://www.ietf.org/rfc/rfc2396.txt">URI</a>] --&gt;

&lt;!ENTITY % ViewBoxSpec "CDATA"&gt;
    &lt;!-- 'viewBox' attribute specification --&gt;

<a name="EntitiesCommonAttributes" id="EntitiesCommonAttributes"></a>
&lt;!-- ==============================================================
     ENTITY DECLARATIONS: Collections of common attributes 
     ============================================================== --&gt;

&lt;!-- All elements have an ID. --&gt;
&lt;!ENTITY % <a href="struct.html#StdAttrs">stdAttrs</a>
 "<a href="struct.html#IDAttribute">id</a> ID #IMPLIED
  <a href="struct.html#XMLBaseAttribute">xml:base</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED" &gt;

&lt;!-- Common attributes for elements that might contain character data content. --&gt;
&lt;!ENTITY % <a href="struct.html#LangSpaceAttrs">langSpaceAttrs</a>
 "<a href="struct.html#XMLLangAttribute">xml:lang</a> %LanguageCode; #IMPLIED
  <a href="struct.html#XMLSpaceAttribute">xml:space</a> (default|preserve) #IMPLIED" &gt;

&lt;!-- Common attributes to check for system capabilities. --&gt;
&lt;!ENTITY % <a href="struct.html#TestAttrs">testAttrs</a>
 "<a href="struct.html#RequiredFeaturesAttribute">requiredFeatures</a> %FeatureList; #IMPLIED
  <a href="struct.html#RequiredExtensionsAttribute">requiredExtensions</a> %ExtensionList; #IMPLIED
  <a href="struct.html#SystemLanguageAttribute">systemLanguage</a> %LanguageCodes; #IMPLIED" &gt;

&lt;!-- For most uses of URI referencing:
        standard XLink attributes other than xlink:href. --&gt;
&lt;!ENTITY % <a href="struct.html#xlinkRefAttrs">xlinkRefAttrs</a>
 "<a href="struct.html#XMLNSXLinkAttribute">xmlns:xlink</a> CDATA #FIXED 'http://www.w3.org/1999/xlink'
  <a href="struct.html#XLinkTypeAttribute">xlink:type</a> (simple) #FIXED 'simple' 
  <a href="struct.html#XLinkRoleAttribute">xlink:role</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="struct.html#XLinkArcRoleAttribute">xlink:arcrole</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="struct.html#XLinkTitleAttribute">xlink:title</a> CDATA #IMPLIED
  <a href="struct.html#XLinkShowAttribute">xlink:show</a> (other) 'other'
  <a href="struct.html#XLinkActuateAttribute">xlink:actuate</a> (onLoad) #FIXED 'onLoad'" &gt;

&lt;!-- Standard XLink attributes for uses of URI referencing where xlink:show is 'embed' --&gt;
&lt;!ENTITY % <a href="struct.html#xlinkRefAttrsEmbed">xlinkRefAttrsEmbed</a>
 "<a href="struct.html#XMLNSXLinkAttribute">xmlns:xlink</a> CDATA #FIXED 'http://www.w3.org/1999/xlink'
  <a href="struct.html#XLinkTypeAttribute">xlink:type</a> (simple) #FIXED 'simple' 
  <a href="struct.html#XLinkRoleAttribute">xlink:role</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="struct.html#XLinkArcRoleAttribute">xlink:arcrole</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="struct.html#XLinkTitleAttribute">xlink:title</a> CDATA #IMPLIED
  <a href="struct.html#XLinkShowAttribute">xlink:show</a> (embed) 'embed'
  <a href="struct.html#XLinkActuateAttribute">xlink:actuate</a> (onLoad) #FIXED 'onLoad'" &gt;

&lt;!ENTITY % <a href="script.html#GraphicsEvents">graphicsElementEvents</a>
  "onfocusin %Script; #IMPLIED
   onfocusout %Script; #IMPLIED
   onactivate %Script; #IMPLIED
   onclick %Script; #IMPLIED
   onmousedown %Script; #IMPLIED
   onmouseup %Script; #IMPLIED
   onmouseover %Script; #IMPLIED
   onmousemove %Script; #IMPLIED
   onmouseout %Script; #IMPLIED
   onload %Script; #IMPLIED" &gt;

&lt;!ENTITY % <a href="script.html#DocumentEvents">documentEvents</a>
  "onunload %Script; #IMPLIED
   onabort %Script; #IMPLIED
   onerror %Script; #IMPLIED
   onresize %Script; #IMPLIED
   onscroll %Script; #IMPLIED
   onzoom %Script; #IMPLIED" &gt;

&lt;!ENTITY % <a href="script.html#AnimationEvents">animationEvents</a>
  "onbegin %Script; #IMPLIED
   onend %Script; #IMPLIED
   onrepeat %Script; #IMPLIED" &gt;

&lt;!-- This entity allows for at most one of desc, title and metadata,
     supplied in any order --&gt;
&lt;!ENTITY % descTitleMetadata
          "(((desc,((title,metadata?)|(metadata,title?))?)|
          (title,((desc,metadata?)|(metadata,desc?))?)|
          (metadata,((desc,title?)|(title,desc?))?))?)" &gt;

<a name="EntitiesPresentationAttributes" id="EntitiesPresentationAttributes"></a>
&lt;!-- ==============================================================
     ENTITY DECLARATIONS: Collections of <a href="intro.html#TermPresentationAttribute">presentation attributes</a> 
     ============================================================== --&gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> have to do with specifying color. --&gt;
&lt;!ENTITY % PresentationAttributes-Color
  "color %Color; #IMPLIED
   color-interpolation (auto | sRGB | linearRGB | inherit) #IMPLIED
   color-rendering (auto | optimizeSpeed | optimizeQuality | inherit) #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="intro.html#TermContainerElement">container elements</a>. --&gt;
&lt;!ENTITY % PresentationAttributes-Containers
  "enable-background %EnableBackgroundValue; #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="filters.html#feFloodElement"><span class="element-name">'feFlood'</span></a> elements. --&gt;
&lt;!ENTITY % PresentationAttributes-feFlood
  "flood-color %SVGColor; #IMPLIED
   flood-opacity %OpacityValue; #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="painting.html">filling and stroking operations</a>. --&gt;
&lt;!ENTITY % PresentationAttributes-FillStroke
  "fill <a href="painting.html#SpecifyingPaint">%Paint;</a> #IMPLIED
   fill-opacity %OpacityValue; #IMPLIED
   fill-rule %ClipFillRule; #IMPLIED
   stroke <a href="painting.html#SpecifyingPaint">%Paint;</a> #IMPLIED
   stroke-dasharray %StrokeDashArrayValue; #IMPLIED
   stroke-dashoffset %StrokeDashOffsetValue; #IMPLIED
   stroke-linecap (butt | round | square | inherit) #IMPLIED
   stroke-linejoin (miter | round | bevel | inherit) #IMPLIED
   stroke-miterlimit %StrokeMiterLimitValue; #IMPLIED
   stroke-opacity %OpacityValue; #IMPLIED
   stroke-width %StrokeWidthValue; #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="filters.html#TermFilterPrimitive">filter primitives</a>. --&gt;
&lt;!ENTITY % PresentationAttributes-FilterPrimitives
  "color-interpolation-filters (auto | sRGB | linearRGB | inherit) #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> have to do with selecting a font to use. --&gt;
&lt;!ENTITY % PresentationAttributes-FontSpecification
  "font-family %FontFamilyValue; #IMPLIED
   font-size %FontSizeValue; #IMPLIED
   font-size-adjust %FontSizeAdjustValue; #IMPLIED
   font-stretch (normal | wider | narrower | ultra-condensed | extra-condensed |
                 condensed | semi-condensed | semi-expanded | expanded |
                 extra-expanded | ultra-expanded | inherit) #IMPLIED
   font-style (normal | italic | oblique | inherit) #IMPLIED
   font-variant (normal | small-caps | inherit) #IMPLIED
   font-weight (normal | bold | bolder | lighter | 100 | 200 | 300 |
               400 | 500 | 600 | 700 | 800 | 900 | inherit) #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to gradient <a href="pservers.html#StopElement">'stop'</a> elements. --&gt;
&lt;!ENTITY % PresentationAttributes-Gradients
  "stop-color %SVGColor; #IMPLIED
   stop-opacity %OpacityValue; #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="intro.html#TermGraphicsElement">graphics elements</a>. --&gt;
&lt;!ENTITY % PresentationAttributes-Graphics
  "clip-path %ClipPathValue; #IMPLIED
   clip-rule %ClipFillRule; #IMPLIED
   cursor %CursorValue; #IMPLIED
   display (inline | block | list-item | run-in | compact | marker |
            table | inline-table | table-row-group | table-header-group |
            table-footer-group | table-row | table-column-group | table-column |
            table-cell | table-caption | none | inherit) #IMPLIED
   filter %FilterValue; #IMPLIED
   image-rendering (auto | optimizeSpeed | optimizeQuality | inherit) #IMPLIED
   mask %MaskValue; #IMPLIED
   opacity %OpacityValue; #IMPLIED
   pointer-events (visiblePainted | visibleFill | visibleStroke | visible |
                   painted | fill | stroke | all | none | inherit) #IMPLIED
   shape-rendering (auto | optimizeSpeed | crispEdges | geometricPrecision | inherit) #IMPLIED
   text-rendering (auto | optimizeSpeed | optimizeLegibility | geometricPrecision | inherit) #IMPLIED
   visibility (visible | hidden | inherit) #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="struct.html#ImageElement">'image'</a> elements. --&gt;
&lt;!ENTITY % PresentationAttributes-Images
  "color-profile CDATA #IMPLIED " &gt;

&lt;!--The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="filters.html#feDiffuseLightingElement"><span class="element-name">'feDiffuseLighting'</span></a> and <a href="filters.html#feSpecularLightingElement"><span class="element-name">'feSpecularLighting'</span></a> elements. --&gt;
&lt;!ENTITY % PresentationAttributes-LightingEffects
  "lighting-color %SVGColor; #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="painting.html#Markers">marker operations</a>. --&gt;
&lt;!ENTITY % PresentationAttributes-Markers
  "marker-start %MarkerValue; #IMPLIED
   marker-mid %MarkerValue; #IMPLIED
   marker-end %MarkerValue; #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="intro.html#TermTextContentElement">text content elements</a>. --&gt;
&lt;!ENTITY % PresentationAttributes-TextContentElements
  "alignment-baseline (baseline | top | before-edge | text-top | text-before-edge |
                        middle | bottom | after-edge | text-bottom | text-after-edge |
                        ideographic | lower | hanging | mathematical | inherit) #IMPLIED
   baseline-shift %BaselineShiftValue; #IMPLIED
   direction (ltr | rtl | inherit) #IMPLIED
   dominant-baseline (auto | autosense-script | no-change | reset|
                      ideographic | lower | hanging | mathematical | inherit ) #IMPLIED
   glyph-orientation-horizontal %GlyphOrientationHorizontalValue; #IMPLIED
   glyph-orientation-vertical %GlyphOrientationVerticalValue; #IMPLIED
   kerning %KerningValue; #IMPLIED
   letter-spacing %SpacingValue; #IMPLIED
   text-anchor (start | middle | end | inherit) #IMPLIED
   text-decoration %TextDecorationValue; #IMPLIED
   unicode-bidi (normal | embed | bidi-override | inherit) #IMPLIED
   word-spacing %SpacingValue; #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="text.html#TextElement"><span class="element-name">'text'</span></a> elements. --&gt;
&lt;!ENTITY % PresentationAttributes-TextElements
  "writing-mode (lr-tb | rl-tb | tb-rl | lr | rl | tb | inherit) #IMPLIED " &gt;

&lt;!-- The following <a href="intro.html#TermPresentationAttribute">presentation attributes</a> apply to <a href="coords.html#ElementsThatEstablishViewports">elements that establish viewports</a>. --&gt;
&lt;!ENTITY % PresentationAttributes-Viewports
  "clip %ClipValue; #IMPLIED
   overflow (visible | hidden | scroll | auto | inherit) #IMPLIED " &gt;

&lt;!--The following represents the complete list of <a href="intro.html#TermPresentationAttribute">presentation attributes</a>. --&gt;
&lt;!ENTITY % PresentationAttributes-All
  "%PresentationAttributes-Color;
   %PresentationAttributes-Containers;
   %PresentationAttributes-feFlood;
   %PresentationAttributes-FillStroke;
   %PresentationAttributes-FilterPrimitives;
   %PresentationAttributes-FontSpecification;
   %PresentationAttributes-Gradients;
   %PresentationAttributes-Graphics;
   %PresentationAttributes-Images;
   %PresentationAttributes-LightingEffects;
   %PresentationAttributes-Markers;
   %PresentationAttributes-TextContentElements;
   %PresentationAttributes-TextElements;
   %PresentationAttributes-Viewports;" &gt;


<a name="EntitiesDTDExtensions" id="EntitiesDTDExtensions"></a>
&lt;!-- ==============================================================
     ENTITY DECLARATIONS: DTD extensions 
     ============================================================== --&gt;

&lt;!-- Allow for extending the DTD with internal subset for 
     container and graphics elements --&gt;
&lt;!ENTITY % ceExt "" &gt;
&lt;!ENTITY % geExt "" &gt;

<a name="DefinitionsStruct" id="DefinitionsStruct"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="struct.html">Document Structure</a> 
     ============================================================== --&gt;

&lt;!ENTITY % svgExt "" &gt;
&lt;!ELEMENT <a href="struct.html#SVGElement">svg</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %ceExt;%svgExt;)* &gt;
&lt;!ATTLIST <a href="struct.html#SVGElement">svg</a>
  <a href="struct.html#XMLNSAttribute">xmlns</a> CDATA #FIXED "http://www.w3.org/2000/svg"
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED 
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#ViewBoxAttribute">viewBox</a> %ViewBoxSpec; #IMPLIED
  <a href="coords.html#ViewBoxAttribute">preserveAspectRatio</a> %PreserveAspectRatioSpec; 'xMidYMid meet'
  <a href="interact.html#ZoomAndPanAttribute">zoomAndPan</a> (disable | magnify) 'magnify'
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="script.html#DocumentEvents">%documentEvents;</a>
  <a href="struct.html#SVGElementVersionAttribute">version</a> <a href="types.html#DataTypeNumber">%Number;</a> #FIXED "1.0"
  <a href="struct.html#SVGElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="struct.html#SVGElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="struct.html#SVGElementWidthAttribute">width</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="struct.html#SVGElementHeightAttribute">height</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="script.html#ContentScriptTypeAttribute">contentScriptType</a> %ContentType; "text/ecmascript"
  <a href="styling.html#ContentStyleTypeAttribute">contentStyleType</a> %ContentType; "text/css" &gt;

&lt;!ENTITY % gExt "" &gt;
&lt;!ELEMENT <a href="struct.html#GElement">g</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %ceExt;%gExt;)* &gt;
&lt;!ATTLIST <a href="struct.html#GElement">g</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>  &gt;

&lt;!ENTITY % defsExt "" &gt;
&lt;!ELEMENT <a href="struct.html#DefsElement">defs</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %ceExt;%defsExt;)* &gt;
&lt;!ATTLIST <a href="struct.html#DefsElement">defs</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>  &gt;

&lt;!ENTITY % descExt "" &gt;
&lt;!ELEMENT <a href="struct.html#DescElement">desc</a> (#PCDATA %descExt;)* &gt;
&lt;!ATTLIST <a href="struct.html#DescElement">desc</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  %StructuredText; &gt;

&lt;!ENTITY % titleExt "" &gt;
&lt;!ELEMENT <a href="struct.html#TitleElement">title</a> (#PCDATA %titleExt;)* &gt;
&lt;!ATTLIST <a href="struct.html#TitleElement">title</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  %StructuredText; &gt;

&lt;!ENTITY % symbolExt "" &gt;
&lt;!ELEMENT <a href="struct.html#SymbolElement">symbol</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %ceExt;%symbolExt;)* &gt;
&lt;!ATTLIST <a href="struct.html#SymbolElement">symbol</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#ViewBoxAttribute">viewBox</a> %ViewBoxSpec; #IMPLIED
  <a href="coords.html#ViewBoxAttribute">preserveAspectRatio</a> %PreserveAspectRatioSpec; 'xMidYMid meet'
  <a href="script.html#EventHandling">%graphicsElementEvents;</a> &gt;

&lt;!ENTITY % useExt "" &gt;
&lt;!ELEMENT <a href="struct.html#UseElement">use</a> (%descTitleMetadata;,(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                   %geExt;%useExt;)*) &gt;
&lt;!ATTLIST <a href="struct.html#UseElement">use</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrsEmbed">%xlinkRefAttrsEmbed;</a>
  <a href="struct.html#xlinkRefAttrsEmbed">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="struct.html#UseElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="struct.html#UseElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="struct.html#UseElementWidthAttribute">width</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="struct.html#UseElementHeightAttribute">height</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED &gt;

&lt;!ENTITY % imageExt "" &gt;
&lt;!ELEMENT <a href="struct.html#ImageElement">image</a> (%descTitleMetadata;,(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                   %geExt;%imageExt;)*) &gt;
&lt;!ATTLIST <a href="struct.html#ImageElement">image</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrsEmbed">%xlinkRefAttrsEmbed;</a>
  <a href="struct.html#xlinkRefAttrsEmbed">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Images;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Viewports;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="coords.html#ViewBoxAttribute">preserveAspectRatio</a> %PreserveAspectRatioSpec; 'xMidYMid meet'
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="struct.html#ImageElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="struct.html#ImageElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="struct.html#ImageElementWidthAttribute">width</a> <a href="types.html#DataTypeLength">%Length;</a> #REQUIRED
  <a href="struct.html#ImageElementHeightAttribute">height</a> <a href="types.html#DataTypeLength">%Length;</a> #REQUIRED &gt;

&lt;!ENTITY % switchExt "" &gt;
&lt;!ELEMENT <a href="struct.html#SwitchElement">switch</a> (%descTitleMetadata;,
                  (<a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="extend.html#ForeignObjectElement">foreignObject</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                   %ceExt;%switchExt;)*) &gt;
&lt;!ATTLIST <a href="struct.html#SwitchElement">switch</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a> &gt;

<a name="DefinitionsStyling" id="DefinitionsStyling"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="styling.html">Styling</a> 
     ============================================================== --&gt;

&lt;!ELEMENT <a href="styling.html#StyleElement">style</a> (#PCDATA) &gt;
&lt;!ATTLIST <a href="styling.html#StyleElement">style</a> 
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#XMLSpaceAttribute">xml:space</a> (preserve) #FIXED "preserve"
  <a href="styling.html#StyleElementTypeAttribute">type</a> %ContentType; #REQUIRED
  <a href="styling.html#StyleElementMediaAttribute">media</a> %MediaDesc; #IMPLIED
  <a href="styling.html#StyleElementTitleAttribute">title</a> %Text; #IMPLIED &gt;

<a name="DefinitionsPaths" id="DefinitionsPaths"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="paths.html">Paths</a>
     ============================================================== --&gt;

&lt;!ENTITY % pathExt "" &gt;
&lt;!ELEMENT <a href="paths.html#PathElement">path</a> (%descTitleMetadata;,(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                %geExt;%pathExt;)*) &gt;
&lt;!ATTLIST <a href="paths.html#PathElement">path</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Markers;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="paths.html#DAttribute">d</a> %PathData; #REQUIRED
  <a href="paths.html#PathLengthAttribute">pathLength</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

<a name="DefinitionsShapes" id="DefinitionsShapes"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="shapes.html">Basic Shapes</a>
     ============================================================== --&gt;

&lt;!ENTITY % rectExt "" &gt;
&lt;!ELEMENT <a href="shapes.html#RectElement">rect</a> (%descTitleMetadata;,(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                %geExt;%rectExt;)*) &gt;
&lt;!ATTLIST <a href="shapes.html#RectElement">rect</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="shapes.html#RectElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="shapes.html#RectElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="shapes.html#RectElementWidthAttribute">width</a> <a href="types.html#DataTypeLength">%Length;</a> #REQUIRED
  <a href="shapes.html#RectElementHeightAttribute">height</a> <a href="types.html#DataTypeLength">%Length;</a> #REQUIRED
  <a href="shapes.html#RectElementRXAttribute">rx</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="shapes.html#RectElementRYAttribute">ry</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED &gt;

&lt;!ENTITY % circleExt "" &gt;
&lt;!ELEMENT <a href="shapes.html#CircleElement">circle</a> (%descTitleMetadata;,(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                %geExt;%circleExt;)*) &gt;
&lt;!ATTLIST <a href="shapes.html#CircleElement">circle</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="shapes.html#CircleElementCXAttribute">cx</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="shapes.html#CircleElementCYAttribute">cy</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="shapes.html#CircleElementRAttribute">r</a> <a href="types.html#DataTypeLength">%Length;</a> #REQUIRED &gt;

&lt;!ENTITY % ellipseExt "" &gt;
&lt;!ELEMENT <a href="shapes.html#EllipseElement">ellipse</a> (%descTitleMetadata;,(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                %geExt;%ellipseExt;)*) &gt;
&lt;!ATTLIST <a href="shapes.html#EllipseElement">ellipse</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="shapes.html#EllipseElementCXAttribute">cx</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="shapes.html#EllipseElementCYAttribute">cy</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="shapes.html#EllipseElementRXAttribute">rx</a> <a href="types.html#DataTypeLength">%Length;</a> #REQUIRED
  <a href="shapes.html#EllipseElementRYAttribute">ry</a> <a href="types.html#DataTypeLength">%Length;</a> #REQUIRED &gt;

&lt;!ENTITY % lineExt "" &gt;
&lt;!ELEMENT <a href="shapes.html#LineElement">line</a> (%descTitleMetadata;,(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                %geExt;%lineExt;)*) &gt;
&lt;!ATTLIST <a href="shapes.html#LineElement">line</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Markers;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="shapes.html#LineElementX1Attribute">x1</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="shapes.html#LineElementY1Attribute">y1</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="shapes.html#LineElementX2Attribute">x2</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="shapes.html#LineElementY2Attribute">y2</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED &gt;

&lt;!ENTITY % polylineExt "" &gt;
&lt;!ELEMENT <a href="shapes.html#PolylineElement">polyline</a> (%descTitleMetadata;,(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                %geExt;%polylineExt;)*) &gt;
&lt;!ATTLIST <a href="shapes.html#PolylineElement">polyline</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Markers;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="shapes.html#PolylineElementPointsAttribute">points</a> <a href="shapes.html#PointsBNF">%Points;</a> #REQUIRED &gt;

&lt;!ENTITY % polygonExt "" &gt;
&lt;!ELEMENT <a href="shapes.html#PolygonElement">polygon</a> (%descTitleMetadata;,(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                %geExt;%polygonExt;)*) &gt;
&lt;!ATTLIST <a href="shapes.html#PolygonElement">polygon</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Markers;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="shapes.html#PolygonElementPointsAttribute">points</a> <a href="shapes.html#PointsBNF">%Points;</a> #REQUIRED &gt;

<a name="DefinitionsText" id="DefinitionsText"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="text.html">Text</a>
     ============================================================== --&gt;

&lt;!ENTITY % textExt "" &gt;
&lt;!ELEMENT <a href="text.html#TextElement">text</a> (#PCDATA|<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|
                <a href="text.html#TSpanElement">tspan</a>|<a href="text.html#TRefElement">tref</a>|<a href="text.html#TextPathElement">textPath</a>|<a href="text.html#AltGlyphElement">altGlyph</a>|<a href="linking.html#AElement">a</a>|<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|
                <a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                %geExt;%textExt;)* &gt;
&lt;!ATTLIST <a href="text.html#TextElement">text</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FontSpecification;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-TextContentElements;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-TextElements;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="text.html#TextElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinates;</a> #IMPLIED
  <a href="text.html#TextElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinates;</a> #IMPLIED
  <a href="text.html#TextElementDXAttribute">dx</a> <a href="types.html#DataTypeLength">%Lengths;</a> #IMPLIED
  <a href="text.html#TextElementDYAttribute">dy</a> <a href="types.html#DataTypeLength">%Lengths;</a> #IMPLIED
  <a href="text.html#TextElementRotateAttribute">rotate</a> <a href="types.html#DataTypeNumber">%Numbers;</a> #IMPLIED
  <a href="text.html#TextElementTextLengthAttribute">textLength</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="text.html#TextElementLengthAdjustAttribute">lengthAdjust</a> (spacing|spacingAndGlyphs) #IMPLIED &gt;

&lt;!ENTITY % tspanExt "" &gt;
&lt;!ELEMENT <a href="text.html#TSpanElement">tspan</a> (#PCDATA|<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="text.html#TSpanElement">tspan</a>|<a href="text.html#TRefElement">tref</a>|<a href="text.html#AltGlyphElement">altGlyph</a>|<a href="linking.html#AElement">a</a>|<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateColorElement">animateColor</a>
                %tspanExt;)* &gt;
&lt;!ATTLIST <a href="text.html#TSpanElement">tspan</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FontSpecification;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-TextContentElements;</a>
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="text.html#TSpanElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinates;</a> #IMPLIED
  <a href="text.html#TSpanElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinates;</a> #IMPLIED
  <a href="text.html#TSpanElementDXAttribute">dx</a> <a href="types.html#DataTypeLength">%Lengths;</a> #IMPLIED
  <a href="text.html#TSpanElementDYAttribute">dy</a> <a href="types.html#DataTypeLength">%Lengths;</a> #IMPLIED
  <a href="text.html#TSpanElementRotateAttribute">rotate</a> <a href="types.html#DataTypeNumber">%Numbers;</a> #IMPLIED
  <a href="text.html#TSpanElementTextLengthAttribute">textLength</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="text.html#TextElementLengthAdjustAttribute">lengthAdjust</a> (spacing|spacingAndGlyphs) #IMPLIED &gt;

&lt;!ENTITY % trefExt "" &gt;
&lt;!ELEMENT <a href="text.html#TRefElement">tref</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateColorElement">animateColor</a>
                %trefExt;)* &gt;
&lt;!ATTLIST <a href="text.html#TRefElement">tref</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="text.html#TRefElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FontSpecification;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-TextContentElements;</a>
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="text.html#TSpanElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinates;</a> #IMPLIED
  <a href="text.html#TSpanElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinates;</a> #IMPLIED
  <a href="text.html#TSpanElementDXAttribute">dx</a> <a href="types.html#DataTypeLength">%Lengths;</a> #IMPLIED
  <a href="text.html#TSpanElementDYAttribute">dy</a> <a href="types.html#DataTypeLength">%Lengths;</a> #IMPLIED
  <a href="text.html#TSpanElementRotateAttribute">rotate</a> <a href="types.html#DataTypeNumber">%Numbers;</a> #IMPLIED
  <a href="text.html#TSpanElementTextLengthAttribute">textLength</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="text.html#TextElementLengthAdjustAttribute">lengthAdjust</a> (spacing|spacingAndGlyphs) #IMPLIED &gt;

&lt;!ENTITY % textPathExt "" &gt;
&lt;!ELEMENT <a href="text.html#TextPathElement">textPath</a> (#PCDATA|<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="text.html#TSpanElement">tspan</a>|<a href="text.html#TRefElement">tref</a>|<a href="text.html#AltGlyphElement">altGlyph</a>|<a href="linking.html#AElement">a</a>|<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateColorElement">animateColor</a>
                %textPathExt;)* &gt;
&lt;!ATTLIST <a href="text.html#TextPathElement">textPath</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="text.html#TextPathElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FontSpecification;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-TextContentElements;</a>
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="text.html#TextPathElementStartOffsetAttribute">startOffset</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="text.html#TSpanElementTextLengthAttribute">textLength</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="text.html#TextElementLengthAdjustAttribute">lengthAdjust</a> (spacing|spacingAndGlyphs) #IMPLIED
  <a href="text.html#TextPathElementMethodAttribute">method</a> (align|stretch) #IMPLIED
  <a href="text.html#TextPathElementSpacingAttribute">spacing</a> (auto|exact) #IMPLIED &gt;

&lt;!ENTITY % altGlyphExt "" &gt;
&lt;!ELEMENT <a href="text.html#AltGlyphElement">altGlyph</a> (#PCDATA %altGlyphExt;)* &gt;
&lt;!ATTLIST <a href="text.html#AltGlyphElement">altGlyph</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="text.html#AltGlyphElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED 
  <a href="text.html#AltGlyphElementGlyphRefAttribute">glyphRef</a> CDATA #IMPLIED
  <a href="text.html#AltGlyphElementFormatAttribute">format</a> CDATA #IMPLIED
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FontSpecification;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-TextContentElements;</a>
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="text.html#AltGlyphElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinates;</a> #IMPLIED
  <a href="text.html#AltGlyphElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinates;</a> #IMPLIED
  <a href="text.html#AltGlyphElementDXAttribute">dx</a> <a href="types.html#DataTypeLength">%Lengths;</a> #IMPLIED
  <a href="text.html#AltGlyphElementDYAttribute">dy</a> <a href="types.html#DataTypeLength">%Lengths;</a> #IMPLIED
  <a href="text.html#AltGlyphElementRotateAttribute">rotate</a> <a href="types.html#DataTypeNumber">%Numbers;</a> #IMPLIED &gt;

&lt;!ENTITY % altGlyphDefExt "" &gt;
&lt;!ELEMENT <a href="text.html#AltGlyphDefElement">altGlyphDef</a> ((<a href="text.html#GlyphRefElement">glyphRef</a>+|<a href="text.html#AltGlyphItemElement">altGlyphItem</a>+) %altGlyphDefExt;) &gt;
&lt;!ATTLIST <a href="text.html#AltGlyphDefElement">altGlyphDef</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a> &gt;

&lt;!ENTITY % altGlyphItemExt "" &gt;
&lt;!ELEMENT <a href="text.html#AltGlyphItemElement">altGlyphItem</a> (<a href="text.html#GlyphRefElement">glyphRef</a>+ %altGlyphItemExt;) &gt;
&lt;!ATTLIST <a href="text.html#AltGlyphItemElement">altGlyphItem</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a> &gt;

&lt;!ELEMENT <a href="text.html#GlyphRefElement">glyphRef</a> EMPTY &gt;
&lt;!ATTLIST <a href="text.html#GlyphRefElement">glyphRef</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="text.html#GlyphRefElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FontSpecification;</a>
  <a href="text.html#GlyphRefElementGlyphRefAttribute">glyphRef</a> CDATA #IMPLIED
  <a href="text.html#GlyphRefElementFormatAttribute">format</a> CDATA #IMPLIED
  <a href="text.html#GlyphRefElementXAttribute">x</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="text.html#GlyphRefElementYAttribute">y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="text.html#GlyphRefElementDXAttribute">dx</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="text.html#GlyphRefElementDYAttribute">dy</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

<a name="DefinitionsPainting" id="DefinitionsPainting"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="painting.html">Painting: Filling, Stroking and Marker Symbols</a> 
     ============================================================== --&gt;

&lt;!ENTITY % markerExt "" &gt;
&lt;!ELEMENT <a href="painting.html#MarkerElement">marker</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %ceExt;%markerExt;)* &gt;
&lt;!ATTLIST <a href="painting.html#MarkerElement">marker</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#ViewBoxAttribute">viewBox</a> %ViewBoxSpec; #IMPLIED
  <a href="coords.html#ViewBoxAttribute">preserveAspectRatio</a> %PreserveAspectRatioSpec; 'xMidYMid meet'
  <a href="painting.html#MarkerElementRefXAttribute">refX</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="painting.html#MarkerElementRefYAttribute">refY</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="painting.html#MarkerUnitsAttribute">markerUnits</a> (strokeWidth | userSpaceOnUse) #IMPLIED
  <a href="painting.html#MarkerWidthAttribute">markerWidth</a>  <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="painting.html#MarkerHeightAttribute">markerHeight</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="painting.html#OrientAttribute">orient</a> CDATA #IMPLIED &gt;

<a name="DefinitionsColor" id="DefinitionsColor"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="color.html">Color</a> 
     ============================================================== --&gt;

&lt;!ELEMENT <a href="color.html#ColorProfileElement">color-profile</a> (%descTitleMetadata;) &gt;
&lt;!ATTLIST <a href="color.html#ColorProfileElement">color-profile</a> 
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="color.html#ColorProfileElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="color.html#ColorProfileElementLocalAttribute">local</a> CDATA #IMPLIED  
  <a href="color.html#ColorProfileElementNameAttribute">name</a> CDATA #REQUIRED
  <a href="color.html#ColorProfileElementRenderingIntentAttribute">rendering-intent</a> (auto | perceptual | relative-colorimetric | saturation | absolute-colorimetric) "auto" &gt;

<a name="DefinitionsPservers" id="DefinitionsPservers"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="pservers.html">Gradients and Patterns</a> 
     ============================================================== --&gt;

&lt;!ENTITY % linearGradientExt "" &gt;
&lt;!ELEMENT <a href="pservers.html#LinearGradientElement">linearGradient</a> (%descTitleMetadata;,(<a href="pservers.html#StopElement">stop</a>|<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                   %linearGradientExt;)*) &gt;
&lt;!ATTLIST <a href="pservers.html#LinearGradientElement">linearGradient</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="pservers.html#LinearGradientElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Gradients;</a>
  <a href="pservers.html#LinearGradientUnitsAttribute">gradientUnits</a> (userSpaceOnUse | objectBoundingBox) #IMPLIED
  <a href="pservers.html#LinearGradientTransformAttribute">gradientTransform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="pservers.html#LinearGradientX1Attribute">x1</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#LinearGradientY1Attribute">y1</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#LinearGradientX2Attribute">x2</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#LinearGradientY2Attribute">y2</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#LinearGradientSpreadMethodAttribute">spreadMethod</a> (pad | reflect | repeat) #IMPLIED &gt;


&lt;!ENTITY % radialGradientExt "" &gt;
&lt;!ELEMENT <a href="pservers.html#RadialGradientElement">radialGradient</a> (%descTitleMetadata;,(<a href="pservers.html#StopElement">stop</a>|<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                   %radialGradientExt;)*) &gt;
&lt;!ATTLIST <a href="pservers.html#RadialGradientElement">radialGradient</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="pservers.html#RadialGradientElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Gradients;</a>
  <a href="pservers.html#RadialGradientUnitsAttribute">gradientUnits</a> (userSpaceOnUse | objectBoundingBox) #IMPLIED
  <a href="pservers.html#RadialGradientTransformAttribute">gradientTransform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="pservers.html#RadialGradientCXAttribute">cx</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#RadialGradientCYAttribute">cy</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#RadialGradientRAttribute">r</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="pservers.html#RadialGradientFXAttribute">fx</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#RadialGradientFYAttribute">fy</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#RadialGradientSpreadMethodAttribute">spreadMethod</a> (pad | reflect | repeat) #IMPLIED &gt;


&lt;!ENTITY % stopExt "" &gt;
&lt;!ELEMENT <a href="pservers.html#StopElement">stop</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateColorElement">animateColor</a>
                   %stopExt;)* &gt;
&lt;!ATTLIST <a href="pservers.html#StopElement">stop</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Gradients;</a>
  <a href="pservers.html#StopOffsetAttribute">offset</a> %NumberOrPercentage; #REQUIRED &gt;

&lt;!ENTITY % patternExt "" &gt;
&lt;!ELEMENT <a href="pservers.html#PatternElement">pattern</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %ceExt;%patternExt;)* &gt;
&lt;!ATTLIST <a href="pservers.html#PatternElement">pattern</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="pservers.html#PatternElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#ViewBoxAttribute">viewBox</a> %ViewBoxSpec; #IMPLIED
  <a href="coords.html#ViewBoxAttribute">preserveAspectRatio</a> %PreserveAspectRatioSpec; 'xMidYMid meet'
  <a href="pservers.html#PatternUnitsAttribute">patternUnits</a> (userSpaceOnUse | objectBoundingBox) #IMPLIED
  <a href="pservers.html#PatternContentUnitsAttribute">patternContentUnits</a> (userSpaceOnUse | objectBoundingBox) #IMPLIED
  <a href="pservers.html#PatternTransformAttribute">patternTransform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="pservers.html#PatternElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#PatternElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="pservers.html#PatternElementWidthAttribute">width</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="pservers.html#PatternElementHeightAttribute">height</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED &gt;

<a name="DefinitionsMasking" id="DefinitionsMasking"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="masking.html">Clipping, Masking and Compositing</a> 
     ============================================================== --&gt;

&lt;!ENTITY % clipPathExt "" &gt;
&lt;!ELEMENT <a href="masking.html#ClipPathElement">clipPath</a> (%descTitleMetadata;,
                    (<a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                     <a href="struct.html#UseElement">use</a>|<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>
                     %ceExt;%clipPathExt;)*) &gt;
&lt;!ATTLIST <a href="masking.html#ClipPathElement">clipPath</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FillStroke;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FontSpecification;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Graphics;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-TextContentElements;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-TextElements;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="masking.html#ClipPathUnitsAttribute">clipPathUnits</a> (userSpaceOnUse | objectBoundingBox) #IMPLIED &gt;

&lt;!ENTITY % maskExt "" &gt;
&lt;!ELEMENT <a href="masking.html#MaskElement">mask</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %ceExt;%maskExt;)*  &gt;
&lt;!ATTLIST <a href="masking.html#MaskElement">mask</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="masking.html#MaskUnitsAttribute">maskUnits</a> (userSpaceOnUse | objectBoundingBox) #IMPLIED
  <a href="masking.html#MaskContentUnitsAttribute">maskContentUnits</a> (userSpaceOnUse | objectBoundingBox) #IMPLIED
  <a href="masking.html#MaskElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="masking.html#MaskElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="masking.html#MaskElementWidthAttribute">width</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="masking.html#MaskElementHeightAttribute">height</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED &gt;

<a name="DefinitionsFilters" id="DefinitionsFilters"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="filters.html">Filter Effects</a>
     ============================================================== --&gt;

&lt;!ENTITY % filterExt "" &gt;
&lt;!ELEMENT <a href="filters.html#FilterElement">filter</a> (%descTitleMetadata;,(<a href="filters.html#feBlendElement">feBlend</a>|<a href="filters.html#feFloodElement">feFlood</a>|
  <a href="filters.html#feColorMatrixElement">feColorMatrix</a>|<a href="filters.html#feComponentTransferElement">feComponentTransfer</a>|
  <a href="filters.html#feCompositeElement">feComposite</a>|<a href="filters.html#feConvolveMatrixElement">feConvolveMatrix</a>|<a href="filters.html#feDiffuseLightingElement">feDiffuseLighting</a>|<a href="filters.html#feDisplacementMapElement">feDisplacementMap</a>|
  <a href="filters.html#feGaussianBlurElement">feGaussianBlur</a>|<a href="filters.html#feImageElement">feImage</a>|<a href="filters.html#feMergeElement">feMerge</a>|
  <a href="filters.html#feMorphologyElement">feMorphology</a>|<a href="filters.html#feOffsetElement">feOffset</a>|<a href="filters.html#feSpecularLightingElement">feSpecularLighting</a>|
  <a href="filters.html#feTileElement">feTile</a>|<a href="filters.html#feTurbulenceElement">feTurbulence</a>|
  <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>
  %filterExt;)*) &gt;
&lt;!ATTLIST <a href="filters.html#FilterElement">filter</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="filters.html#FilterElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="filters.html#FilterElementFilterUnitsAttribute">filterUnits</a> (userSpaceOnUse | objectBoundingBox) #IMPLIED
  <a href="filters.html#FilterElementPrimitiveUnitsAttribute">primitiveUnits</a> (userSpaceOnUse | objectBoundingBox) #IMPLIED
  <a href="filters.html#FilterElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="filters.html#FilterElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="filters.html#FilterElementWidthAttribute">width</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="filters.html#FilterElementHeightAttribute">height</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
  <a href="filters.html#FilterElementFilterResAttribute">filterRes</a> %NumberOptionalNumber; #IMPLIED &gt;

&lt;!ENTITY % filter_primitive_attributes
  "<a href="filters.html#FilterPrimitiveXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
   <a href="filters.html#FilterPrimitiveYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
   <a href="filters.html#FilterPrimitiveWidthAttribute">width</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
   <a href="filters.html#FilterPrimitiveHeightAttribute">height</a> <a href="types.html#DataTypeLength">%Length;</a> #IMPLIED
   <a href="filters.html#FilterPrimitiveResultAttribute">result</a> CDATA #IMPLIED" &gt;

&lt;!ENTITY % filter_primitive_attributes_with_in
  "%filter_primitive_attributes;
   <a href="filters.html#FilterPrimitiveInAttribute">in</a> CDATA #IMPLIED"&gt;

&lt;!ELEMENT <a href="filters.html#feDistantLightElement">feDistantLight</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feDistantLightElement">feDistantLight</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="filters.html#feDistantLightAzimuthAttribute">azimuth</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feDistantLightElevationAttribute">elevation</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#fePointLightElement">fePointLight</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#fePointLightElement">fePointLight</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="filters.html#fePointLightXAttribute">x</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#fePointLightYAttribute">y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#fePointLightZAttribute">z</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feSpotLightElement">feSpotLight</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feSpotLightElement">feSpotLight</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="filters.html#feSpotLightXAttribute">x</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feSpotLightYAttribute">y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feSpotLightZAttribute">z</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feSpotLightPointsAtXAttribute">pointsAtX</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feSpotLightPointsAtYAttribute">pointsAtY</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feSpotLightPointsAtZAttribute">pointsAtZ</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feSpotLightSpecularExponentAttribute">specularExponent</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feSpotLightLimitingConeAngleAttribute">limitingConeAngle</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feBlendElement">feBlend</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feBlendElement">feBlend</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feBlendIn2Attribute">in2</a> CDATA #REQUIRED
  <a href="filters.html#feBlendModeAttribute">mode</a> (normal | multiply | screen | darken | lighten) "normal" &gt;

&lt;!ELEMENT <a href="filters.html#feColorMatrixElement">feColorMatrix</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feColorMatrixElement">feColorMatrix</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feColorMatrixTypeAttribute">type</a> (matrix | saturate | hueRotate | luminanceToAlpha) "matrix"
  <a href="filters.html#feColorMatrixValuesAttribute">values</a> CDATA #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feComponentTransferElement">feComponentTransfer</a> (<a href="filters.html#feFuncRElement">feFuncR</a>?,<a href="filters.html#feFuncGElement">feFuncG</a>?,<a href="filters.html#feFuncBElement">feFuncB</a>?,<a href="filters.html#feFuncAElement">feFuncA</a>?) &gt;
&lt;!ATTLIST <a href="filters.html#feComponentTransferElement">feComponentTransfer</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a> &gt;

&lt;!ENTITY % <a href="filters.html#feComponentTransferAttributes">component_transfer_function_attributes</a>
  "<a href="filters.html#feComponentTransferTypeAttribute">type</a> (identity | table | discrete | linear | gamma) #REQUIRED
   <a href="filters.html#feComponentTransferTableValuesAttribute">tableValues</a> CDATA #IMPLIED
   <a href="filters.html#feComponentTransferSlopeAttribute">slope</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
   <a href="filters.html#feComponentTransferInterceptAttribute">intercept</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
   <a href="filters.html#feComponentTransferAmplitudeAttribute">amplitude</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
   <a href="filters.html#feComponentTransferExponentAttribute">exponent</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
   <a href="filters.html#feComponentTransferOffsetAttribute">offset</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED" &gt;

&lt;!ELEMENT <a href="filters.html#feFuncRElement">feFuncR</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feFuncRElement">feFuncR</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="filters.html#feComponentTransferAttributes">%component_transfer_function_attributes;</a> &gt;

&lt;!ELEMENT <a href="filters.html#feFuncGElement">feFuncG</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feFuncGElement">feFuncG</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="filters.html#feComponentTransferAttributes">%component_transfer_function_attributes;</a> &gt;

&lt;!ELEMENT <a href="filters.html#feFuncBElement">feFuncB</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feFuncBElement">feFuncB</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="filters.html#feComponentTransferAttributes">%component_transfer_function_attributes;</a> &gt;

&lt;!ELEMENT <a href="filters.html#feFuncAElement">feFuncA</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feFuncAElement">feFuncA</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="filters.html#feComponentTransferAttributes">%component_transfer_function_attributes;</a> &gt;

&lt;!ELEMENT <a href="filters.html#feCompositeElement">feComposite</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feCompositeElement">feComposite</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feCompositeIn2Attribute">in2</a> CDATA #REQUIRED
  <a href="filters.html#feCompositeOperatorAttribute">operator</a> (over | in | out | atop | xor | arithmetic) "over"
  <a href="filters.html#feCompositeK1Attribute">k1</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feCompositeK2Attribute">k2</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feCompositeK3Attribute">k3</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feCompositeK4Attribute">k4</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feConvolveMatrixElement">feConvolveMatrix</a> (animate|set)* &gt;
&lt;!ATTLIST <a href="filters.html#feConvolveMatrixElement">feConvolveMatrix</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feConvolveMatrixElementOrderAttribute">order</a> %NumberOptionalNumber; #REQUIRED
  <a href="filters.html#feConvolveMatrixElementKernelMatrixAttribute">kernelMatrix</a> CDATA #REQUIRED
  <a href="filters.html#feConvolveMatrixElementDivisorAttribute">divisor</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feConvolveMatrixElementBiasAttribute">bias</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feConvolveMatrixElementTargetXAttribute">targetX</a> <a href="types.html#DataTypeInteger">%Integer;</a> #IMPLIED
  <a href="filters.html#feConvolveMatrixElementTargetYAttribute">targetY</a> <a href="types.html#DataTypeInteger">%Integer;</a> #IMPLIED
  <a href="filters.html#feConvolveMatrixElementEdgeModeAttribute">edgeMode</a> (duplicate|wrap|none) "duplicate" 
  <a href="filters.html#feConvolveMatrixElementKernelUnitLengthAttribute">kernelUnitLength</a> %NumberOptionalNumber; #IMPLIED 
  <a href="filters.html#feConvolveMatrixElementPreserveAlphaAttribute">preserveAlpha</a> %Boolean; #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feDiffuseLightingElement">feDiffuseLighting</a> ((<a href="filters.html#feDistantLightElement">feDistantLight</a>|<a href="filters.html#fePointLightElement">fePointLight</a>|<a href="filters.html#feSpotLightElement">feSpotLight</a>),(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateColorElement">animateColor</a>)*) &gt;
&lt;!ATTLIST <a href="filters.html#feDiffuseLightingElement">feDiffuseLighting</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute"><span class="attr-name">style</span></a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-LightingEffects;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feDiffuseLightingSurfaceScaleAttribute">surfaceScale</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feDiffuseLightingDiffuseConstantAttribute">diffuseConstant</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED 
  <a href="filters.html#feDiffuseLightingKernelUnitLengthAttribute">kernelUnitLength</a> %NumberOptionalNumber; #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feDisplacementMapElement">feDisplacementMap</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feDisplacementMapElement">feDisplacementMap</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feDisplacementMapIn2Attribute">in2</a> CDATA #REQUIRED
  <a href="filters.html#feDisplacementMapScaleAttribute">scale</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feDisplacementMapXChannelSelectorAttribute">xChannelSelector</a> (R | G | B | A) "A"
  <a href="filters.html#feDisplacementMapYChannelSelectorAttribute">yChannelSelector</a> (R | G | B | A) "A" &gt;

&lt;!ELEMENT <a href="filters.html#feFloodElement">feFlood</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateColorElement">animateColor</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feFloodElement">feFlood</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute"><span class="attr-name">style</span></a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-feFlood;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a> &gt;

&lt;!ELEMENT <a href="filters.html#feGaussianBlurElement">feGaussianBlur</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feGaussianBlurElement">feGaussianBlur</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feGaussianBlurStdDeviationAttribute">stdDeviation</a> %NumberOptionalNumber; #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feImageElement">feImage</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feImageElement">feImage</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrsEmbed">%xlinkRefAttrsEmbed;</a>
  <a href="struct.html#xlinkRefAttrsEmbed">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a> &gt;

&lt;!ELEMENT <a href="filters.html#feMergeElement">feMerge</a> (<a href="filters.html#feMergeNodeElement">feMergeNode</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feMergeElement">feMerge</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes;</a> &gt;

&lt;!ELEMENT <a href="filters.html#feMergeNodeElement">feMergeNode</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feMergeNodeElement">feMergeNode</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="filters.html#CommonAttributes">in</a> CDATA #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feMorphologyElement">feMorphology</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feMorphologyElement">feMorphology</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feMorphologyOperatorAttribute">operator</a> (erode | dilate) "erode"
  <a href="filters.html#feMorphologyRadiusAttribute">radius</a> %NumberOptionalNumber; #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feOffsetElement">feOffset</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feOffsetElement">feOffset</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feOffsetDxAttribute">dx</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feOffsetDyAttribute">dy</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feSpecularLightingElement">feSpecularLighting</a> ((<a href="filters.html#feDistantLightElement">feDistantLight</a>|<a href="filters.html#fePointLightElement">fePointLight</a>|<a href="filters.html#feSpotLightElement">feSpotLight</a>),(<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateColorElement">animateColor</a>)*) &gt;
&lt;!ATTLIST <a href="filters.html#feSpecularLightingElement">feSpecularLighting</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute"><span class="attr-name">style</span></a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-Color;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-LightingEffects;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a>
  <a href="filters.html#feSpecularLightingSurfaceScaleAttribute">surfaceScale</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feSpecularLightingSpecularConstantAttribute">specularConstant</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feSpecularLightingSpecularExponentAttribute">specularExponent</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED 
  <a href="filters.html#feDiffuseLightingKernelUnitLengthAttribute">kernelUnitLength</a> %NumberOptionalNumber; #IMPLIED &gt;

&lt;!ELEMENT <a href="filters.html#feTileElement">feTile</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feTileElement">feTile</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes_with_in;</a> &gt;

&lt;!ELEMENT <a href="filters.html#feTurbulenceElement">feTurbulence</a> (<a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>)* &gt;
&lt;!ATTLIST <a href="filters.html#feTurbulenceElement">feTurbulence</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-FilterPrimitives;</a>
  <a href="filters.html#CommonAttributes">%filter_primitive_attributes;</a>
  <a href="filters.html#feTurbulenceBaseFrequencyAttribute">baseFrequency</a> %NumberOptionalNumber; #IMPLIED
  <a href="filters.html#feTurbulenceNumOctavesAttribute">numOctaves</a> <a href="types.html#DataTypeInteger">%Integer;</a> #IMPLIED
  <a href="filters.html#feTurbulenceSeedAttribute">seed</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="filters.html#feTurbulenceStitchTilesAttribute">stitchTiles</a> (stitch | noStitch) "noStitch"
  <a href="filters.html#feTurbulenceTypeAttribute">type</a> (fractalNoise | turbulence) "turbulence" &gt;

<a name="DefinitionsInteract" id="DefinitionsInteract"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="interact.html">Interactivity</a> 
     ============================================================== --&gt;

&lt;!ELEMENT <a href="interact.html#CursorElement">cursor</a> (%descTitleMetadata;) &gt;
&lt;!ATTLIST <a href="interact.html#CursorElement">cursor</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="interact.html#CursorElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="interact.html#CursorElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="interact.html#CursorElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED &gt;

<a name="DefinitionsLinking" id="DefinitionsLinking"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="linking.html">Linking</a>
     ============================================================== --&gt;

&lt;!ENTITY % aExt "" &gt;
&lt;!ELEMENT <a href="linking.html#AElement">a</a>       (#PCDATA|<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %ceExt;%aExt;)* &gt;
&lt;!ATTLIST <a href="linking.html#AElement">a</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="linking.html#AElementXMLNSXLinkAttribute">xmlns:xlink</a> CDATA #FIXED "http://www.w3.org/1999/xlink"
  <a href="linking.html#AElementXLinkTypeAttribute">xlink:type</a> (simple) #FIXED "simple" 
  <a href="linking.html#AElementXLinkRoleAttribute">xlink:role</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="linking.html#AElementXLinkArcRoleAttribute">xlink:arcrole</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="linking.html#AElementXLinkTitleAttribute">xlink:title</a> CDATA #IMPLIED
  <a href="linking.html#AElementXLinkShowAttribute">xlink:show</a> (new|replace) 'replace'
  <a href="linking.html#AElementXLinkActuateAttribute">xlink:actuate</a> (onRequest) #FIXED 'onRequest'
  <a href="linking.html#AElementXLinkHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="linking.html#AElementTargetAttribute">target</a> %LinkTarget; #IMPLIED &gt;

&lt;!ENTITY % viewExt "" &gt;
&lt;!ELEMENT <a href="linking.html#ViewElement">view</a> (%descTitleMetadata;%viewExt;) &gt;
&lt;!ATTLIST <a href="linking.html#ViewElement">view</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="coords.html#ViewBoxAttribute">viewBox</a> %ViewBoxSpec; #IMPLIED
  <a href="coords.html#ViewBoxAttribute">preserveAspectRatio</a> %PreserveAspectRatioSpec; 'xMidYMid meet'
  <a href="interact.html#ZoomAndPanAttribute">zoomAndPan</a> (disable | magnify) 'magnify' 
  <a href="linking.html#ViewTargetAttribute">viewTarget</a> CDATA #IMPLIED &gt;

<a name="DefinitionsScripting" id="DefinitionsScripting"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="script.html">Scripting</a> 
     ============================================================== --&gt;

&lt;!ELEMENT <a href="script.html#ScriptElement">script</a> (#PCDATA) &gt;
&lt;!ATTLIST <a href="script.html#ScriptElement">script</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="script.html#TypeAttribute">type</a> %ContentType; #REQUIRED &gt;

<a name="DefinitionsAnimate" id="DefinitionsAnimate"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="animate.html">Animation</a> 
     ============================================================== --&gt;

&lt;!ENTITY % <a href="animate.html#TargetElement">animElementAttrs</a>
 "<a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="animate.html#HrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #IMPLIED" &gt;

&lt;!ENTITY % <a href="animate.html#TargetAttributes">animAttributeAttrs</a>
 "<a href="animate.html#AttributeNameAttribute">attributeName</a>  CDATA  #REQUIRED
  <a href="animate.html#AttributeTypeAttribute">attributeType</a>  CDATA  #IMPLIED" &gt;

&lt;!ENTITY % <a href="animate.html#TimingAttributes">animTimingAttrs</a>
 "<a href="animate.html#BeginAttribute">begin</a> CDATA #IMPLIED 
  <a href="animate.html#DurAttribute">dur</a> CDATA #IMPLIED
  <a href="animate.html#EndAttribute">end</a> CDATA #IMPLIED
  <a href="animate.html#MinAttribute">min</a> CDATA #IMPLIED
  <a href="animate.html#MaxAttribute">max</a> CDATA #IMPLIED
  <a href="animate.html#RestartAttribute">restart</a> (always | never | whenNotActive) 'always'
  <a href="animate.html#RepeatCountAttribute">repeatCount</a> CDATA #IMPLIED 
  <a href="animate.html#RepeatDurAttribute">repeatDur</a> CDATA #IMPLIED
  <a href="animate.html#FillAttribute">fill</a> (remove | freeze) 'remove'" &gt;

&lt;!ENTITY % <a href="animate.html#ValueAttributes">animValueAttrs</a>
 "<a href="animate.html#CalcModeAttribute">calcMode</a> (discrete | linear | paced | spline) 'linear'
  <a href="animate.html#ValuesAttribute">values</a> CDATA #IMPLIED
  <a href="animate.html#KeyTimesAttribute">keyTimes</a> CDATA #IMPLIED
  <a href="animate.html#KeySplinesAttribute">keySplines</a> CDATA #IMPLIED
  <a href="animate.html#FromAttribute">from</a> CDATA #IMPLIED
  <a href="animate.html#ToAttribute">to</a> CDATA #IMPLIED
  <a href="animate.html#ByAttribute">by</a> CDATA #IMPLIED" &gt;

&lt;!ENTITY % <a href="animate.html#AdditionAttributes">animAdditionAttrs</a>
 "<a href="animate.html#AdditiveAttribute">additive</a>       (replace | sum) 'replace'
  <a href="animate.html#AccumulateAttribute">accumulate</a>     (none | sum) 'none'" &gt;

&lt;!ENTITY % animateExt "" &gt;
&lt;!ELEMENT <a href="animate.html#AnimateElement">animate</a> (%descTitleMetadata;%animateExt;) &gt;
&lt;!ATTLIST <a href="animate.html#AnimateElement">animate</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="script.html#AnimationEvents">%animationEvents;</a>
  <a href="animate.html#TargetElement">%animElementAttrs;</a>
  <a href="animate.html#TargetAttributes">%animAttributeAttrs;</a>
  <a href="animate.html#TimingAttributes">%animTimingAttrs;</a>
  <a href="animate.html#ValueAttributes">%animValueAttrs;</a>
  <a href="animate.html#AdditionAttributes">%animAdditionAttrs;</a> &gt;

&lt;!ENTITY % setExt "" &gt;
&lt;!ELEMENT <a href="animate.html#SetElement">set</a> (%descTitleMetadata;%setExt;) &gt;
&lt;!ATTLIST <a href="animate.html#SetElement">set</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="script.html#AnimationEvents">%animationEvents;</a>
  <a href="animate.html#TargetElement">%animElementAttrs;</a>
  <a href="animate.html#TargetAttributes">%animAttributeAttrs;</a>
  <a href="animate.html#TimingAttributes">%animTimingAttrs;</a>
  <a href="animate.html#SetElementToAttribute">to</a> CDATA #IMPLIED &gt;

&lt;!ENTITY % animateMotionExt "" &gt;
&lt;!ELEMENT <a href="animate.html#AnimateMotionElement">animateMotion</a> (%descTitleMetadata;,<a href="animate.html#mpathElement">mpath</a>? %animateMotionExt;) &gt;
&lt;!ATTLIST <a href="animate.html#AnimateMotionElement">animateMotion</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="script.html#AnimationEvents">%animationEvents;</a>
  <a href="animate.html#TargetElement">%animElementAttrs;</a>
  <a href="animate.html#TimingAttributes">%animTimingAttrs;</a>
  <a href="animate.html#AnimateMotionElementCalcModeAttribute">calcMode</a> (discrete | linear | paced | spline) 'paced'
  <a href="animate.html#ValuesAttribute">values</a> CDATA #IMPLIED
  <a href="animate.html#KeyTimesAttribute">keyTimes</a> CDATA #IMPLIED
  <a href="animate.html#KeySplinesAttribute">keySplines</a> CDATA #IMPLIED
  <a href="animate.html#FromAttribute">from</a> CDATA #IMPLIED
  <a href="animate.html#ToAttribute">to</a> CDATA #IMPLIED
  <a href="animate.html#ByAttribute">by</a> CDATA #IMPLIED
  <a href="animate.html#AdditionAttributes">%animAdditionAttrs;</a>
  <a href="animate.html#PathAttribute">path</a> CDATA #IMPLIED
  <a href="animate.html#KeyPointsAttribute">keyPoints</a> CDATA #IMPLIED
  <a href="animate.html#RotateAttribute">rotate</a> CDATA #IMPLIED
  <a href="animate.html#OriginAttribute">origin</a> CDATA #IMPLIED &gt;

&lt;!ENTITY % mpathExt "" &gt;
&lt;!ELEMENT <a href="animate.html#mpathElement">mpath</a> (%descTitleMetadata;%mpathExt;) &gt;
&lt;!ATTLIST <a href="animate.html#mpathElement">mpath</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="animate.html#MPathElementHrefAttribute">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED &gt;

&lt;!ENTITY % animateColorExt "" &gt;
&lt;!ELEMENT <a href="animate.html#AnimateColorElement">animateColor</a> (%descTitleMetadata;%animateColorExt;) &gt;
&lt;!ATTLIST <a href="animate.html#AnimateColorElement">animateColor</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="script.html#AnimationEvents">%animationEvents;</a>
  <a href="animate.html#TargetElement">%animElementAttrs;</a>
  <a href="animate.html#TargetAttributes">%animAttributeAttrs;</a>
  <a href="animate.html#TimingAttributes">%animTimingAttrs;</a>
  <a href="animate.html#ValueAttributes">%animValueAttrs;</a>
  <a href="animate.html#AdditionAttributes">%animAdditionAttrs;</a> &gt;

&lt;!ENTITY % animateTransformExt "" &gt;
&lt;!ELEMENT <a href="animate.html#AnimateTransformElement">animateTransform</a> (%descTitleMetadata;%animateTransformExt;) &gt;
&lt;!ATTLIST <a href="animate.html#AnimateTransformElement">animateTransform</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="script.html#AnimationEvents">%animationEvents;</a>
  <a href="animate.html#TargetElement">%animElementAttrs;</a>
  <a href="animate.html#TargetAttributes">%animAttributeAttrs;</a>
  <a href="animate.html#TimingAttributes">%animTimingAttrs;</a>
  <a href="animate.html#ValueAttributes">%animValueAttrs;</a>
  <a href="animate.html#AdditionAttributes">%animAdditionAttrs;</a>
  <a href="animate.html#AnimateTransformElementTypeAttribute">type</a> (translate | scale | rotate | skewX | skewY) "translate" &gt;

<a name="DefinitionsFonts" id="DefinitionsFonts"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="fonts.html">Fonts</a> 
     ============================================================== --&gt;

&lt;!ENTITY % fontExt "" &gt;
&lt;!ELEMENT <a href="fonts.html#FontElement">font</a> (%descTitleMetadata;,<a href="fonts.html#FontFaceElement">font-face</a>,
                   <a href="fonts.html#MissingGlyphElement">missing-glyph</a>,(<a href="fonts.html#GlyphElement">glyph</a>|<a href="fonts.html#HKernElement">hkern</a>|<a href="fonts.html#VKernElement">vkern</a> %fontExt;)*) &gt;
&lt;!ATTLIST <a href="fonts.html#FontElement">font</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="fonts.html#FontElementHorizOriginXAttribute">horiz-origin-x</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontElementHorizOriginYAttribute">horiz-origin-y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontElementHorizAdvXAttribute">horiz-adv-x</a> <a href="types.html#DataTypeNumber">%Number;</a> #REQUIRED
  <a href="fonts.html#FontElementVertOriginXAttribute">vert-origin-x</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontElementVertOriginYAttribute">vert-origin-y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontElementVertAdvYAttribute">vert-adv-y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

&lt;!ENTITY % glyphExt "" &gt;
&lt;!ELEMENT <a href="fonts.html#GlyphElement">glyph</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %glyphExt;)* &gt;
&lt;!ATTLIST <a href="fonts.html#GlyphElement">glyph</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="fonts.html#GlyphElementUnicodeAttribute">unicode</a> CDATA #IMPLIED
  <a href="fonts.html#GlyphElementGlyphNameAttribute">glyph-name</a> CDATA #IMPLIED
  <a href="fonts.html#GlyphElementDAttribute">d</a> %PathData; #IMPLIED
  <a href="fonts.html#GlyphElementOrientationAttribute">orientation</a> CDATA #IMPLIED
  <a href="fonts.html#GlyphElementArabicFormAttribute">arabic-form</a> CDATA #IMPLIED
  <a href="fonts.html#GlyphElementLangAttribute">lang</a> %LanguageCodes; #IMPLIED
  <a href="fonts.html#GlyphElementHorizAdvXAttribute">horiz-adv-x</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#GlyphElementVertOriginXAttribute">vert-origin-x</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#GlyphElementVertOriginYAttribute">vert-origin-y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#GlyphElementVertAdvYAttribute">vert-adv-y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

&lt;!ENTITY % missing-glyphExt "" &gt;
&lt;!ELEMENT <a href="fonts.html#MissingGlyphElement">missing-glyph</a> (<a href="struct.html#DescElement">desc</a>|<a href="struct.html#TitleElement">title</a>|<a href="metadata.html#MetadataElement">metadata</a>|<a href="struct.html#DefsElement">defs</a>|
                   <a href="paths.html#PathElement">path</a>|<a href="text.html#TextElement">text</a>|<a href="shapes.html#RectElement">rect</a>|<a href="shapes.html#CircleElement">circle</a>|<a href="shapes.html#EllipseElement">ellipse</a>|<a href="shapes.html#LineElement">line</a>|<a href="shapes.html#PolylineElement">polyline</a>|<a href="shapes.html#PolygonElement">polygon</a>|
                   <a href="struct.html#UseElement">use</a>|<a href="struct.html#ImageElement">image</a>|<a href="struct.html#SVGElement">svg</a>|<a href="struct.html#GElement">g</a>|<a href="linking.html#ViewElement">view</a>|<a href="struct.html#SwitchElement">switch</a>|<a href="linking.html#AElement">a</a>|<a href="text.html#AltGlyphDefElement">altGlyphDef</a>|
                   <a href="script.html#ScriptElement">script</a>|<a href="styling.html#StyleElement">style</a>|<a href="struct.html#SymbolElement">symbol</a>|<a href="painting.html#MarkerElement">marker</a>|<a href="masking.html#ClipPathElement">clipPath</a>|<a href="masking.html#MaskElement">mask</a>|
                   <a href="pservers.html#LinearGradientElement">linearGradient</a>|<a href="pservers.html#RadialGradientElement">radialGradient</a>|<a href="pservers.html#PatternElement">pattern</a>|<a href="filters.html#FilterElement">filter</a>|<a href="interact.html#CursorElement">cursor</a>|<a href="fonts.html#FontElement">font</a>|
                   <a href="animate.html#AnimateElement">animate</a>|<a href="animate.html#SetElement">set</a>|<a href="animate.html#AnimateMotionElement">animateMotion</a>|<a href="animate.html#AnimateColorElement">animateColor</a>|<a href="animate.html#AnimateTransformElement">animateTransform</a>|
                   <a href="color.html#ColorProfileElement">color-profile</a>|<a href="fonts.html#FontFaceElement">font-face</a>
                   %missing-glyphExt;)* &gt;
&lt;!ATTLIST <a href="fonts.html#MissingGlyphElement">missing-glyph</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="fonts.html#GlyphElementDAttribute">d</a> %PathData; #IMPLIED
  <a href="fonts.html#GlyphElementHorizAdvXAttribute">horiz-adv-x</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#GlyphElementVertOriginXAttribute">vert-origin-x</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#GlyphElementVertOriginYAttribute">vert-origin-y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#GlyphElementVertAdvYAttribute">vert-adv-y</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

&lt;!ELEMENT <a href="fonts.html#HKernElement">hkern</a> EMPTY &gt;
&lt;!ATTLIST <a href="fonts.html#HKernElement">hkern</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="fonts.html#HKernElementU1Attribute">u1</a> CDATA #IMPLIED
  <a href="fonts.html#HKernElementG1Attribute">g1</a> CDATA #IMPLIED
  <a href="fonts.html#HKernElementU2Attribute">u2</a> CDATA #IMPLIED
  <a href="fonts.html#HKernElementG2Attribute">g2</a> CDATA #IMPLIED
  <a href="fonts.html#HKernElementKAttribute">k</a> <a href="types.html#DataTypeNumber">%Number;</a> #REQUIRED &gt;

&lt;!ELEMENT <a href="fonts.html#VKernElement">vkern</a> EMPTY &gt;
&lt;!ATTLIST <a href="fonts.html#VKernElement">vkern</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="fonts.html#HKernElementU1Attribute">u1</a> CDATA #IMPLIED
  <a href="fonts.html#HKernElementG1Attribute">g1</a> CDATA #IMPLIED
  <a href="fonts.html#HKernElementU2Attribute">u2</a> CDATA #IMPLIED
  <a href="fonts.html#HKernElementG2Attribute">g2</a> CDATA #IMPLIED
  <a href="fonts.html#HKernElementKAttribute">k</a> <a href="types.html#DataTypeNumber">%Number;</a> #REQUIRED &gt;

&lt;!ELEMENT <a href="fonts.html#FontFaceElement">font-face</a> (%descTitleMetadata;,<a href="fonts.html#FontFaceSrcElement">font-face-src</a>?,<a href="fonts.html#DefinitionSrcElement">definition-src</a>?) &gt;
&lt;!ATTLIST <a href="fonts.html#FontFaceElement">font-face</a> 
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="fonts.html#FontFaceElementFontFamilyAttribute">font-family</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementFontStyleAttribute">font-style</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementFontVariantAttribute">font-variant</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementFontWeightAttribute">font-weight</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementFontStretchAttribute">font-stretch</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementFontSizeAttribute">font-size</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementUnicodeRangeAttribute">unicode-range</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementUnitsPerEmAttribute">units-per-em</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementPanose1Attribute">panose-1</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementStemvAttribute">stemv</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementStemhAttribute">stemh</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementSlopeAttribute">slope</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementCapHeightAttribute">cap-height</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementXHeightAttribute">x-height</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementAccentHeightAttribute">accent-height</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementAscentAttribute">ascent</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementDescentAttribute">descent</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementWidthsAttribute">widths</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementBboxAttribute">bbox</a> CDATA #IMPLIED
  <a href="fonts.html#FontFaceElementIdeographicAttribute">ideographic</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementAlphabeticAttribute">alphabetic</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementMathematicalAttribute">mathematical</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementHangingAttribute">hanging</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementVertIdeographicAttribute">v-ideographic</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementVertAlphabeticAttribute">v-alphabetic</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementVertMathematicalAttribute">v-mathematical</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementVertHangingAttribute">v-hanging</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementUnderlinePositionAttribute">underline-position</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementUnderlineThicknessAttribute">underline-thickness</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementStrikeThroughPositionAttribute">strikethrough-position</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementStrikeThroughThicknessAttribute">strikethrough-thickness</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementOverlinePositionAttribute">overline-position</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED
  <a href="fonts.html#FontFaceElementOverlineThicknessAttribute">overline-thickness</a> <a href="types.html#DataTypeNumber">%Number;</a> #IMPLIED &gt;

&lt;!ELEMENT <a href="fonts.html#FontFaceSrcElement">font-face-src</a> (font-face-uri|font-face-name)+ &gt;
&lt;!ATTLIST <a href="fonts.html#FontFaceSrcElement">font-face-src</a> 
  <a href="struct.html#StdAttrs">%stdAttrs;</a> &gt;

&lt;!ELEMENT <a href="fonts.html#FontFaceNameElement">font-face-uri</a> (font-face-format*) &gt;
&lt;!ATTLIST <a href="fonts.html#FontFaceNameElement">font-face-uri</a> 
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED &gt;

&lt;!ELEMENT <a href="fonts.html#FontFaceNameElement">font-face-format</a> EMPTY &gt;
&lt;!ATTLIST <a href="fonts.html#FontFaceNameElement">font-face-format</a> 
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  string CDATA #IMPLIED &gt;

&lt;!ELEMENT <a href="fonts.html#FontFaceNameElement">font-face-name</a> EMPTY &gt;
&lt;!ATTLIST <a href="fonts.html#FontFaceNameElement">font-face-name</a> 
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  name CDATA #IMPLIED &gt;

&lt;!ELEMENT <a href="fonts.html#DefinitionSrcElement">definition-src</a> EMPTY &gt;
&lt;!ATTLIST <a href="fonts.html#DefinitionSrcElement">definition-src</a> 
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">%xlinkRefAttrs;</a>
  <a href="struct.html#xlinkRefAttrs">xlink:href</a> <a href="struct.html#uriReferenceDefinition">%URI;</a> #REQUIRED &gt;

<a name="DefinitionsMetadata" id="DefinitionsMetadata"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="metadata.html">Metadata</a> 
     ============================================================== --&gt;

&lt;!ENTITY % metadataExt "" &gt;
&lt;!ELEMENT <a href="metadata.html#MetadataElement">metadata</a> (#PCDATA %metadataExt;)* &gt;
&lt;!ATTLIST <a href="metadata.html#MetadataElement">metadata</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a> &gt;

<a name="DefinitionsExtend" id="DefinitionsExtend"></a>
&lt;!-- ==============================================================
     DECLARATIONS CORRESPONDING TO: <a href="extend.html">Extensibility</a> 
     ============================================================== --&gt;

&lt;!ENTITY % foreignObjectExt "" &gt;
&lt;!ELEMENT <a href="extend.html#ForeignObjectElement">foreignObject</a> (#PCDATA %ceExt;%foreignObjectExt;)* &gt;
&lt;!ATTLIST <a href="extend.html#ForeignObjectElement">foreignObject</a>
  <a href="struct.html#StdAttrs">%stdAttrs;</a>
  <a href="struct.html#TestAttrs">%testAttrs;</a>
  <a href="struct.html#LangSpaceAttrs">%langSpaceAttrs;</a>
  <a href="struct.html#ExternalResourcesRequiredAttribute">externalResourcesRequired</a> %Boolean; #IMPLIED
  <a href="styling.html#ClassAttribute">class</a> %ClassList; #IMPLIED
  <a href="styling.html#StyleAttribute">style</a> %StyleSheet; #IMPLIED
  <a href="styling.html#UsingPresentationAttributes">%PresentationAttributes-All;</a>
  <a href="coords.html#TransformAttribute">transform</a> <a href="coords.html#TransformList">%TransformList;</a> #IMPLIED
  <a href="script.html#EventHandling">%graphicsElementEvents;</a>
  <a href="extend.html#ForeignObjectElementXAttribute">x</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="extend.html#ForeignObjectElementYAttribute">y</a> <a href="types.html#DataTypeCoordinate">%Coordinate;</a> #IMPLIED
  <a href="extend.html#ForeignObjectElementWidthAttribute">width</a> <a href="types.html#DataTypeLength">%Length;</a> #REQUIRED
  <a href="extend.html#ForeignObjectElementHeightAttribute">height</a> <a href="types.html#DataTypeLength">%Length;</a> #REQUIRED
  %StructuredText; &gt;
</pre>


    <hr class="navbar" />
    <div class="navlinks">
      <p><a href="extend.html">previous</a> &nbsp; <a href="svgdom.html">next</a>
      &nbsp; <a href="index.html#minitoc">contents</a>
      &nbsp; <a href="eltindex.html">elements</a>
      &nbsp; <a href="attindex.html">attributes</a>
      &nbsp; <a href="propidx.html">properties</a>
      &nbsp; <a href="indexlist.html">index</a> &nbsp;</p>
    </div>
  </body>
</html>