-
Notifications
You must be signed in to change notification settings - Fork 2
/
pagecontent_extension.xsd
1727 lines (1655 loc) · 59.9 KB
/
pagecontent_extension.xsd
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
<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="http://schema.primaresearch.org/PAGE/gts/pagecontent/2013-07-15" elementFormDefault="qualified" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:pc="http://schema.primaresearch.org/PAGE/gts/pagecontent/2013-07-15">
<element name="PcGts" type="pc:PcGtsType">
<annotation>
<documentation>Page Content - Ground Truth and Storage</documentation>
</annotation></element>
<complexType name="PcGtsType">
<sequence>
<element name="Metadata" type="pc:MetadataType"/>
<element name="Page" type="pc:PageType"/>
</sequence>
<attribute name="pcGtsId" type="ID" use="optional"/>
</complexType>
<complexType name="MetadataType">
<sequence>
<element name="Creator" type="string"/>
<element name="Created" type="dateTime">
<annotation>
<documentation>The timestamp has to be in UTC (Coordinated Universal Time) and not local time.</documentation></annotation></element>
<element name="LastChange" type="dateTime">
<annotation>
<documentation>The timestamp has to be in UTC (Coordinated Universal Time) and not local time.</documentation></annotation></element>
<element name="Comments" type="string" minOccurs="0" maxOccurs="1"/>
</sequence>
</complexType>
<complexType name="PageType">
<sequence>
<element name="Tag" type="pc:TagType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Property" type="pc:PropertyType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Link" type="pc:LinkType" minOccurs="0" maxOccurs="unbounded"/>
<element name="AlternativeImage" type="pc:AlternativeImageType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>
Alternative document page images (e.g.
black-and-white)
</documentation>
</annotation>
</element>
<element name="Border" type="pc:BorderType" minOccurs="0" maxOccurs="1">
</element>
<element name="PrintSpace" type="pc:PrintSpaceType" minOccurs="0" maxOccurs="1">
</element>
<element name="ReadingOrder" type="pc:ReadingOrderType" minOccurs="0" maxOccurs="1">
<annotation>
<documentation/>
</annotation>
</element>
<element name="Layers" type="pc:LayersType" minOccurs="0" maxOccurs="1">
<annotation>
<documentation>Unassigned regions are considered to be in the (virtual) default layer which is to be treated as below any other layers.</documentation>
</annotation>
</element>
<element name="Relations" type="pc:RelationsType" minOccurs="0">
</element>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="TextRegion" type="pc:TextRegionType"/>
<element name="ImageRegion" type="pc:ImageRegionType">
</element>
<element name="LineDrawingRegion" type="pc:LineDrawingRegionType">
</element>
<element name="GraphicRegion" type="pc:GraphicRegionType">
</element>
<element name="TableRegion" type="pc:TableRegionType">
</element>
<element name="ChartRegion" type="pc:ChartRegionType">
</element>
<element name="SeparatorRegion" type="pc:SeparatorRegionType">
</element>
<element name="MathsRegion" type="pc:MathsRegionType">
</element>
<element name="ChemRegion" type="pc:ChemRegionType"/>
<element name="MusicRegion" type="pc:MusicRegionType"/>
<element name="AdvertRegion" type="pc:AdvertRegionType">
</element>
<element name="NoiseRegion" type="pc:NoiseRegionType">
</element>
<element name="UnknownRegion" type="pc:UnknownRegionType">
</element>
</choice>
</sequence>
<attribute name="imageFilename" type="string" use="required"/>
<attribute name="imageWidth" type="int" use="required"/>
<attribute name="imageHeight" type="int" use="required"/>
<!-- New image operation attribues -
specifies the affine transformation that was performed on the *original* to yield the image specified in the imageFilename attribue -->
<attribute name="imageRotation" type="int" use="optional" default="0"/>
<attribute name="imageTranslationX" type="float" use="optional" default="0"/>
<attribute name="imageTranslationY" type="float" use="optional" default="0"/>
<attribute name="imageScalingX" type="float" use="optional" default="0"/>
<attribute name="imageScalingY" type="float" use="optional" default="0"/>
<attribute name="custom" type="string">
<annotation>
<documentation>For generic use</documentation>
</annotation>
</attribute>
<attribute name="type" type="pc:PageTypeSimpleType">
<annotation>
<documentation>Page type</documentation>
</annotation>
</attribute>
</complexType>
<complexType name="TextRegionType">
<annotation>
<documentation>
Pure text is represented as a text region. This includes
drop capitals, but practically ornate text may be
considered as a graphic.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<sequence>
<element name="TextLine" type="pc:TextLineType" minOccurs="0" maxOccurs="unbounded">
</element>
<element name="TextEquiv" type="pc:TextEquivType" minOccurs="0" maxOccurs="1">
</element>
<element name="TextStyle" type="pc:TextStyleType" minOccurs="0" maxOccurs="1">
</element>
</sequence>
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="type" type="pc:TextTypeSimpleType" use="optional">
<annotation>
<documentation>
The nature of the text in the region
</documentation>
</annotation>
</attribute>
<attribute name="leading" type="int" use="optional">
<annotation>
<documentation>
The degree of space in points between the lines of
text (line spacing)
</documentation>
</annotation>
</attribute>
<attribute name="readingDirection" type="pc:ReadingDirectionSimpleType" use="optional">
<annotation>
<documentation>
The direction in which text in a region should be
read (within lines)
</documentation>
</annotation>
</attribute>
<attribute name="readingOrientation" type="float" use="optional">
<annotation>
<documentation>The angle the baseline of text withing a region has to be rotated (relative to the rectangle encapsulating the region) in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="indented" type="boolean" use="optional">
<annotation>
<documentation>
Defines whether a region of text is indented or not
</documentation>
</annotation>
</attribute>
<attribute name="align" type="pc:AlignSimpleType">
<annotation>
<documentation>Text align</documentation>
</annotation>
</attribute>
<attribute name="primaryLanguage" type="pc:LanguageSimpleType" use="optional">
<annotation>
<documentation>
The primary language used in the region
</documentation>
</annotation>
</attribute>
<attribute name="secondaryLanguage" type="pc:LanguageSimpleType" use="optional">
<annotation>
<documentation>
The secondary language used in the region
</documentation>
</annotation>
</attribute>
<attribute name="primaryScript" type="pc:ScriptSimpleType" use="optional">
<annotation>
<documentation>
The primary script used in the region
</documentation>
</annotation>
</attribute>
<attribute name="secondaryScript" type="pc:ScriptSimpleType" use="optional">
<annotation>
<documentation>
The secondary script used in the region
</documentation>
</annotation>
</attribute>
<attribute name="production" type="pc:ProductionSimpleType"/>
</extension>
</complexContent>
</complexType>
<complexType name="CoordsType">
<attribute name="points" use="required" type="pc:PointsType">
<annotation>
<documentation>Point list with format "x1,y1 x2,y2 ..."</documentation>
</annotation>
</attribute>
</complexType>
<complexType name="TextLineType">
<sequence>
<element name="Tag" type="pc:TagType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Property" type="pc:PropertyType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Link" type="pc:LinkType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Coords" type="pc:CoordsType" minOccurs="0"/>
<element name="Baseline" type="pc:BaselineType" minOccurs="0">
<annotation>
<documentation>
Multiple connected points that mark the baseline
of the glyphs from left to right
</documentation>
</annotation>
</element>
<element name="Word" type="pc:WordType" minOccurs="0" maxOccurs="unbounded">
</element>
<element name="TextEquiv" type="pc:TextEquivType" minOccurs="0" maxOccurs="1">
</element>
<element name="TextStyle" type="pc:TextStyleType" minOccurs="0"/>
</sequence>
<attribute name="id" type="ID" use="required"/>
<attribute name="primaryLanguage" type="pc:LanguageSimpleType">
<annotation>
<documentation>
Overrides primaryLanguage attribute of parent text
region
</documentation>
</annotation>
</attribute>
<attribute name="production" type="pc:ProductionSimpleType">
<annotation>
<documentation>
Overrides the production attribute of the parent
text region
</documentation>
</annotation>
</attribute>
<attribute name="custom" type="string">
<annotation>
<documentation>For generic use</documentation>
</annotation>
</attribute>
<attribute name="comments" type="string"/>
</complexType>
<complexType name="WordType">
<sequence>
<element name="Tag" type="pc:TagType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Property" type="pc:PropertyType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Link" type="pc:LinkType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Coords" type="pc:CoordsType"/>
<element name="Glyph" type="pc:GlyphType" minOccurs="0" maxOccurs="unbounded">
</element>
<element name="TextEquiv" type="pc:TextEquivType" minOccurs="0" maxOccurs="1">
</element>
<element name="TextStyle" type="pc:TextStyleType" minOccurs="0"/>
</sequence>
<attribute name="id" type="ID" use="required"/>
<attribute name="language" type="pc:LanguageSimpleType">
<annotation>
<documentation>
Overrides primaryLanguage attribute of parent line
and/or text region
</documentation>
</annotation>
</attribute>
<attribute name="production" type="pc:ProductionSimpleType">
<annotation>
<documentation>
Overrides the production attribute of the parent
text line and/or text region.
</documentation>
</annotation>
</attribute>
<attribute name="custom" type="string">
<annotation>
<documentation>For generic use</documentation>
</annotation>
</attribute>
<attribute name="comments" type="string"/>
</complexType>
<complexType name="GlyphType">
<sequence>
<element name="Tag" type="pc:TagType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Property" type="pc:PropertyType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Link" type="pc:LinkType" minOccurs="0" maxOccurs="unbounded"/>
<element name="Coords" type="pc:CoordsType"/>
<element name="TextEquiv" type="pc:TextEquivType" minOccurs="0" maxOccurs="1">
</element>
<element name="TextStyle" type="pc:TextStyleType" minOccurs="0"/>
</sequence>
<attribute name="id" type="ID" use="required"/>
<attribute name="ligature" use="optional" type="boolean">
</attribute>
<attribute name="symbol" use="optional" type="boolean">
</attribute>
<attribute name="production" type="pc:ProductionSimpleType">
<annotation>
<documentation>
Overrides the production attribute of the parent
word / text line / text region.
</documentation>
</annotation>
</attribute>
<attribute name="custom" type="string">
<annotation>
<documentation>For generic use</documentation>
</annotation>
</attribute>
<attribute name="comments" type="string"/>
</complexType>
<complexType name="TextEquivType">
<sequence>
<element name="PlainText" type="string" minOccurs="0">
<annotation>
<documentation>
Text in a "simple" form (ASCII or extended ASCII
as mostly used for typing). I.e. no use of
special characters for ligatures (should be
stored as two separate characters) etc.
</documentation>
</annotation>
</element>
<element name="Unicode" type="string">
<annotation>
<documentation>
Correct encoding of the original, always using
the corresponding Unicode code point. I.e.
ligatures have to be represented as one
character etc.
</documentation>
</annotation>
</element>
<sequence>
<element name="Tag" type="pc:TagType" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</sequence>
<attribute name="conf">
<annotation>
<documentation>OCR confidence value (between 0 and 1)</documentation>
</annotation>
<simpleType>
<restriction base="float">
<minExclusive value="0"/>
<maxExclusive value="1"/>
</restriction>
</simpleType>
</attribute>
</complexType>
<complexType name="ImageRegionType">
<annotation>
<documentation>
An image is considered to be more intricate and complex
than a graphic. These can be photos or drawings.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="colourDepth" type="pc:ColourDepthSimpleType" use="optional">
<annotation>
<documentation>
The colour bit depth required for the region
</documentation>
</annotation>
</attribute>
<attribute name="bgColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The background colour of the region
</documentation>
</annotation>
</attribute>
<attribute name="embText" type="boolean" use="optional">
<annotation>
<documentation>
Specifies whether the region also contains
text
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="LineDrawingRegionType">
<annotation>
<documentation>
A line drawing is a single colour illustration without
solid areas.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="penColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The pen (foreground) colour of the region
</documentation>
</annotation>
</attribute>
<attribute name="bgColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The background colour of the region
</documentation>
</annotation>
</attribute>
<attribute name="embText" type="boolean" use="optional">
<annotation>
<documentation>
Specifies whether the region also contains
text
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="GraphicRegionType">
<annotation>
<documentation>
Regions containing simple graphics, such as a company
logo, should be marked as graphic regions.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="type" use="optional" type="pc:GraphicsTypeSimpleType">
<annotation>
<documentation>
The type of graphic in the region
</documentation>
</annotation>
</attribute>
<attribute name="numColours" type="int" use="optional">
<annotation>
<documentation>
An approximation of the number of colours
used in the region
</documentation>
</annotation>
</attribute>
<attribute name="embText" type="boolean" use="optional">
<annotation>
<documentation>
Specifies whether the region also contains
text.
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="TableRegionType">
<annotation>
<documentation>
The new table region type - a table is basically a collection of cells
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<sequence>
<element name="TableCell" type="pc:TableCellType" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="rows" type="int" use="optional">
<annotation>
<documentation>
The number of rows present in the table
</documentation>
</annotation>
</attribute>
<attribute name="columns" type="int" use="optional">
<annotation>
<documentation>
The number of columns present in the table
</documentation>
</annotation>
</attribute>
<attribute name="lineColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The colour of the lines used in the region
</documentation>
</annotation>
</attribute>
<attribute name="bgColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The background colour of the region
</documentation>
</annotation>
</attribute>
<attribute name="lineSeparators" type="boolean" use="optional">
<annotation>
<documentation>
Specifies the presence of line separators
</documentation>
</annotation>
</attribute>
<attribute name="embText" type="boolean" use="optional">
<annotation>
<documentation>
Specifies whether the region also contains
text
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="TableCellType">
<annotation>
<documentation>A single cell of a table</documentation>
</annotation>
<complexContent>
<extension base="pc:TextRegionType">
<sequence>
<element name="CornerPts" type="pc:CornerPointsType" default="0 1 2 3"/>
</sequence>
<attribute name="row" type="int" use="required">
<annotation><documentation>The row index of this cell</documentation></annotation>
</attribute>
<attribute name="col" type="int" use="required">
<annotation><documentation>The column index of this cell</documentation></annotation>
</attribute>
<attribute name="rowSpan" type="int" use="optional" default="1">
<annotation><documentation>The number of rows this cell spans</documentation></annotation>
</attribute>
<attribute name="colSpan" type="int" use="optional" default="1">
<annotation><documentation>The number of columns this cell spans</documentation></annotation>
</attribute>
<attribute name="leftBorderVisible" type="boolean" use="optional" default="false">
<annotation><documentation>Left border visiblity</documentation></annotation>
</attribute>
<attribute name="rightBorderVisible" type="boolean" use="optional" default="false">
<annotation><documentation>Right border visiblity</documentation></annotation>
</attribute>
<attribute name="topBorderVisible" type="boolean" use="optional" default="false">
<annotation><documentation>Top border visiblity</documentation></annotation>
</attribute>
<attribute name="bottomBorderVisible" type="boolean" use="optional" default="false">
<annotation><documentation>Bottom border visiblity</documentation></annotation>
</attribute>
<attribute name="label" type="boolean" use="optional" default="false">
<annotation><documentation>Determines whether this cell is a label cell</documentation></annotation>
</attribute>
<!-- <attribute name="id" type="ID" use="required"/>-->
<!-- <attribute name="custom" type="string">
<annotation>
<documentation>For generic use</documentation>
</annotation>
</attribute>-->
<!-- <attribute name="comments" type="string"/>-->
</extension>
</complexContent>
<!-- <sequence>
<element name="Coords" type="pc:CellCoordsType"/>
<element name="TextLine" type="pc:TextLineType" minOccurs="0" maxOccurs="unbounded"></element>
</sequence>
<attribute name="row" type="int" use="required">
<annotation><documentation>The row index of this cell</documentation></annotation>
</attribute>
<attribute name="col" type="int" use="required">
<annotation><documentation>The column index of this cell</documentation></annotation>
</attribute>
<attribute name="rowSpan" type="int" use="optional" default="1">
<annotation><documentation>The number of rows this cell spans</documentation></annotation>
</attribute>
<attribute name="colSpan" type="int" use="optional" default="1">
<annotation><documentation>The number of columns this cell spans</documentation></annotation>
</attribute>
<attribute name="id" type="ID" use="required"/>
<attribute name="custom" type="string">
<annotation>
<documentation>For generic use</documentation>
</annotation>
</attribute>
<attribute name="comments" type="string"/>-->
</complexType>
<!-- THE OLD TABLE REGION TYPE: -->
<!--<complexType name="TableRegionType">
<annotation>
<documentation>
Tabular data in any form is represented with a table
region. Rows and columns may or may not have separator
lines; these lines are not separator regions.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="rows" type="int" use="optional">
<annotation>
<documentation>
The number of rows present in the table
</documentation>
</annotation>
</attribute>
<attribute name="columns" type="int" use="optional">
<annotation>
<documentation>
The number of columns present in the table
</documentation>
</annotation>
</attribute>
<attribute name="lineColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The colour of the lines used in the region
</documentation>
</annotation>
</attribute>
<attribute name="bgColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The background colour of the region
</documentation>
</annotation>
</attribute>
<attribute name="lineSeparators" type="boolean" use="optional">
<annotation>
<documentation>
Specifies the presence of line separators
</documentation>
</annotation>
</attribute>
<attribute name="embText" type="boolean" use="optional">
<annotation>
<documentation>
Specifies whether the region also contains
text
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>-->
<complexType name="ChartRegionType">
<annotation>
<documentation>
Regions containing charts or graphs of any type, should
be marked as chart regions.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="type" use="optional" type="pc:ChartTypeSimpleType">
<annotation>
<documentation>
The type of chart in the region
</documentation>
</annotation>
</attribute>
<attribute name="numColours" type="int" use="optional">
<annotation>
<documentation>
An approximation of the number of colours
used in the region
</documentation>
</annotation>
</attribute>
<attribute name="bgColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The background colour of the region
</documentation>
</annotation>
</attribute>
<attribute name="embText" type="boolean" use="optional">
<annotation>
<documentation>
Specifies whether the region also contains
text
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="SeparatorRegionType">
<annotation>
<documentation>
Separators are lines that lie between columns and
paragraphs and can be used to logically separate
different articles from each other.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="colour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The colour of the separator
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="MathsRegionType">
<annotation>
<documentation>
Regions containing equations and mathematical symbols
should be marked as maths regions.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="bgColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The background colour of the region
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="ChemRegionType">
<annotation>
<documentation>
Regions containing chemical formulas.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>
The angle the rectangle encapsulating a
region has to be rotated in clockwise
direction in order to correct the present
skew (negative values indicate
anti-clockwise rotation). Range:
-179.999,180
</documentation>
</annotation>
</attribute>
<attribute name="bgColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The background colour of the region
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="MusicRegionType">
<annotation>
<documentation>
Regions containing musical notations.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180</documentation>
</annotation>
</attribute>
<attribute name="bgColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The background colour of the region
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="AdvertRegionType">
<annotation>
<documentation>
Regions containing advertisements.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType">
<attribute name="orientation" type="float" use="optional">
<annotation>
<documentation>The angle the rectangle encapsulating a region has to be rotated in clockwise direction in order to correct the present skew (negative values indicate anti-clockwise rotation).
Range: -179.999,180
</documentation>
</annotation>
</attribute>
<attribute name="bgColour" type="pc:ColourSimpleType" use="optional">
<annotation>
<documentation>
The background colour of the region
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="NoiseRegionType">
<annotation>
<documentation>
Noise regions are regions where no real data lies, only
false data created by artifacts on the document or
scanner noise.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType"/>
</complexContent>
</complexType>
<complexType name="UnknownRegionType">
<annotation>
<documentation>
To be used if the region type cannot be ascertained.
</documentation>
</annotation>
<complexContent>
<extension base="pc:RegionType"/>
</complexContent>
</complexType>
<complexType name="PrintSpaceType">
<annotation>
<documentation>Determines the effective area on the paper of a printed page. Its size is equal for all pages of a book (exceptions: titlepage, multipage pictures).
It contains all living elements (except marginals) like body type, footnotes, headings, running titles.
It does not contain pagenumber (if not part of running title), marginals, signature mark, preview words.
</documentation>
</annotation>
<sequence>
<element name="Coords" type="pc:CoordsType"/>
</sequence>
</complexType>
<complexType name="ReadingOrderType">
<annotation>
<documentation>Definition of the reading order within the page. To express a reading order between elements they have to be included in an OrderedGroup. Groups may contain further groups.</documentation>
</annotation>
<choice minOccurs="1" maxOccurs="1">
<element name="OrderedGroup" type="pc:OrderedGroupType"/>
<element name="UnorderedGroup" type="pc:UnorderedGroupType"/>
</choice>
</complexType>
<complexType name="RegionRefIndexedType">
<annotation>
<documentation>Numbered region</documentation>
</annotation>
<attribute name="index" type="int" use="required">
<annotation>
<documentation>Position (order number) of this item within the current hierarchy level.</documentation>
</annotation></attribute>
<attribute name="regionRef" type="IDREF" use="required"/>
</complexType>
<complexType name="OrderedGroupIndexedType">
<annotation>
<documentation>
Indexed group containing ordered elements
</documentation>
</annotation>
<choice minOccurs="1" maxOccurs="unbounded">
<element name="RegionRefIndexed" type="pc:RegionRefIndexedType">
</element>
<element name="OrderedGroupIndexed" type="pc:OrderedGroupIndexedType">
</element>
<element name="UnorderedGroupIndexed" type="pc:UnorderedGroupIndexedType">
</element>
</choice>
<attribute name="id" type="ID" use="required"/>
<attribute name="index" type="int" use="required">
<annotation>
<documentation>
Position (order number) of this item within the
current hierarchy level.
</documentation>
</annotation>
</attribute>
<attribute name="caption" type="string"/>
</complexType>
<complexType name="UnorderedGroupIndexedType">
<annotation>
<documentation>
Indexed group containing unordered elements
</documentation>
</annotation>
<choice minOccurs="1" maxOccurs="unbounded">
<element name="RegionRef" type="pc:RegionRefType"/>
<element name="OrderedGroup" type="pc:OrderedGroupType"/>
<element name="UnorderedGroup" type="pc:UnorderedGroupType">
</element>
</choice>
<attribute name="id" type="ID" use="required"/>
<attribute name="index" type="int" use="required">
<annotation>
<documentation>
Position (order number) of this item within the
current hierarchy level.
</documentation>
</annotation>
</attribute>
<attribute name="caption" type="string"/>
</complexType>
<complexType name="RegionRefType">
<attribute name="regionRef" type="IDREF" use="required"/>
</complexType>
<complexType name="OrderedGroupType">
<annotation>
<documentation>
Numbered group (contains ordered elements)
</documentation>
</annotation>
<choice minOccurs="1" maxOccurs="unbounded">
<element name="RegionRefIndexed" type="pc:RegionRefIndexedType">
</element>
<element name="OrderedGroupIndexed" type="pc:OrderedGroupIndexedType">
</element>
<element name="UnorderedGroupIndexed" type="pc:UnorderedGroupIndexedType">
</element>
</choice>
<attribute name="id" type="ID" use="required"/>
<attribute name="caption" type="string"/>
</complexType>