forked from oeuvres/teinte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
teinteHeader.rng
1471 lines (1414 loc) · 64.6 KB
/
teinteHeader.rng
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"?>
<?xml-stylesheet type="text/xsl" href="../xrem/rng_html.xsl"?>
<grammar
xmlns="http://relaxng.org/ns/structure/1.0"
xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
ns="http://www.tei-c.org/ns/1.0"
xml:lang="fre"
>
<a:documentation>teibookHeader</a:documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<ul class="auteurs">
<li>[FG] <a onmouseover="this.href='mailto'+'\x3A'+'glorieux'+'\x40'+'algone.net'">Frédéric Glorieux</a></li>
<li>[VJ] <a onmouseover="this.href='mailto'+'\x3A'+'jolivet'+'\x40'+'algone.net'">Vincent Jolivet</a></li>
</ul>
<p>Ce schéma précise la structure du teiHeader <a href="http://algone.net/teibook/">Teibook</a>.<br/>
Il détaille où et comment sont inscrites les métadonnées d’un fichier source afin de faciliter les opérations de conversion.</p>
<ul>
<li><a href="teibookHeader.rng">Le schéma</a></li>
</ul>
</div>
<div xml:id="core">
<a:documentation>teibookHeader core</a:documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>Un teiHeader minimal et obligatoire pour générer les principales métadonnées de l’édition au format DC.<br/>
La table <a href="#output_mapping">TEI to DC</a> fait la synthèse des correspondances (<em>mapping</em>).</p>
</div>
<a:example>
<teiHeader>
<fileDesc>
<titleStmt>
<title>Les fleurs du mal</title>
<author key="Baudelaire, Charles (1821-1867)">Baudelaire</author>
</titleStmt>
<publicationStmt>
<date when="2013-01"/>
<idno>...</idno>
<availability status="restricted">
<licence target="http://creativecommons.org/publicdomain/mark/1.0/deed.fr"/>
</availability>
<publisher>Algone</publisher>
</publicationStmt>
<sourceDesc>
<bibl>Baudelaire, <title>les Fleurs du mal</title>, Michel Lévy frères, 3e éd., Paris, 1868</bibl>
</sourceDesc>
</fileDesc>
<profileDesc>
<creation>
<date notBefore="1840" notAfter="1861">Entre 1840 et 1861</date>
</creation>
<langUsage>
<language ident="fre"/>
</langUsage>
</profileDesc>
</teiHeader>
</a:example>
<define name="teiHeader">
<element name="teiHeader">
<a:documentation>En-tête de fichier TEI</a:documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p><a:el>teiHeader</a:el> renseigne l’ensemble des métadonnées (informations bibliographiques, légales, techniques, etc.) attachées à une édition.</p>
</div>
<ref name="fileDesc"/>
<choice>
<group>
<ref name="profileDesc"/>
<optional>
<ref name="encodingDesc"/>
</optional>
</group>
<group>
<optional>
<ref name="encodingDesc"/>
</optional>
<ref name="profileDesc"/>
</group>
</choice>
<optional>
<ref name="revisionDesc"/>
</optional>
</element>
</define>
<define name="fileDesc">
<element name="fileDesc">
<a:documentation>Description bibliographique complète du fichier</a:documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p><a:el>fileDesc</a:el> articule surtout les blocs suivants :</p>
<ul>
<li><a href="#el_titleStmt">titleStmt</a> : titre et mentions de responsabilité de l’œuvre ;</li>
<li><a href="#el_publicationStmt">publicationStmt</a> : informations légales ;</li>
<li><a href="#el_sourceDesc">sourceDesc</a> : description de la source (imprimée ou manuscrite).</li>
</ul>
</div>
<element name="titleStmt">
<a:documentation>Titre et mentions de responsabilité de l’œuvre</a:documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p><a:el>titleStmt</a:el> décrit le texte électronique (et non la source numérisée, voir <a href="#el_sourceDesc">sourceDesc</a>).<br/>
Les titres répétables sont interprétés hiérarchiquement.</p>
<!-- "1) titre de corpus, 2) ouvrage dans le corpus, 3) partie d'ouvrage, etc." -> en principe le titre du corpus est inscrit dans seriesStmt -->
</div>
<ref name="titleStmt.cont"/>
</element>
<optional>
<ref name="editionStmt"/>
</optional>
<optional>
<ref name="extent"/>
</optional>
<ref name="publicationStmt"/>
<optional>
<ref name="seriesStmt"/>
</optional>
<optional>
<ref name="notesStmt"/>
</optional>
<oneOrMore>
<ref name="sourceDesc"/>
</oneOrMore>
</element>
</define>
<define name="titleStmt.cont">
<ref name="title.group"/>
<!-- pb déterminisme XSD avec titre traduit et compléments de titre optionnels -->
<!-- Laisser l’éditeur libre de son ordre -->
<zeroOrMore>
<choice>
<ref name="teiHeader.author"/>
<ref name="principal"/>
<ref name="editor"/>
<ref name="funder"/>
<ref name="sponsor"/>
</choice>
</zeroOrMore>
</define>
<define name="title.group">
<oneOrMore>
<element name="title">
<a:documentation>Titres. Le premier titre est considéré comme le titre principal. Les suivants sont considérés commes des compléments du titre. En cas de traduction, le titre original est à indiquer avec un attribut @xml:lang qui en indique la langue.</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/title" target="dc">dc:title</a>> titre propre et sous-titre (optionnel)</li>
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/200.htm#$a" target="unim">Unimarc, zone 200, $a</a> : titre propre</li>
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/200.htm#$e" target="unim">Unimarc, zone 200, $e</a> : complément du titre</li>
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/454.htm" target="unim">Unimarc, zone 454, $t</a> : traduit de, titre</li>
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/454.htm" target="unim">Unimarc, zone 454, $o</a> : traduit de, sous-titre ou complément de titre</li>
</ul>
<a:example>
<title ref="http://fr.wikipedia.org/wiki/Les_Fleurs_du_mal">Les fleurs du mal</title>
</a:example>
<optional>
<ref name="title.type"/>
</optional>
<optional>
<!-- surtout laisser cela comme ça, où jing s'embrouille -->
<ref name="lang-att"/>
</optional>
<optional>
<attribute name="ref">
<a:documentation>Identification du texte (et non de l’édition imprimée source, voir sourceDesc) vers un référentiel (ex: URI Wikipédia par ex.)</a:documentation>
<data type="anyURI"/>
</attribute>
</optional>
<zeroOrMore>
<choice>
<text/>
<ref name="teiHeader.hi"/>
<ref name="teiHeader.num"/>
</choice>
</zeroOrMore>
</element>
</oneOrMore>
</define>
<define name="title.type">
<attribute name="type">
<a:documentation>Type du complément du titre</a:documentation>
<choice>
<value>main</value>
<a:documentation>titre principal</a:documentation>
<value>sub</value>
<a:documentation>sous-titre</a:documentation>
<value>alt</value>
<a:documentation>titre alternatif</a:documentation>
<value>short</value>
<a:documentation>forme abrégée</a:documentation>
<value>desc</value>
<a:documentation>paraphrase descriptive de l’œuvre</a:documentation>
<data type="token"/>
</choice>
</attribute>
</define>
<define name="teiHeader.author">
<element name="author">
<a:documentation>Auteur(s) du texte, forme normalisée.</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/creator" target="dc">dc:creator</a>><br/></li>
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/200.htm#$f" target="unim">Unimarc, zone 200, $f</a> : première mention de responsabilité</li>
<li><<a href="http://purl.org/dc/terms/contributor" target="dc">dc:contributor</a>></li>
<li> <a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/200.htm#$g" target="unim">Unimarc, zone 200, $g</a> : mention de responsabilité suivante</li>
</ul>
<a:example>
<author key="Baudelaire, Charles (1821-1867)" ref="http://www.idref.fr/026709635">Baudelaire</author>
</a:example>
<optional>
<ref name="key"/>
</optional>
<optional>
<!-- ex : ONIX Code List 17 -->
<attribute name="role">
<choice>
<!--
<value>translator</value>
-->
<value>illustrator</value>
<value>paratext</value>
<text/>
</choice>
</attribute>
</optional>
<ref name="pers.cont"/>
</element>
</define>
<define name="publisher">
<element name="publisher">
<a:documentation>L’éditeur. Répétable en cas de coédition.</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/publisher" target="dc">dc:publisher</a>></li>
</ul>
<ref name="pers.cont"/>
</element>
</define>
<define name="principal">
<element name="principal">
<a:documentation>Éditeur scientifique</a:documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>L’éditeur scientifique d’un colloque par ex. (dir. ou .éd.). Ne pas confondre avec l’éditeur critique (voir <a:el>editor</a:el>).</p>
<p>Ne pas confondre également avec le responsable de l’édition électronique (<code>editionStmt/principal</code>, mention d’édition et non mention de reponsabilité)</p>
<ul>
<li><<a href="http://purl.org/dc/terms/contributor" target="dc">dc:contributor</a>><br/></li>
</ul>
</div>
<optional>
<ref name="key"/>
</optional>
<ref name="pers.cont"/>
</element>
</define>
<define name="funder">
<element name="funder">
<a:documentation>Financeur</a:documentation>
<optional>
<ref name="key"/>
</optional>
<ref name="pers.cont"/>
</element>
</define>
<define name="sponsor">
<element name="sponsor">
<a:documentation>Sponsor</a:documentation>
<optional>
<ref name="key"/>
</optional>
<ref name="pers.cont"/>
</element>
</define>
<define name="pers.cont">
<a:documentation>Contenu commun aux personnes, comme auteurs, contributeurs, éditeurs…</a:documentation>
<optional>
<attribute name="ref">
<a:documentation>Identification vers un référentiel (URI idRef par ex)</a:documentation>
<data type="anyURI"/>
</attribute>
</optional>
<a:documentation>Forme non normalisée pour affichage (exemple génération automatique de couvertures)</a:documentation>
<zeroOrMore>
<choice>
<text/>
<element name="forename">
<text/>
</element>
<element name="num">
<text/>
</element>
<element name="surname">
<text/>
</element>
</choice>
</zeroOrMore>
</define>
<define name="key">
<attribute name="key">
<a:documentation>Forme normalisée (NF Z 44-061) pour le tri et les traitements : Nom, Prénom (naissance-mort)</a:documentation>
</attribute>
</define>
<define name="publicationStmt">
<element name="publicationStmt">
<a:documentation>Informations relatives à la publication et à la diffusion du fichier XML/TEI</a:documentation>
<!-- À l'usage, forcer l'ordre est plus que pénible, d'où <interleave> -->
<interleave>
<oneOrMore>
<ref name="publisher"/>
</oneOrMore>
<zeroOrMore>
<element name="date">
<a:documentation>Date de publication du fichier TEI, forme normalisée : AAAA((-MM)?-JJ)?</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/date" target="dc">dc:date</a>> ou <<a href="http://purl.org/dc/terms/issued" target="dc">dc:issued</a>>, pour la date de publication électronique (uniquement)</li>
</ul>
<attribute name="when">
<ref name="date.type"/>
</attribute>
</element>
</zeroOrMore>
<zeroOrMore>
<element name="idno">
<a:documentation>URI de référence du texte électronique, obligatoire</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/identifier" target="dc">dc:identifier</a>></li>
</ul>
<optional>
<attribute name="type">
<choice>
<value>tei</value>
<value>html</value>
<value>txt</value>
<value>epub</value>
<data type="Name"/>
</choice>
</attribute>
</optional>
<text/>
</element>
</zeroOrMore>
<optional>
<ref name="availability"/>
</optional>
<optional>
<element name="pubPlace">
<a:documentation>Lieu de publication</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/210.htm#$a" target="unim">Unimarc, zone 210, $a</a></li>
</ul>
<text/>
</element>
</optional>
<!-- NB : conserver cet ordre par publicationStmt.optional peut compléter <publisher> -->
<ref name="publicationStmt.optional"/>
</interleave>
</element>
</define>
<define name="availability">
<element name="availability">
<a:documentation>Texte de la licence</a:documentation>
<optional>
<attribute name="status">
<value>restricted</value>
</attribute>
</optional>
<element name="licence">
<a:documentation>URI de référence vers la licence</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/rights" target="dc">dc:rights</a>> (Prévoir ligne courte pour la licence)</li>
</ul>
<attribute name="target">
<data type="anyURI"/>
</attribute>
<choice>
<oneOrMore>
<ref name="teiHeader.p"/>
</oneOrMore>
<ref name="teiHeader.flow"/>
</choice>
</element>
</element>
</define>
<define name="profileDesc">
<element name="profileDesc">
<a:documentation>Description non-bibliographique du texte (langue, circonstances de production)</a:documentation>
<!-- required in any order -->
<interleave>
<ref name="creation"/>
<ref name="langUsage"/>
</interleave>
<optional>
<ref name="textClass"/>
</optional>
</element>
</define>
<define name="creation">
<element name="creation">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>“The date and place of composition are often of particular importance for studies of linguistic variation; since such information cannot be inferred with confidence from the bibliographic description of the copy text, the creation element may be used to provide a consistent location for this information.” (<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/HD.html#HD4C" target="TEI">TEI P5, Guidelines, principes directeurs</a>)</p>
</div>
<oneOrMore>
<ref name="creation.date"/>
</oneOrMore>
</element>
</define>
<define name="langUsage">
<element name="langUsage">
<oneOrMore>
<element name="language">
<a:documentation>Langue principale du texte. Renseigner l’attribut @ident avec un code ISO 639-2 (avec extensions simili ISO si nécessaire), et donner un intitulé textuel de la langue dans le contenu de l'élément</a:documentation>
<p xmlns="http://www.w3.org/1999/xhtml" class="note">La langue principale du texte doit être inscrite sur sa racire /TEI, en valeur de l’attribut @xml:lang (permet notamment d’informer la correction orthographique dans un éditeur XML).</p>
<a:example>
<language ident="la_EU_mod" usage="75">Latin moderne (XVIIe)</language>
<language ident="fr" usage="25">Français (préface et notes)</language>
</a:example>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/language" target="dc">dc:language</a>></li>
</ul>
<attribute name="ident">
<text/>
</attribute>
<optional>
<attribute name="usage">
<a:documentation>Proportion approximative de la langue dans le texte.</a:documentation>
<text/>
</attribute>
</optional>
<ref name="teiHeader.flow"/>
</element>
</oneOrMore>
</element>
</define>
<define name="creation.date">
<element name="date">
<a:documentation>Date formatée pour les traitements automatisés dans les attributs</a:documentation>
<optional>
<attribute name="type"><!-- TODO : on supprime ? -->
<choice>
<value>accepted</value>
<value>available</value>
<value>copyrighted</value>
<value>created</value>
<value>issued</value>
<value>modified</value>
<value>submitted</value>
<value>translated</value>
<value>valid</value>
</choice>
</attribute>
</optional>
<choice>
<group>
<attribute name="when">
<ref name="date.type"/>
</attribute>
</group>
<group>
<attribute name="notBefore">
<ref name="date.type"/>
</attribute>
<attribute name="notAfter">
<ref name="date.type"/>
</attribute>
</group>
<group>
<attribute name="notAfter">
<ref name="date.type"/>
</attribute>
</group>
<group>
<attribute name="notBefore">
<ref name="date.type"/>
</attribute>
</group>
</choice>
<text/>
<!--
<data type="string">
<param name="pattern">-?[0-9]{4}</param>
</data>
-->
</element>
</define>
<define name="id-att" combine="choice">
<!-- Ne pas toucher pour que ça marche avec teibook.rng -->
<attribute name="xml:id">
<a:documentation>Identifiant, au moins unique pour le document.</a:documentation>
<data type="ID"/>
</attribute>
</define>
<define name="date.type">
<data type="string">
<param name="pattern">([0-9]{4}(-[0-9]{2}(-[0-9]{2})?)?)?</param>
</data>
</define>
<define name="lang-att" combine="choice">
<attribute name="xml:lang">
<a:documentation>Code normalisé de langue.</a:documentation>
</attribute>
</define>
<define name="teiHeader.p">
<element name="p">
<a:documentation>Paragraphe de texte enrichi</a:documentation>
<ref name="teiHeader.flow"/>
</element>
</define>
<define name="teiHeader.hi">
<element name="hi">
<attribute name="rend">
<choice>
<value>sub</value>
<value>sup</value>
<value>sc</value>
<value>i</value>
</choice>
</attribute>
<text/>
</element>
</define>
<define name="teiHeader.num">
<element name="num">
<zeroOrMore>
<choice>
<text/>
<element name="hi">
<attribute name="rend">
<value>sup</value>
</attribute>
<text/>
</element>
</choice>
</zeroOrMore>
</element>
</define>
<define name="teiHeader.flow">
<a:documentation>Texte riche contrôlé, par exemple dans un titre</a:documentation>
<zeroOrMore>
<choice>
<text/>
<ref name="teiHeader.author"/>
<element name="date">
<text/>
</element>
<ref name="teiHeader.hi"/>
<ref name="publisher"/>
<element name="ref">
<attribute name="target"/>
<text/>
</element>
<ref name="teiHeader.num"/>
<element name="title">
<zeroOrMore>
<choice>
<text/>
<ref name="teiHeader.hi"/>
</choice>
</zeroOrMore>
<ref name="pers.cont"/>
</element>
</choice>
</zeroOrMore>
</define>
</div>
<div xml:id="optional">
<a:documentation>teibookHeader optionnel</a:documentation>
<define name="editor">
<element name="editor">
<a:documentation>Auteurs(s) secondaires, forme normalisée (éditeur dans le cas d’une édition de texte)</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/contributor" target="dc">dc:contributor</a>></li>
</ul>
<optional>
<attribute name="role">
<choice>
<value>translator</value>
<text/>
</choice>
</attribute>
</optional>
<optional>
<ref name="key"/>
</optional>
<ref name="pers.cont"/>
</element>
</define>
<define name="publicationStmt.optional">
<optional>
<element name="address">
<a:documentation>Adresse postale de l'éditeur du texte</a:documentation>
<oneOrMore>
<element name="addrLine">
<text/>
</element>
</oneOrMore>
</element>
</optional>
<optional>
<element name="distributor">
<a:documentation>À renseigner si différent du "publisher"</a:documentation>
<text/>
</element>
</optional>
</define>
<!-- NB : comme pour publicationStmt, factorisation fileDesc-sourceDesc pénible
cf URL / ISSN, mapping dc:isPartOf, impossibilité de typer finerment idno -->
<define name="seriesStmt">
<element name="seriesStmt">
<a:documentation>Informations sur la collection électronique ou imprimée</a:documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p><a:el>seriesStmt</a:el> décrit la relation à une collection :</p>
<ul>
<li>URI et n° de volume pour le fichier TEI</li>
<li>ISSN et n° de volume pour le volume numérisé (voir <a:el>sourceDesc</a:el>)</li>
</ul>
</div>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/idPartOf" target="dc">dc:isPartOf</a>> relation à un parent (pour le fichier TEI seulement)</li>
</ul>
<optional>
<attribute name="n"/>
</optional>
<optional>
<ref name="id-att"/>
</optional>
<ref name="series.title"/>
<optional>
<ref name="series.idno"/>
</optional>
<optional>
<ref name="series.vol"/>
</optional>
</element>
</define>
<define name="series.title">
<element name="title">
<a:documentation>Titre de la collection</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/410.htm" target="unim">Unimarc, zone 410, $t</a> : appartient à la collection, titre</li>
</ul>
<optional>
<ref name="id-att"/>
</optional>
<optional>
<attribute name="ref">
<a:documentation>Identifiant Sudoc PPN de la notice de collection imprimée</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/410.htm" target="unim">Unimarc, zone 410, $0</a> : appartient à la collection, PPN de la notice de collection</li>
</ul>
</attribute>
</optional>
<ref name="teiHeader.flow"/>
</element>
</define>
<define name="series.idno">
<element name="idno">
<a:documentation>Identifiant de la collection</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/410.htm" target="unim">Unimarc, zone 410, $x</a> : appartient à la collection, ISSN</li>
</ul>
<attribute name="type">
<choice>
<value>URI</value>
<a:documentation>pour la collection électronique (fileDesc)</a:documentation>
<value>ISSN</value>
<a:documentation>pour la collection imprimée (sourceDesc)</a:documentation>
</choice>
</attribute>
<text/>
</element>
</define>
<define name="series.vol">
<element name="biblScope">
<a:documentation>Numéro de volume</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/410.htm#$v" target="unim">Unimarc, zone 410, $v</a> : appartient à la collection, numéro de volume</li>
</ul>
<attribute name="type">
<value>vol</value>
</attribute>
<data type="integer"/>
</element>
</define>
<define name="notesStmt">
<element name="notesStmt">
<a:documentation>Informations complémentaires sur le texte électronique. Une note de type “abstract” permettent d’inscrire : résumé, liens à des images, liens à d'autres notices de référence pour le même texte</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/title" target="dc">dc:description</a>></li>
<li><a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/033.htm" target="unim">Unimarc, zone 033</a></li>
<li>voir aussi <a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/001.htm">zone 001 (id ppn)</a></li>
</ul>
<a:example>
<notesStmt>
<note type="abstract">
<p>Résumé du texte reproduit</p>
<graphic rend="cover" url="cover.jpg"/>
<ref type="worldcat" n="762566493" target="http://www.worldcat.org/oclc/762566493"/>
</note>
</notesStmt>
</a:example>
<oneOrMore>
<element name="note">
<attribute name="type">
<choice>
<value>abstract</value>
<value>image</value>
<value>ref</value>
<data type="NCName"/>
</choice>
</attribute>
<optional>
<ref name="lang-att"/>
</optional>
<zeroOrMore>
<choice>
<ref name="teiHeader.p"/>
<element name="graphic">
<attribute name="rend">
<choice>
<value>cover</value>
<a:documentation>couverture</a:documentation>
<text/>
</choice>
</attribute>
<attribute name="url">
<data type="anyURI"/>
</attribute>
</element>
<element name="ref">
<attribute name="type">
<choice>
<value>ppn</value>
<a:documentation>id Sudoc</a:documentation>
<value>worldcat</value>
<a:documentation>id Worldcat</a:documentation>
<!-- NB : la zone unimarc 34 renseigne le numéro de la notice dans le catalogue WorldCat -->
<data type="NCName"/>
</choice>
</attribute>
<optional>
<attribute name="n"/>
</optional>
<attribute name="target">
<data type="anyURI"/>
</attribute>
<text/>
</element>
</choice>
</zeroOrMore>
</element>
</oneOrMore>
</element>
</define>
<define name="editionStmt">
<element name="editionStmt">
<a:documentation>Mentions de responsabilité pour le fichier XML/TEI</a:documentation>
<a:example>
<editionStmt>
<edition>Algone</edition>
<respStmt>
<name xml:id="FG" ref="[email protected]">Frédéric Glorieux</name>
<resp>2012 – Encodage TEI</resp>
</respStmt>
<respStmt>
<name xml:id="VJ" ref="[email protected]">Vincent Jolivet</name>
<resp>2012 – Encodage TEI</resp>
</respStmt>
</editionStmt>
</a:example>
<element name="edition">
<a:documentation>"Décrit les particularités de l’édition d’un texte." (Guidelines) ???</a:documentation>
<ref name="teiHeader.flow"/>
</element>
<zeroOrMore>
<element name="principal">
<a:documentation>Responsable de l'édition électronique</a:documentation>
<ref name="resp.cont"/>
</element>
</zeroOrMore>
<zeroOrMore>
<element name="funder">
<a:documentation>Financeur du projet</a:documentation>
<ref name="teiHeader.flow"/>
</element>
</zeroOrMore>
<zeroOrMore>
<ref name="respStmt"/>
</zeroOrMore>
</element>
</define>
<define name="respStmt">
<element name="respStmt">
<a:documentation>Mention de responsabilité</a:documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>Personne ayant une responsabilité dans l'élaboration du texte électronique.<br/>
Ne pas mettre ici l'auteur ou l'éditeur de l'œuvre originale (<a:el>titleStmt</a:el>), mais uniquement les personnes responsables de la numérisation.</p>
<!-- pb de la place de l’email, cf pattern resp.atts : utilisation un peu limite de @ref au regard des guidelines : http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-att.canonical.html -->
</div>
<interleave>
<element name="name">
<a:documentation>Nom de l’intervenant sur le fichier XML/TEI</a:documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>L’attribut <a:att>ref</a:att> renseigne le mail de la personne et l’identifie.<br/>
Inscrire les initiales en valeur de @xml:id (comme cible de liens, par exemple dans la liste des modifications <a:el>change</a:el>).</p>
</div>
<ref name="resp.cont"/>
</element>
<element name="resp">
<a:documentation>Date et rôle dans l’établissement du texte</a:documentation>
<ref name="teiHeader.flow"/>
</element>
</interleave>
</element>
</define>
<define name="resp.cont">
<optional>
<ref name="id-att"/>
</optional>
<optional>
<!-- identification vers un email ET NON un référentiel type idRef, comme pour normalized.author // TODO revoir cette logique avec Fréd. -->
<!-- NB : Erreur TEI potentielle : @ref n’est pas autorisé dans <principal> qui appelle pourtant le pattern... -->
<attribute name="ref"/>
</optional>
<zeroOrMore>
<choice>
<text/>
<element name="affiliation">
<a:documentation>Affilation de l’intervenant</a:documentation>
<optional>
<attribute name="ref">
<data type="anyURI"/>
</attribute>
</optional>
<text/>
</element>
<element name="email"><!-- Le format défini dans la RFC 2822 : http://tools.ietf.org/html/rfc2822 -->
<text/>
</element>
</choice>
</zeroOrMore>
</define>
<define name="revisionDesc">
<element name="revisionDesc">
<a:documentation>Historique des révisions du fichier</a:documentation>
<oneOrMore>
<element name="change">
<a:documentation>Date et nature de la modification</a:documentation>
<a:example>
<revisionDesc>
<change when="2012-01-08" who="#FG">Balisage des entités nommées</change>
</revisionDesc>
</a:example>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>L’identifiant du responsable de la modification (<a:att>who</a:att>) doit pointer vers <code>fileDesc/editionStmt/respStmt/name/@xml:id</code></p>
</div>
<attribute name="who">
<a:documentation>Identifiant du responsable de la modification</a:documentation>
</attribute>
<attribute name="when">
<a:documentation>Date de la modification, forme normalisée : AAAA((-MM)?-JJ)?</a:documentation>
<ref name="date.type"/>
</attribute>
<ref name="teiHeader.flow"/>
</element>
</oneOrMore>
</element>
</define>
<define name="extent">
<element name="extent">
<a:documentation>Description quantitative du fichier</a:documentation>
<choice>
<oneOrMore>
<element name="measure">
<attribute name="unit">
<a:documentation>Unité de mesure</a:documentation>
<choice>
<value>page</value>
<value>paragraph</value>
<value>word</value>
<value>character</value>
</choice>
</attribute>
<attribute name="quantity">
<data type="integer"/>
</attribute>
</element>
</oneOrMore>
<text/>
</choice>
</element>
</define>
<define name="textClass">
<element name="textClass">
<a:documentation>Description du texte par mots-clés</a:documentation>
<a:example>
<textClass>
<keywords scheme="http://data.bnf.fr/liste-rameau">
<term type="subject" key="http://data.bnf.fr/ark:/12148/cb133199588">Langages de balisage</term>
<term type="subject" key="http://data.bnf.fr/ark:/12148/cb131774360">XML (langage de balisage)</term>
</keywords>
<keywords scheme="http://id.loc.gov/authorities/subjects.html">
<term type="subject" key="http://id.loc.gov/authorities/subjects/sh95002796">Document markup languages</term>
<term type="subject" key="http://id.loc.gov/authorities/subjects/sh97007825">XML (Document markup language)</term>
</keywords>
</textClass>
</a:example>
<oneOrMore>
<ref name="keywords"/>
</oneOrMore>
</element>
</define>
<define name="keywords">
<element name="keywords">
<a:documentation>Groupe de mots-clés sujet issus d’un même thésaurus (taxonomie)</a:documentation>
<optional>
<attribute name="scheme">
<a:documentation>Désigne le thésaurus des mots-clés utilisés (définition locale ou URI)</a:documentation>
<text/>
</attribute>
</optional>
<oneOrMore>
<ref name="textClass.term"/>
</oneOrMore>
</element>
</define>
<define name="textClass.term">
<element name="term">
<a:documentation>Mot-clé d’indexation</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/subject" target="dc">dc:subject</a>></li>
<li>Unimarc, notamment les zones <a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/606.htm" target="unim">606 $a et $3</a>, <a href="http://documentation.abes.fr/sudoc/formats/unmb/zones/607.htm">607 $a et $3</a></li>
</ul>
<optional>
<attribute name="type">
<!-- pas top : reprise des lexiques rameau pour coller à ta logique dans l’exemple. -->
<choice>
<value>subject</value>
<value>person</value>
<value>work</value>
<data type="Name"/>
</choice>
</attribute>
</optional>
<optional>
<attribute name="subtype">
<data type="Name"/>
</attribute>
</optional>
<optional>
<attribute name="key">
<a:documentation>Numéro de la notice d’autorité</a:documentation>
</attribute>
</optional>
<!-- faut-il du contenu un peu plus riche ? -->
<text/>
</element>
</define>
<define name="encodingDesc">
<element name="encodingDesc">
<a:documentation>Documentation technique de l'encodage (relation d'un texte électronique avec sa ou ses sources)</a:documentation>
<choice>
<oneOrMore>
<ref name="teiHeader.p"/>
</oneOrMore>
<group>
<optional>
<element name="projectDesc">
<a:documentation>Description scientifique du projet.</a:documentation>
<ul xmlns="http://www.w3.org/1999/xhtml">
<li><<a href="http://purl.org/dc/terms/description" target="dc">dc:description</a>></li>
</ul>
<oneOrMore>
<ref name="teiHeader.p"/>
</oneOrMore>
</element>
</optional>
<optional>
<element name="samplingDecl">
<a:documentation>Etendue numérisée de la source (pour préciser par ex. les pages de la source non reprises dans le fichier, et pourquoi)</a:documentation>
<oneOrMore>
<ref name="teiHeader.p"/>
</oneOrMore>
</element>
</optional>
<optional>
<element name="editorialDecl">
<a:documentation>Corrections apportées au document source.</a:documentation>
<oneOrMore>
<ref name="teiHeader.p"/>
</oneOrMore>
</element>
</optional>
<!-- TODO Documenter cet usage de tagsDecl ; cf apologie métier historien -->
<optional>
<element name="tagsDecl">