-
Notifications
You must be signed in to change notification settings - Fork 0
/
tei-istex.rnc
8571 lines (7814 loc) · 269 KB
/
tei-istex.rnc
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
default namespace = "http://www.w3.org/1998/Math/MathML"
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
namespace ns1 = "http://www.isocat.org/ns/dcr"
namespace ns2 = "https://xml-schema.delivery.istex.fr/formats/ns1.xsd"
namespace ns3 = "http://www.wiley.com/namespaces/wiley"
namespace rng = "http://relaxng.org/ns/structure/1.0"
namespace sch = "http://purl.oclc.org/dsdl/schematron"
namespace tei = "http://www.tei-c.org/ns/1.0"
namespace teix = "http://www.tei-c.org/ns/Examples"
namespace xlink = "http://www.w3.org/1999/xlink"
# Schema generated from ODD source 2019-07-11T05:24:28Z. .
# TEI Edition:
# TEI Edition Location: http://www.tei-c.org/Vault/P5//
#
# [http://creativecommons.org/licenses/by/4.0/] Ce schéma est distribué sous licence Creative Commons 4.0 non transposée (CC BY 4.0) ODD-ISTEX a été créé dans le cadre du projet ISTEX – Initiative d’Excellence en Information Scientifique et Technique
tei_macro.paraContent =
(text
| tei_model.gLike
| tei_model.phrase
| tei_model.inter
| tei_model.global
| tei_lg
| tei_model.lLike)*
tei_macro.limitedContent =
(text | tei_model.limitedPhrase | tei_model.inter)*
tei_macro.phraseSeq =
(text | tei_model.gLike | tei_model.phrase | tei_model.global)*
tei_macro.phraseSeq.limited =
(text | tei_model.limitedPhrase | tei_model.global)*
tei_macro.specialPara =
(text
| tei_model.gLike
| tei_model.phrase
| tei_model.inter
| tei_model.divPart
| tei_model.global)*
tei_macro.xtext = (text | tei_model.gLike)*
tei_att.ascribed.attributes = tei_att.ascribed.attribute.who
tei_att.ascribed.attribute.who =
## indique la personne ou le groupe de personnes à qui le contenu de l'élément est attribué.
attribute who {
list { xsd:anyURI+ }
}?
tei_att.canonical.attributes =
tei_att.canonical.attribute.key, tei_att.canonical.attribute.ref
tei_att.canonical.attribute.key =
## fournit un moyen, défini de façon externe, d'identifier l'entité (ou les entités) nommé(es), en utilisant une valeur codée d'un certain type.
attribute key { xsd:string }?
tei_att.canonical.attribute.ref =
## (référence) fournit un moyen explicite de localiser une définition complète de l'entité nommée au moyen d'un ou plusieurs URIs.
attribute ref {
list { xsd:anyURI+ }
}?
tei_att.ranging.attributes =
tei_att.ranging.attribute.atLeast,
tei_att.ranging.attribute.atMost,
tei_att.ranging.attribute.min,
tei_att.ranging.attribute.max,
tei_att.ranging.attribute.confidence
tei_att.ranging.attribute.atLeast =
## donne une estimation de la valeur minimum pour la mesure.
attribute atLeast {
xsd:double
| xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" }
| xsd:decimal
}?
tei_att.ranging.attribute.atMost =
## donne une estimation de la valeur maximum pour la mesure.
attribute atMost {
xsd:double
| xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" }
| xsd:decimal
}?
tei_att.ranging.attribute.min =
## lorsque la mesure résume plus d'une observation, fournit la valeur minimum observée.
attribute min {
xsd:double
| xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" }
| xsd:decimal
}?
tei_att.ranging.attribute.max =
## lorsque la mesure résume plus d'une observation, fournit la valeur maximum observée.
attribute max {
xsd:double
| xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" }
| xsd:decimal
}?
tei_att.ranging.attribute.confidence =
## specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range.
attribute confidence { xsd:double }?
tei_att.dimensions.attributes =
tei_att.ranging.attributes,
tei_att.dimensions.attribute.unit,
tei_att.dimensions.attribute.quantity,
tei_att.dimensions.attribute.extent,
tei_att.dimensions.attribute.precision,
tei_att.dimensions.attribute.scope
tei_att.dimensions.attribute.unit =
## noms des unités utilisées pour la mesure.
## Les valeurs suggérées comprennent: 1] cm (centimetres) ; 2] mm (millimetres) ; 3] in (inches) ; 4] lines; 5] chars (characters)
attribute unit {
## (centimètres)
"cm"
|
## (millimètres)
"mm"
|
## (pouces)
"in"
|
## lignes de texte
"lines"
|
## (characters) caractères du texte
"chars"
| xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
tei_att.dimensions.attribute.quantity =
## spécifie la longueur dans les unités indiquées
attribute quantity {
xsd:double
| xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" }
| xsd:decimal
}?
tei_att.dimensions.attribute.extent =
## indique la dimension de l'objet en utilisant un vocabulaire spécifique à un projet qui combine la quantité et l'unité dans une chaîne seule de mots.
attribute extent { xsd:string }?
tei_att.dimensions.attribute.precision =
## caractérise la précision des valeurs spécifiées par les autres attributs.
attribute precision {
##
"high"
|
##
"medium"
|
##
"low"
|
##
"unknown"
}?
tei_att.dimensions.attribute.scope =
## spécifie l'applicabilité de cette mesure, là où plus d'un objet est mesuré.
## Exemple de valeurs possibles: 1] all; 2] most; 3] range
attribute scope {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
tei_att.written.attributes = tei_att.written.attribute.hand
tei_att.written.attribute.hand =
## signale la main de celui qui est intervenue.
attribute hand { xsd:anyURI }?
tei_att.damaged.attributes =
tei_att.dimensions.attributes,
tei_att.written.attributes,
tei_att.damaged.attribute.agent,
tei_att.damaged.attribute.degree,
tei_att.damaged.attribute.group
tei_att.damaged.attribute.agent =
## caractérise la raison des dommages, lorsqu'elle peut être identifiée
## Exemple de valeurs possibles: 1] rubbing; 2] mildew; 3] smoke
attribute agent {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
tei_att.damaged.attribute.degree =
## indique le degré (la gravité) du dommage subi, selon une grille appropriée. L'attribut degree doit être utilisé dans le seul cas où le texte peut être lu avec certitude ; le texte restitué en utilisant d'autres sources doit être encodé au moyen de l'élément supplied.
attribute degree {
xsd:double
| (
##
"high"
|
##
"medium"
|
##
"low"
|
##
"unknown")
}?
tei_att.damaged.attribute.group =
## permet d'assigner un numéro quelconque à chaque fragment endommagé considéré comme faisant partie d'un ensemble résultant du même phénomène physique
attribute group { xsd:nonNegativeInteger }?
tei_att.breaking.attributes = tei_att.breaking.attribute.break
tei_att.breaking.attribute.break =
## indique si l'élément qui porte cet attribut peut être considéré comme une espace blanc indiquant la fin d'un mot orthographique.
attribute break {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
tei_att.cReferencing.attributes = tei_att.cReferencing.attribute.cRef
tei_att.cReferencing.attribute.cRef =
## (référence canonique) précise la cible du pointeur en fournissant une référence canonique issue d'un modèle défini par un élément refsDecldans l'En-tête TEI.
attribute cRef { xsd:string }?
tei_att.datable.w3c.attributes =
tei_att.datable.w3c.attribute.when,
tei_att.datable.w3c.attribute.notBefore,
tei_att.datable.w3c.attribute.notAfter,
tei_att.datable.w3c.attribute.from,
tei_att.datable.w3c.attribute.to
tei_att.datable.w3c.attribute.when =
## spécifie une date exacte pour un événement sous une forme normalisée, par ex. aaaa-mm-jj.
attribute when {
xsd:date
| xsd:gYear
| xsd:gMonth
| xsd:gDay
| xsd:gYearMonth
| xsd:gMonthDay
| xsd:time
| xsd:dateTime
}?
tei_att.datable.w3c.attribute.notBefore =
## spécifie la date la plus ancienne pour l'événement sous une forme normalisée, par ex. aaaa-mm-jj
attribute notBefore {
xsd:date
| xsd:gYear
| xsd:gMonth
| xsd:gDay
| xsd:gYearMonth
| xsd:gMonthDay
| xsd:time
| xsd:dateTime
}?
tei_att.datable.w3c.attribute.notAfter =
## spécifie la date la plus récente possible pour l'événement sous une forme normalisée, par ex. aaaa-mm-jj
attribute notAfter {
xsd:date
| xsd:gYear
| xsd:gMonth
| xsd:gDay
| xsd:gYearMonth
| xsd:gMonthDay
| xsd:time
| xsd:dateTime
}?
tei_att.datable.w3c.attribute.from =
## indique le point de départ d'une période sous une forme normalisée, par ex. aaaa-mm-jj
attribute from {
xsd:date
| xsd:gYear
| xsd:gMonth
| xsd:gDay
| xsd:gYearMonth
| xsd:gMonthDay
| xsd:time
| xsd:dateTime
}?
tei_att.datable.w3c.attribute.to =
## indique le terme de la période sous une forme normalisée, par ex. aaaa-mm-jj
attribute to {
xsd:date
| xsd:gYear
| xsd:gMonth
| xsd:gDay
| xsd:gYearMonth
| xsd:gMonthDay
| xsd:time
| xsd:dateTime
}?
sch:pattern [
id =
"tei-istex-att.datable.w3c-att-datable-w3c-when-constraint-rule-1"
"\x{a}" ~
" "
sch:rule [
context = "tei:*[@when]"
"\x{a}" ~
" "
sch:report [
role = "nonfatal"
test = "@notBefore|@notAfter|@from|@to"
"The @when attribute cannot be used with any other att.datable.w3c attributes."
]
"\x{a}" ~
" "
]
"\x{a}" ~
" "
]
sch:pattern [
id =
"tei-istex-att.datable.w3c-att-datable-w3c-from-constraint-rule-2"
"\x{a}" ~
" "
sch:rule [
context = "tei:*[@from]"
"\x{a}" ~
" "
sch:report [
role = "nonfatal"
test = "@notBefore"
"The @from and @notBefore attributes cannot be used together."
]
"\x{a}" ~
" "
]
"\x{a}" ~
" "
]
sch:pattern [
id = "tei-istex-att.datable.w3c-att-datable-w3c-to-constraint-rule-3"
"\x{a}" ~
" "
sch:rule [
context = "tei:*[@to]"
"\x{a}" ~
" "
sch:report [
role = "nonfatal"
test = "@notAfter"
"The @to and @notAfter attributes cannot be used together."
]
"\x{a}" ~
" "
]
"\x{a}" ~
" "
]
tei_att.datable.attributes =
tei_att.datable.w3c.attributes,
tei_att.datable.iso.attributes,
tei_att.datable.custom.attributes,
tei_att.datable.attribute.calendar,
tei_att.datable.attribute.period
tei_att.datable.attribute.calendar =
## indique le système ou le calendrier auquel appartient la date exprimée dans le contenu de l'élément.
attribute calendar { xsd:anyURI }?
sch:pattern [
id = "tei-istex-att.datable-calendar-calendar-constraint-rule-4"
"\x{a}" ~
" "
sch:rule [
context = "tei:*[@calendar]"
"\x{a}" ~
" "
sch:assert [
test = "string-length(.) gt 0"
"\x{a}" ~
"@calendar indicates the system or calendar to which the date represented by the content of this element\x{a}" ~
"belongs, but this "
sch:name [ ]
" element has no textual content."
]
"\x{a}" ~
" "
]
"\x{a}" ~
" "
]
tei_att.datable.attribute.period =
## fournit un pointeur vers un emplacement donné définissant une période de temps nommée durant laquelle l'item concerné s'inscrit.
attribute period { xsd:anyURI }?
tei_att.datcat.attributes =
tei_att.datcat.attribute.datcat, tei_att.datcat.attribute.valueDatcat
tei_att.datcat.attribute.datcat =
## contains a PID (persistent identifier) that aligns the given element with the appropriate Data Category (or categories) in ISOcat.
attribute ns1:datcat {
list { xsd:anyURI+ }
}?
tei_att.datcat.attribute.valueDatcat =
## contains a PID (persistent identifier) that aligns the content of the given element or the value of the given attribute with the appropriate simple Data Category (or categories) in ISOcat.
attribute ns1:valueDatcat {
list { xsd:anyURI+ }
}?
tei_att.declarable.attributes = tei_att.declarable.attribute.default
tei_att.declarable.attribute.default =
## Indique si oui ou non cet élément est affecté par défaut quand son élément parent a été sélectionné.
[ a:defaultValue = "false" ]
attribute default {
## cet élément est choisi si son parent est choisi
"true"
|
## cet élément ne peut être sélectionné qu'explicitement, à moins qu'il ne soit le seul de ce type, auquel cas il est sélectionné si son parent a été choisi
"false"
}?
tei_att.declaring.attributes = tei_att.declaring.attribute.decls
tei_att.declaring.attribute.decls =
## identifie un ou plusieurséléments déclarables dans l'en-tête TEI, qui sont destinés à s'appliquer à l'élément portant cet attribut et à son contenu.
attribute decls {
list { xsd:anyURI+ }
}?
tei_att.fragmentable.attributes = tei_att.fragmentable.attribute.part
tei_att.fragmentable.attribute.part =
## specifies whether or not its parent element is fragmented in some way, typically by some other overlapping structure: for example a speech which is divided between two or more verse stanzas, a paragraph which is split across a page division, a verse line which is divided between two speakers.
[ a:defaultValue = "N" ]
attribute part {
## (yes) the element is fragmented in some (unspecified) respect
"Y"
|
## (no) the element is not fragmented, or no claim is made as to its completeness
"N"
|
## (initial) this is the initial part of a fragmented element
"I"
|
## (medial) this is a medial part of a fragmented element
"M"
|
## (final) this is the final part of a fragmented element
"F"
}?
tei_att.divLike.attributes =
tei_att.fragmentable.attributes,
tei_att.divLike.attribute.org,
tei_att.divLike.attribute.sample
tei_att.divLike.attribute.org =
## (organisation) précise l'organisation du contenu de la division
[ a:defaultValue = "uniform" ]
attribute org {
## aucune déclaration n'est faite quant à l'ordre dans lequel les composants de cette division doivent être traités ou bien quant à leurs corrélations
"composite"
|
## contenu uniforme : c'est-à-dire que les composants de cet élément sont à considérer comme formant une unité logique et doivent être traités dans l'ordre séquentiel
"uniform"
}?
tei_att.divLike.attribute.sample =
## indique si cette division est un échantillon de la source originale et dans ce cas, de quelle partie.
[ a:defaultValue = "complete" ]
attribute sample {
## par rapport à la source, lacune à la fin de la division
"initial"
|
## par rapport à la source, lacune au début et à la fin de la division
"medial"
|
## par rapport à la source, lacune au début de la division
"final"
|
## par rapport à la source, position de l'échantillon inconnue
"unknown"
|
## la division n'est pas un échantillon
"complete"
}?
tei_att.docStatus.attributes = tei_att.docStatus.attribute.status
tei_att.docStatus.attribute.status =
## describes the status of a document either currently or, when associated with a dated element, at the time indicated.
## Exemple de valeurs possibles: 1] approved; 2] candidate; 3] cleared; 4] deprecated; 5] draft; 6] embargoed; 7] expired; 8] frozen; 9] galley; 10] proposed; 11] published; 12] recommendation; 13] submitted; 14] unfinished; 15] withdrawn
[ a:defaultValue = "draft" ]
attribute status {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
tei_att.duration.w3c.attributes = tei_att.duration.w3c.attribute.dur
tei_att.duration.w3c.attribute.dur =
## (durée) indique la longueur de cet élément dans le temps
attribute dur { xsd:duration }?
tei_att.duration.iso.attributes = tei_att.duration.iso.attribute.dur-iso
tei_att.duration.iso.attribute.dur-iso =
## (durée) indique la longueur de cet élément dans le temps
attribute dur-iso {
xsd:token { pattern = "[0-9.,DHMPRSTWYZ/:+\-]+" }
}?
tei_att.global.responsibility.attributes =
tei_att.global.responsibility.attribute.cert,
tei_att.global.responsibility.attribute.resp
tei_att.global.responsibility.attribute.cert =
## (certitude) donne le degré de certitude associée à l'intervention ou à l'interprétation.
attribute cert {
xsd:double
| (
##
"high"
|
##
"medium"
|
##
"low"
|
##
"unknown")
}?
tei_att.global.responsibility.attribute.resp =
## (responsable) indique l'agent responsable de l'intervention ou de l'interprétation, par exemple un éditeur ou un transcripteur.
attribute resp {
list { xsd:anyURI+ }
}?
tei_att.editLike.attributes =
tei_att.dimensions.attributes,
tei_att.editLike.attribute.evidence,
tei_att.editLike.attribute.instant
tei_att.editLike.attribute.evidence =
## indique la nature de la preuve attestant la fiabilité ou la justesse de l'intervention ou de l'interprétation.
## Les valeurs suggérées comprennent: 1] internal; 2] external; 3] conjecture
attribute evidence {
list {
(
## l'intervention est justifiée par une preuve interne
"internal"
|
## l'intervention est justifiée par une preuve externe
"external"
|
## l'intervention ou l'interprétation a été faite par le rédacteur, le catalogueur, ou le chercheur sur la base de leur expertise.
"conjecture"
| xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" })+
}
}?
tei_att.editLike.attribute.instant =
## indicates whether this is an instant revision or not.
[ a:defaultValue = "false" ]
attribute instant {
xsd:boolean
| (
##
"unknown"
|
##
"inapplicable")
}?
tei_att.global.rendition.attributes =
tei_att.global.rendition.attribute.rend,
tei_att.global.rendition.attribute.style,
tei_att.global.rendition.attribute.rendition
tei_att.global.rendition.attribute.rend =
## (interprétation) indique comment l'élément en question a été rendu ou présenté dans le texte source
attribute rend {
list {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+
}
}?
tei_att.global.rendition.attribute.style =
## contains an expression in some formal style definition language which defines the rendering or presentation used for this element in the source text
attribute style { xsd:string }?
tei_att.global.rendition.attribute.rendition =
## pointe vers une description du rendu ou de la présentation utilisés pour cet élément dans le texte source
attribute rendition {
list { xsd:anyURI+ }
}?
tei_att.global.source.attributes =
tei_att.global.source.attribute.source
tei_att.global.source.attribute.source =
## specifies the source from which some aspect of this element is drawn.
attribute source {
list { xsd:anyURI+ }
}?
tei_att.global.attributes =
tei_att.global.rendition.attributes,
tei_att.global.linking.attributes,
tei_att.global.analytic.attributes,
tei_att.global.facs.attributes,
tei_att.global.change.attributes,
tei_att.global.responsibility.attributes,
tei_att.global.source.attributes,
tei_att.global.attribute.xmlid,
tei_att.global.attribute.n,
tei_att.global.attribute.xmllang,
tei_att.global.attribute.xmlbase,
tei_att.global.attribute.xmlspace
tei_att.global.attribute.xmlid =
## (identifiant) fournit un identifiant unique pour l'élément qui porte l'attribut
attribute xml:id { xsd:ID }?
tei_att.global.attribute.n =
## (nombre) donne un nombre (ou une autre étiquette) pour un élément, qui n'est pas nécessairement unique dans le document TEI.
attribute n { xsd:string }?
tei_att.global.attribute.xmllang =
## (langue) indique la langue du contenu de l'élément en utilisant les codes du RFC 3066
attribute xml:lang {
xsd:language
| (
##
"")
}?
tei_att.global.attribute.xmlbase =
## donne une référence URI de base au moyen de laquelle les applications peuvent résoudre des références d'URI relatives en références d'URI absolues
attribute xml:base { xsd:anyURI }?
tei_att.global.attribute.xmlspace =
## signale que les applications doivent préserver l'espace blanc
attribute xml:space {
## signals that the application's default white-space processing modes are acceptable
"default"
|
## indicates the intent that applications preserve all white space
"preserve"
}?
tei_att.handFeatures.attributes =
tei_att.handFeatures.attribute.scribe,
tei_att.handFeatures.attribute.scribeRef,
tei_att.handFeatures.attribute.script,
tei_att.handFeatures.attribute.scriptRef,
tei_att.handFeatures.attribute.medium,
tei_att.handFeatures.attribute.scope
tei_att.handFeatures.attribute.scribe =
## donne un nom normalisé ou un autre identifiant pour le scribe reconnu comme responsable de cette main.
attribute scribe { xsd:Name }?
tei_att.handFeatures.attribute.scribeRef =
## points to a full description of the scribe concerned, typically supplied by a person element elsewhere in the description.
attribute scribeRef {
list { xsd:anyURI+ }
}?
tei_att.handFeatures.attribute.script =
## caractérise la calligraphie ou le style d'écriture particuliers utilisés par cette main, par exemple écriture anglaise, de chancellerie, italienne, etc.
attribute script {
list { xsd:Name+ }
}?
tei_att.handFeatures.attribute.scriptRef =
## points to a full description of the script or writing style used by this hand, typically supplied by a scriptNote element elsewhere in the description.
attribute scriptRef {
list { xsd:anyURI+ }
}?
tei_att.handFeatures.attribute.medium =
## décrit la teinte ou le type d'encre, par exemple brune, ou un autre outil d'écriture, par exemple un crayon.
attribute medium {
list {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+
}
}?
tei_att.handFeatures.attribute.scope =
## Spécifie la fréquence d'apparition de cette main dans le manuscrit.
attribute scope {
## il n'y a que cette main dans le manuscrit.
"sole"
|
## cette main est utilisée dans la majeure partie du manuscrit.
"major"
|
## cette main est utilisée occasionnellement dans le manuscrit.
"minor"
}?
tei_att.internetMedia.attributes =
tei_att.internetMedia.attribute.mimeType
tei_att.internetMedia.attribute.mimeType =
## (type de média MIME) spécifie le type MIME (multipurpose internet mail extension) applicable.
attribute mimeType {
list {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+
}
}?
tei_att.media.attributes =
tei_att.internetMedia.attributes,
tei_att.media.attribute.width,
tei_att.media.attribute.height,
tei_att.media.attribute.scale
tei_att.media.attribute.width =
## Where the media are displayed, indicates the display width
attribute width {
xsd:token {
pattern =
"[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)"
}
}?
tei_att.media.attribute.height =
## Where the media are displayed, indicates the display height
attribute height {
xsd:token {
pattern =
"[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)"
}
}?
tei_att.media.attribute.scale =
## Where the media are displayed, indicates a scale factor to be applied when generating the desired display size
attribute scale {
xsd:double
| xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" }
| xsd:decimal
}?
tei_att.resourced.attributes = tei_att.resourced.attribute.url
tei_att.resourced.attribute.url =
## (adresse URL) specifies the URL from which the media concerned may be obtained.
attribute url { xsd:anyURI }
tei_att.interpLike.attributes =
tei_att.interpLike.attribute.type, tei_att.interpLike.attribute.inst
tei_att.interpLike.attribute.type =
## indique quel genre de phénomène est noté dans le passage.
## Exemple de valeurs possibles: 1] image; 2] character; 3] theme; 4] allusion
attribute type {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
tei_att.interpLike.attribute.inst =
## (cas) pointe vers les instances de l'analyse ou de l'interprétation représentées par l'élément courant.
attribute inst {
list { xsd:anyURI+ }
}?
tei_att.measurement.attributes =
tei_att.measurement.attribute.unit,
tei_att.measurement.attribute.quantity,
tei_att.measurement.attribute.commodity
tei_att.measurement.attribute.unit =
## (unité) indique les unités de mesure utilisées ; il s'agit en général du symbole normalisé pour les unités dont on a besoin.
## Les valeurs suggérées comprennent: 1] m (metre) ; 2] kg (kilogram) ; 3] s (second) ; 4] Hz (hertz) ; 5] Pa (pascal) ; 6] Ω (ohm) ; 7] L (litre) ; 8] t (tonne) ; 9] ha (hectare) ; 10] Å (ångström) ; 11] mL (millilitre) ; 12] cm (centimetre) ; 13] dB (decibel) ; 14] kbit (kilobit) ; 15] Kibit (kibibit) ; 16] kB (kilobyte) ; 17] KiB (kibibyte) ; 18] MB (megabyte) ; 19] MiB (mebibyte)
attribute unit {
## (mètre) unité SI (système international) de longueur
"m"
|
## (kilogramme) unité SI de masse
"kg"
|
## (seconde) unité SI de temps
"s"
|
## (hertz) unité SI de fréquence
"Hz"
|
## (pascal) unité SI de pression
"Pa"
|
## (ohm) unité SI de résistance électrique
"Ω"
|
## (litre) 1 dm³
"L"
|
## (tonne) 10³ kg
"t"
|
## (hectare) 1 hm²
"ha"
|
## (ångström) 10⁻¹⁰ m
"Å"
|
## (millilitre)
"mL"
|
## (centimètre)
"cm"
|
## (décibel) Voir remarques, ci-dessous.
"dB"
|
## (kilobit) 10³ ou 1000 bits
"kbit"
|
## (kibibit) 2¹⁰ ou 1024 bits
"Kibit"
|
## (kilo-octet) 10³ ou 1000 octets
"kB"
|
## (kibioctet) 2¹⁰ ou 1024 octets
"KiB"
|
## (mégaoctet) 10⁶ ou 1 000 000 octets
"MB"
|
## (mébioctet) 2²⁰ ou 1 048 576 octets
"MiB"
| xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
tei_att.measurement.attribute.quantity =
## (quantité) spécifie le nombre des unités indiquées que comprend la mesure.
attribute quantity {
xsd:double
| xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" }
| xsd:decimal
}?
tei_att.measurement.attribute.commodity =
## (article) indique ce qui est mesuré.
attribute commodity {
list {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+
}
}?
tei_att.naming.attributes =
tei_att.canonical.attributes,
tei_att.naming.attribute.role,
tei_att.naming.attribute.nymRef
tei_att.naming.attribute.role =
## may be used to specify further information about the entity referenced by this name in the form of a set of whitespace-separated values, for example the occupation of a person, or the status of a place.
attribute role {
list {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+
}
}?
tei_att.naming.attribute.nymRef =
## (référence au nom canonique) indique comment localiser la forme canonique (nym) des noms qui sont associés à l'objet nommé par l'élément qui le contient.
attribute nymRef {
list { xsd:anyURI+ }
}?
tei_att.notated.attributes = tei_att.notated.attribute.notation
tei_att.notated.attribute.notation =
## précise le nom d'une notation définie précédemment, utilisée dans le contenu de l'élément.
attribute notation {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
tei_att.placement.attributes = tei_att.placement.attribute.place
tei_att.placement.attribute.place =
## specifie où cet item se trouve.
## Les valeurs suggérées comprennent: 1] below; 2] bottom; 3] margin; 4] top; 5] opposite; 6] overleaf; 7] above; 8] end; 9] inline; 10] inspace
attribute place {
list {
(
## au-dessous de la ligne
"below"
|
## dans la marge inférieure
"bottom"
|
## dans la marge (gauche, droite ou les deux en même temps)
"margin"
|
## dans la marge supérieure
"top"
|
## sur la page opposée
"opposite"
|
## de l'autre côté de la feuille
"overleaf"
|
## au-dessus de la ligne
"above"
|
## à la fin, par exemple d'un chapitre ou d'un volume
"end"
|
## dans le corps du texte
"inline"
|
## dans un espace prédéfini, par exemple à gauche d'un scripteur précédent
"inspace"
| xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" })+
}
}?
tei_att.typed.attributes =
tei_att.typed.attribute.type, tei_att.typed.attribute.subtype
tei_att.typed.attribute.type =
## caractérise l'élément en utilisant n'importe quel système ou typologie de classification approprié.
attribute type {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
tei_att.typed.attribute.subtype =
## (sous-type) fournit une sous-catégorisation de l'élément, si c'est nécessaire.
attribute subtype {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
}?
sch:pattern [
id = "tei-istex-att.typed-subtypeTyped-constraint-rule-5"
"\x{a}" ~
" "
sch:rule [
context = "tei:*[@subtype]"
"\x{a}" ~
" "
sch:assert [
test = "@type"
"The "
sch:name [ ]
" element should not be categorized in detail with @subtype unless also categorized in general with @type"
]
"\x{a}" ~
" "
]
"\x{a}" ~
" "
]
tei_att.pointing.attributes =
tei_att.pointing.attribute.targetLang,
tei_att.pointing.attribute.target,
tei_att.pointing.attribute.evaluate
tei_att.pointing.attribute.targetLang =
## specifies the language of the content to be found at the destination referenced by target, using a language tag generated according to BCP 47.
attribute targetLang {
xsd:language
| (
##
"")
}?
sch:pattern [
id = "tei-istex-att.pointing-targetLang-targetLang-constraint-rule-6"
"\x{a}" ~
" "
sch:rule [
context = "tei:*[not(self::tei:schemaSpec)][@targetLang]"
"\x{a}" ~
" "
sch:assert [
test = "@target"
"@targetLang should only be used on "
sch:name [ ]
" if @target is specified."
]
"\x{a}" ~
" "
]
"\x{a}" ~
" "
]
tei_att.pointing.attribute.target =
## précise la cible de la référence en donnant une ou plusieurs références URI
attribute target {
list { xsd:anyURI+ }
}?
tei_att.pointing.attribute.evaluate =
## (évalué) détermine le sens attendu, si la cible d'un pointeur est elle-même un pointeur.
attribute evaluate {
## si l'élément pointé est lui-même un pointeur, alors on prendra la cible de ce pointeur, et ainsi de suite jusqu'à trouver un élément qui n'est pas un pointeur.
"all"
|
## si l'élément pointé est lui-même un pointeur, alors sa cible (qui est ou non un pointeur) devient la cible retenue.
"one"
|
## aucune évaluation ultérieure des cibles n'est menée au-delà de la recherche de l'élément désigné dans la cible du pointeur.
"none"
}?
tei_att.pointing.group.attributes =
tei_att.pointing.attributes,
tei_att.typed.attributes,
tei_att.pointing.group.attribute.domains,
tei_att.pointing.group.attribute.targFunc
tei_att.pointing.group.attribute.domains =
## spécifie, facultativement, les identifiants des éléments englobant tous les éléments indiqués par le contenu de cet élément.
attribute domains {
list { xsd:anyURI, xsd:anyURI, xsd:anyURI* }
}?
tei_att.pointing.group.attribute.targFunc =
## (fonction cible) décrit la fonction de chacune des valeurs de l'attribut target pour les balises incluses link, join, ou alt.
attribute targFunc {
list {
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" },
xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" },