-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmerveilles17.html
3424 lines (3297 loc) · 222 KB
/
merveilles17.html
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"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
<style type="text/css">
/* keep file XML valid, maybe included by xsl:document() */
/*
Copyright © 2004-2017 Frédéric Glorieux
license : APACHE 2.0 http://www.apache.org/licenses/LICENSE-2.0
<frederic.glorieux@fictif.org>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/*
Classes for documented XML files by xmldoc transformations
*/
section, nav, article, aside, hgroup, header, footer, figure, figcaption {
display: block;
}
* {
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/** Fonts */
body.xmldoc, table.facs caption {
background: #FFFFFF;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
margin: 0;
}
body.item {
padding: 2em;
}
body.nav {
padding: 0;
margin: 1ex;
}
body.xmldoc #nav, body.xmldoc #header {
font-family: Arial, sans-serif;
font-size: smaller;
}
/** simple HTML, with body class protection if css imported (in html tagname order) */
body.xmldoc a {
color: #226;
text-decoration: none;
}
body.xmldoc a:hover {
text-decoration: underline;
}
body.xmldoc fieldset {
margin: 1em 0 1ex 0;
padding: 0 1ex 0 1ex;
border: 1px dotted #363;
-moz-border-radius: 1ex;
-webkit-border-radius: 1ex;
white-space: normal;
}
body.xmldoc p {}
body.xmldoc h1 {
text-align: center;
line-height: 105%;
}
body.xmldoc h3 {
border-bottom: 1px solid #336699;
padding-left: 1em;
margin-top: 2em;
margin-bottom: 1em;
}
body.xmldoc table {
font-size: inherit;
}
/* Global layout */
html {
height: 100%;
}
body.xmldoc {
position: relative;
}
body.xmldoc #article {
padding: 0;
margin: 3ex 5em 5em 30%;
min-height: 500px;
}
body.xmldoc #header {
position: absolute;
top: 0;
left: 0;
right: 0;
padding: 0 1ex;
}
body.xmldoc #footer {
position: absolute;
bottom: -1px;
left: 0;
right: 0;
padding: 0 1ex;
}
/* need container with position :relative */
body.xmldoc #footer img {
margin: -4px;
}
body.xmldoc #nav {
top: 0;
position: fixed;
padding: 0 3px 2em 11px;
height: 100%;
overflow: auto;
width: 27%;
color: black;
margin: 0 0 0 0;
border-right: solid 1px #b3b3b3;
}
body.xmldoc #nav header, body.nav header {
padding: 1ex 0;
font-style: normal;
font-weight: bold;
}
.index div {
line-height: 100%;
margin: 0.8ex 0;
}
/** generic classes */
.pre {
white-space: pre-wrap;
}
.tree ul {
padding: 0;
margin: 0;
padding-left: 1em;
}
body.xmldoc ul.tree ul {
padding-left: 1ex;
margin-left: 1em;
}
/* xml2html.xsl, documented XML source */
.example {
background-color: #FFFFFF;
background-image: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#F8F8F8));
background-image: -webkit-linear-gradient(left, #FFFFFF, #F8F8F8);
background-image: -moz-linear-gradient(left, #FFFFFF, #F8F8F8);
background-image: -ms-linear-gradient(left, #FFFFFF, #F8F8F8);
background-image: -o-linear-gradient(left, #FFFFFF, #F8F8F8);
background-image: linear-gradient(left, #FFFFFF, #F8F8F8);
border-left: 1px dotted #808080;
padding: 1ex 1em;
margin: 0;
}
.xml {
line-height: 105%;
text-align: left;
}
.xml a {
text-decoration: none;
border-bottom: none;
border: none;
padding: 0;
}
.xml a.val {
color: #0000FF;
}
.xml a.val:hover {
text-decoration: underline;
border: none;
}
a.xsl {
color: #669966;
font-weight: 100;
}
a:hover.xsl, a:hover.rdf {
background: #0000FF;
color: white;
}
a.html, a.dc {
color: #FF0000;
font-weight: bold;
}
a:hover.html, a:hover.dc, a:hover.template {
background: red;
color: white;
}
a.template {
font-family: Verdana, arial, sans-serif;
font-weight: bold;
}
.xml .el, .xml a.el {
font-weight: bold;
font-family: "Lucida Console", Courier, "MS Courier New", monospace;
text-decoration: none;
color: #040;
border: none;
}
.xml a:hover.el, .xml a:hover.att {
background: #8080FF;
color: #FFFFFF;
}
.xml .att {
font-family: Arial, sans-serif;
font-weight: 100;
}
.xml a.att {
font-family: Arial, sans-serif;
color: #444;
}
.xml .open, .xml .close, .xml .tag {
margin: 0;
font-family: monospace, sans-serif;
color: #383;
}
.xml .fold {
color: #666666;
}
.xml .pi {
color: #008000;
font-weight: bold;
}
.xml .val, .xml .cdata {
font-weight: normal;
margin: 0;
padding: 0;
}
.xmlcomment, .xmlcomment code {
font-size: 12px;
line-height: 125%;
background: #FFE;
color: #666;
}
pre.xmlcomment {
margin: 0;
padding: 0 1em;
}
.xmlcomment {
font-family: monospace;
color: #000;
}
fieldset.xmlcomment pre {
color: #008;
}
div.xmlcomment {
white-space: normal;
}
dd.xmlcode {
margin: 0 !important;
padding: 0 !important;
padding-left: 1em !important;
border-left: 1px dotted #808080;
}
.pre .xmltext {
background: #EEF;
font-family: serif;
color: #000;
}
.xml, .xml .val, .xml .cdata {
color: #444;
}
.xml .cdata {
color: red
}
.xml .ns {
color: #000080;
font-weight: 100;
}
dt {
font-weight: bold;
}
dl.xml {
margin: 0;
padding: 0;
}
dl.xml dt {
font-weight: normal;
}
details.source {
margin-left: 1em;
float: right;
max-width: 60%;
background: #FFFFFF;
}
details.source summary {
float: right;
display: inline;
text-align: right;
}
details>* {
display: none;
}
details.minus>* {
display: block;
}
/** Relax-NG */
section.attribute {
margin-top: 1em;
}
section.define, section.element {
margin-top: 2em;
}
section.rng {
margin: 2em 0 0 0;
}
section.rng section.rng header {
padding-left: 2em;
}
section.rng section.rng section.rng header {
padding-left: 4em;
}
section.rng section.rng section.rng section.rng header {
padding-left: 6em;
}
header.rng {
font-size: 110%;
margin-bottom: 1ex;
padding: 0;
border: none;
}
header.rng a {
color: #77A;
font-weight: bold;
}
header.attribute {
color: #666;
}
/* entry in a table */
table.grammar {
background-color: #F8F8F8;
background-image: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#F8F8F8));
background-image: -webkit-linear-gradient(left, #FFFFFF, #F8F8F8);
background-image: -moz-linear-gradient(left, #FFFFFF, #F8F8F8);
background-image: -ms-linear-gradient(left, #FFFFFF, #F8F8F8);
background-image: -o-linear-gradient(left, #FFFFFF, #F8F8F8);
background-image: linear-gradient(left, #FFFFFF, #F8F8F8);
border-collapse: collapse;
width: 100%;
line-height: 105%;
border-left: 1px dotted #808080;
margin-bottom: 1em;
}
table.grammar tt, table.grammar em {
color: #000;
}
table.grammar td {
padding: 0.5ex 1ex;
line-height: 1.1em;
border-bottom: 1px dotted #999999;
vertical-align: top;
}
table.grammar th {
font-family: Helvetica, Arial, "DejaVu Sans Light ", sans-serif;
font-size: 12px;
width: 10ex;
vertical-align: top;
padding: 0.5ex 1ex;
background: #DADADA;
border-bottom: 1px solid #FFFFFF;
font-weight: normal;
}
table.attributes td {
padding: 0 0.2ex;
line-height: 100%;
border: none;
}
table.attributes td.name {
text-align: right;
}
.xmldoc a.required {
color: #000;
font-weight: bold;
}
.grammar a {
font-family: Helvetica, Arial, "DejaVu Sans Light ", sans-serif;
color: #315BA7;
border: none;
}
.grammar a.define, .grammar a.ref {
color: #000;
font-style: italic;
font-family: serif;
}
td.children div, td.usage div {
display: inline
}
p.cf {
margin-top: 0;
}
/* att values */
ul.values {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
margin-bottom: 0;
}
.value {
color: #000;
}
.value div.documentation {
font-style: italic
}
/* hide/show macro compact view */
.grammar a.toggle {
color: #000;
cursor: pointer;
}
a.toggle:hover {
text-decoration: none !important;
background: #336699;
color: #FFFFFF;
}
span.more span.refin {
display: none;
}
span.less span.refin {
display: block;
}
span.less span.more span.refin {
display: none;
}
span.refin {
margin-left: 0.5ex;
border-left: 1px dotted #888;
padding-left: 2ex;
}
div.compact {
padding-left: 1ex;
}
div.compact ul {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
/* image example */
table.facs {
font-family: serif;
margin-top: 2em;
margin-bottom: 2em;
border: 1px dotted #808080;
padding-left: 2em;
padding-right: 2em;
}
table.facs td {
vertical-align: top;
}
table.facs caption {
background: #DADADA;
}
table.facs p {
margin-top: 2ex;
margin-bottom: 2ex;
}
/** xsl2html.xsl, documented transformation */
.transform a {
border: none;
}
.match p, .result p {
text-indent: 1em;
line-height: 110%;
margin: 0 0 0.5ex 0;
}
.xsl-var {
margin-top: 1ex;
}
.output {
color: #961716;
font-family: "Lucida Console", Courier, "MS Courier New", monospace;
font-size: 13px;
line-height: 110%;
text-indent: 0;
text-align: left;
}
.template {
margin: 1em 0 0 0;
clear: both;
}
.template header {
border: none;
padding: 0;
border-bottom: #888 1px solid;
}
/* PHP code */
a.function, .php b.construct, .php var {
font-family: Frutiger, "Deja Vu Sans", Helvetica, sans-serif;
}
pre.php {
white-space: pre-wrap;
font-size: 14px;
color: red;
}
code.function {
color: #A82C37;
}
span.function {
font-family: Frutiger, "Deja Vu Sans", Helvetica, sans-serif;
color: #000;
}
a.function:hover {
text-decoration: underline;
}
.php b.construct {
color: #000;
}
code.string {
color: #060;
}
code.integer {
color: #FF0000;
font-weight: bold;
}
code.php-tag {
color: #FF0000;
}
code.numeric {
color: #FF0000;
font-weight: bold;
}
code.constant {
color: #000000;
}
tt.op {
background: none repeat scroll 0 0 #EEEEEE;
color: #000000;
}
code.defined {
color: red;
}
code.whitespace {
white-space: pre;
}
code.curly {
background: none repeat scroll 0 0 #FFAAAA;
}
code.parenthese {
background: none repeat scroll 0 0 #AAFFAA;
}
code.square {
background: none repeat scroll 0 0 #AAAAFF;
}
code.error-control {
background: none repeat scroll 0 0 #FF0000;
font-weight: bold;
}
@media print {
#nav {
display: none;
}
#article {
margin: 0px !important;
padding: 0px;
}
table.grammar td, table.grammar th {
border: 1px dotted #808080;
}
}
/* keep file XML valid, maybe included by xsl:document() */
</style>
</head>
<body class="xmldoc rng">
<nav id="nav">
<p> </p>
<a style="font-weight:bold; color:#000000;" href="#idm1">Documentation</a>
<section>
<div style="margin-left:1em;">
<a style="font-weight:bold; color:#000000;" href="#idm4">Structure</a>
</div>
<div><a href="#el_TEI"><TEI></a> <a href="#el_text"><text></a> <a href="#el_sourceDoc"><sourceDoc></a> <a href="#el_teiHeader"><teiHeader></a> <a href="#el_date"><date></a> <a href="#el_idno"><idno></a> <a href="#el_author"><author></a> <a href="#el_editor"><editor></a> <a href="#el_respStmt_2"><respStmt></a> <a href="#el_pubPlace"><pubPlace></a> <a href="#el_publisher_2"><publisher></a> <a href="#el_msDesc"><msDesc></a> <a href="#el_msIdentifier"><msIdentifier></a> <a href="#el_msContents"><msContents></a> <a href="#el_physDesc"><physDesc></a> <a href="#el_textClass"><textClass></a> <a href="#el_abstract"><abstract></a> <a href="#el_body"><body></a> <a href="#el_front"><front></a> <a href="#el_div"><div></a> <a href="#el_byline"><byline></a> <a href="#el_dateline"><dateline></a> <a href="#el_titlePage"><titlePage></a> <a href="#el_trailer"><trailer></a> </div>
<div style="margin-left:1em;">
<a style="font-weight:bold; color:#000000;" href="#idm358">“Points” (insérables entre des caractères, entre des paragraphes)</a>
</div>
<div><a href="#el_pb"><pb></a> <a href="#el_ptr_2"><ptr<small class="att"> type="include"</small>></a> </div>
<div style="margin-left:1em;">
<a style="font-weight:bold; color:#000000;" href="#idm382">Blocs (niveau paragraphe)</a>
</div>
<div><a href="#el_bibl_2"><bibl></a> <a href="#el_figure"><figure></a> <a href="#el_head"><head></a> <a href="#el_l"><l></a> <a href="#el_lg"><lg></a> <a href="#el_label"><label></a> <a href="#el_list"><list></a> <a href="#el_p"><p></a> <a href="#el_signed"><signed></a> <a href="#el_stage"><stage></a> </div>
<div style="margin-left:1em;">
<a style="font-weight:bold; color:#000000;" href="#idm545">Segments (niveau caractère)</a>
</div>
<div><a href="#el_date_2"><date></a> <a href="#el_emph"><emph></a> <a href="#el_foreign"><foreign></a> <a href="#el_graphic"><graphic></a> <a href="#el_lb"><lb></a> <a href="#el_name"><name></a> <a href="#el_note_2"><note></a> <a href="#el_persName"><persName></a> <a href="#el_placeName"><placeName></a> <a href="#el_ref"><ref></a> <a href="#el_orgName"><orgName></a> <a href="#el_seg"><seg></a> <a href="#el_hi"><hi<small class="att"> rend="sup"</small>></a> <a href="#el_hi_2"><hi<small class="att"> rend="sc"</small>></a> <a href="#el_title"><title></a> <a href="#el_tech"><tech></a> </div>
<div style="margin-left:1em;">
<a style="font-weight:bold; color:#000000;" href="#idm753">Attributs et types de données</a>
</div>
<div/>
</section>
<section class="index"><header>Éléments (99)</header><div><b>A</b>. <<a href="#el_abstract">abstract</a>> <<a href="#el_author">author</a>> <<a href="#el_availability">availability<small class="att"> status="restricted"</small></a>> </div> <div><b>B</b>. <<a href="#el_bibl">bibl</a>> <<a href="#el_bibl_2">bibl</a>> <<a href="#el_body">body</a>> <<a href="#el_byline">byline</a>> </div> <div><b>C</b>. <<a href="#el_classCode">classCode</a>> <<a href="#el_collection">collection</a>> <<a href="#el_country">country</a>> <<a href="#el_creation">creation</a>> </div> <div><b>D</b>. <<a href="#el_date">date</a>> <<a href="#el_date_2">date</a>> <<a href="#el_dateline">dateline</a>> <<a href="#el_depth">depth</a>> <<a href="#el_dimensions">dimensions</a>> <<a href="#el_div">div</a>> <<a href="#el_docDate">docDate</a>> <<a href="#el_docImprint">docImprint</a>> <<a href="#el_docTitle">docTitle</a>> </div> <div><b>E</b>. <<a href="#el_edition">edition="Merveilles17"</a>> <<a href="#el_editionStmt">editionStmt</a>> <<a href="#el_editor">editor</a>> <<a href="#el_emph">emph</a>> <<a href="#el_event">event</a>> <<a href="#el_extent">extent</a>> </div> <div><b>F</b>. <<a href="#el_figDesc">figDesc</a>> <<a href="#el_figure">figure</a>> <<a href="#el_fileDesc">fileDesc</a>> <<a href="#el_foreign">foreign</a>> <<a href="#el_front">front</a>> </div> <div><b>G</b>. <<a href="#el_graphic">graphic</a>> </div> <div><b>H</b>. <<a href="#el_head">head</a>> <<a href="#el_height">height</a>> <<a href="#el_hi">hi<small class="att"> rend="sup"</small></a>> <<a href="#el_hi_2">hi<small class="att"> rend="sc"</small></a>> </div> <div><b>I</b>. <<a href="#el_idno">idno</a>> <<a href="#el_idno_2">idno</a>> <<a href="#el_imprimatur">imprimatur</a>> <<a href="#el_institution">institution</a>> <<a href="#el_item">item</a>> </div> <div><b>L</b>. <<a href="#el_l">l</a>> <<a href="#el_label">label</a>> <<a href="#el_langUsage">langUsage</a>> <<a href="#el_language">language</a>> <<a href="#el_lb">lb</a>> <<a href="#el_lg">lg</a>> <<a href="#el_lg_2">lg</a>> <<a href="#el_licence">licence</a>> <<a href="#el_list">list</a>> <<a href="#el_listEvent">listEvent</a>> <<a href="#el_locus">locus</a>> </div> <div><b>M</b>. <<a href="#el_msContents">msContents</a>> <<a href="#el_msDesc">msDesc</a>> <<a href="#el_msIdentifier">msIdentifier</a>> <<a href="#el_msItem">msItem</a>> </div> <div><b>N</b>. <<a href="#el_name">name</a>> <<a href="#el_note">note</a>> <<a href="#el_note_2">note</a>> <<a href="#el_notesStmt">notesStmt</a>> </div> <div><b>O</b>. <<a href="#el_objectDesc">objectDesc</a>> <<a href="#el_orgName">orgName</a>> </div> <div><b>P</b>. <<a href="#el_p">p</a>> <<a href="#el_pb">pb</a>> <<a href="#el_persName">persName</a>> <<a href="#el_physDesc">physDesc</a>> <<a href="#el_placeName">placeName</a>> <<a href="#el_profileDesc">profileDesc</a>> <<a href="#el_ptr">ptr</a>> <<a href="#el_ptr_2">ptr<small class="att"> type="include"</small></a>> <<a href="#el_pubPlace">pubPlace</a>> <<a href="#el_publicationStmt">publicationStmt</a>> <<a href="#el_publisher">publisher</a>> <<a href="#el_publisher_2">publisher</a>> </div> <div><b>R</b>. <<a href="#el_ref">ref</a>> <<a href="#el_repository">repository</a>> <<a href="#el_resp">resp</a>> <<a href="#el_resp_2">resp</a>> <<a href="#el_respStmt">respStmt</a>> <<a href="#el_respStmt_2">respStmt</a>> </div> <div><b>S</b>. <<a href="#el_seg">seg</a>> <<a href="#el_settlement">settlement</a>> <<a href="#el_signed">signed</a>> <<a href="#el_sourceDesc">sourceDesc</a>> <<a href="#el_sourceDoc">sourceDoc</a>> <<a href="#el_stage">stage</a>> <<a href="#el_support">support</a>> <<a href="#el_supportDesc">supportDesc</a>> </div> <div><b>T</b>. <<a href="#el_TEI">TEI</a>> <<a href="#el_tech">tech</a>> <<a href="#el_teiHeader">teiHeader</a>> <<a href="#el_text">text</a>> <<a href="#el_textClass">textClass</a>> <<a href="#el_title">title</a>> <<a href="#el_titlePage">titlePage</a>> <<a href="#el_titlePart">titlePart</a>> <<a href="#el_titleStmt">titleStmt</a>> <<a href="#el_trailer">trailer</a>> </div> <div><b>W</b>. <<a href="#el_width">width</a>> </div> </section>
<section class="index"><header>Attributs</header><div><b>A</b>. @<a href="#att_ana">ana</a> </div> <div><b>F</b>. @<a href="#att_from">from</a> </div> <div><b>K</b>. @<a href="#att_key">key</a> </div> <div><b>N</b>. @<a href="#att_notAfter">notAfter</a> @<a href="#att_notBefore">notBefore</a> </div> <div><b>R</b>. @<a href="#att_rend">rend</a> @<a href="#att_rend_2">rend</a> </div> <div><b>T</b>. @<a href="#att_to">to</a> </div> <div><b>W</b>. @<a href="#att_when">when</a> </div> <div><b>X</b>. @<a href="#att_xml-id">xml:id</a> @<a href="#att_xml-lang">xml:lang</a> </div> </section>
<section class="index"><header>Macros</header><div><b>C</b>. <a href="#def_chars">chars</a>() </div> <div><b>D</b>. <a href="#def_date.type">date.type</a>() <a href="#def_div.content">div.content</a>() </div> <div><b>P</b>. <a href="#def_point">point</a>() </div> <div><b>R</b>. <a href="#def_rend.font">rend.font</a>() </div> </section>
<p> </p>
</nav>
<article id="article" class="grammar">
<section class="div" id="idm4">
<h2>Structure</h2>
<section class="element rng" id="el_TEI">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-TEI.html" target="TEI">TEI</a>> </header>
<table class="grammar">
<tr>
<th>Attributs</th>
<td>
<table class="attributes">
<tr>
<td class="name">@<a class="required" href="#att_xml-lang">xml:lang</a></td>
<td/>
<td><span class="compact choice">( <span class="value">es</span> | <span class="value">fr</span> | <span class="value">it</span> | <span class="value">la</span> )</span><br/>Code normalisé de langue</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>Enfants</th>
<td class="children"><div><b>S</b>. <<a href="#el_sourceDoc">sourceDoc</a>> </div> <div><b>T</b>. <<a href="#el_teiHeader">teiHeader</a>> <<a href="#el_text">text</a>> </div> </td>
</tr>
<tr>
<th>Modèle</th>
<td class="model">
<span class="compact element"> <a href="#el_teiHeader">teiHeader</a><span class="compact choice"> ( <a href="#el_text">text</a> | <a href="#el_sourceDoc">sourceDoc</a> )</span></span>
</td>
</tr>
<tr>
<th>Parents</th>
<td class="usage">start. </td>
</tr>
</table>
</section>
<section class="element rng" id="el_text">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-text.html" target="TEI">text</a>> </header>
<table class="grammar">
<tr>
<th>Enfants</th>
<td class="children"><div><b>B</b>. <<a href="#el_body">body</a>> </div> <div><b>F</b>. <<a href="#el_front">front</a>> </div> </td>
</tr>
<tr>
<th>Modèle</th>
<td class="model">
<span class="compact element"><a href="#el_front">front</a> ? <a href="#el_body">body</a></span>
</td>
</tr>
<tr>
<th>Parents</th>
<td class="usage"><div><b>T</b>. <<a href="#el_TEI">TEI</a>> </div> </td>
</tr>
</table>
</section>
<section class="element rng" id="el_sourceDoc">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-sourceDoc.html" target="TEI">sourceDoc</a>> Document image où le texte est accessoire (ex : devise)</header>
<table class="grammar">
<tr>
<th>Enfants</th>
<td class="children"><div><b>F</b>. <<a href="#el_figure">figure</a>> </div> </td>
</tr>
<tr>
<th>Modèle</th>
<td class="model"><a href="#el_figure">figure</a> + </td>
</tr>
<tr>
<th>Parents</th>
<td class="usage"><div><b>T</b>. <<a href="#el_TEI">TEI</a>> </div> </td>
</tr>
</table>
</section>
<figure class="xml example" id="ex_1">
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_teiHeader">teiHeader</a>></dt>
<dd class="xmlcode">
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_fileDesc">fileDesc</a>></dt>
<dd class="xmlcode">
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_titleStmt">titleStmt</a>></dt>
<dd class="xmlcode">
<div class="xmlblock "><span class="open"><<a class="el" href="#el_title">title</a>></span>Les Plaisirs de l'île enchantée<span class="close"></<a class="el" href="#el_title">title</a>></span></div>
<div class="xmlblock "><span class="open"><<a class="el" href="#el_author">author</a> <b class="att">key</b>="<code class="val">code (cf. /index/personne.tsv)</code>"></span>Auteur du texte<span class="close"></<a class="el" href="#el_author">author</a>></span></div>
<div class="xmlblock "><span class="open"><<a class="el" href="#el_editor">editor</a> <b class="att">key</b>="<code class="val">code (cf. /index/personne.tsv)</code>"></span>Autre contributeur<span class="close"></<a class="el" href="#el_editor">editor</a>></span></div>
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_respStmt">respStmt</a>></dt>
<dd class="xmlcode">
<div class="xmlblock "><span class="open"><<a class="el" href="#el_resp">resp</a>></span>Imprimeur<span class="close"></<a class="el" href="#el_resp">resp</a>></span></div>
<div class="xmlblock "><span class="open"><<a class="el" href="#el_persName">persName</a> <b class="att">key</b>="<code class="val">ballard</code>" <b class="att">role</b>="<code class="val">imprimeur</code>"></span>Ballard Robert<span class="close"></<a class="el" href="#el_persName">persName</a>></span></div>
</dd>
<dt class="close"></<a class="el" href="#el_respStmt">respStmt</a>></dt>
</dl>
</dd>
<dt class="close"></<a class="el" href="#el_titleStmt">titleStmt</a>></dt>
</dl>
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_editionStmt">editionStmt</a>></dt>
<dd class="xmlcode">
<div class="xmlblock "><span class="open"><<a class="el" href="#el_edition">edition</a>></span>Merveilles17<span class="close"></<a class="el" href="#el_edition">edition</a>></span></div>
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_respStmt">respStmt</a>></dt>
<dd class="xmlcode">
<div class="xmlblock "><span class="open"><<a class="el" href="#el_name">name</a>></span>Marine Roussillon<span class="close"></<a class="el" href="#el_name">name</a>></span></div>
<div class="xmlblock "><span class="open"><<a class="el" href="#el_resp">resp</a>></span>Transcription<span class="close"></<a class="el" href="#el_resp">resp</a>></span></div>
</dd>
<dt class="close"></<a class="el" href="#el_respStmt">respStmt</a>></dt>
</dl>
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_respStmt">respStmt</a>></dt>
<dd class="xmlcode">
<div class="xmlblock "><span class="open"><<a class="el" href="#el_name">name</a>></span>Yohann Deguin<span class="close"></<a class="el" href="#el_name">name</a>></span></div>
<div class="xmlblock "><span class="open"><<a class="el" href="#el_resp">resp</a>></span>Balisage<span class="close"></<a class="el" href="#el_resp">resp</a>></span></div>
</dd>
<dt class="close"></<a class="el" href="#el_respStmt">respStmt</a>></dt>
</dl>
</dd>
<dt class="close"></<a class="el" href="#el_editionStmt">editionStmt</a>></dt>
</dl>
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_publicationStmt">publicationStmt</a>></dt>
<dd class="xmlcode">
<div class="xmlblock "><span class="open"><<a class="el" href="#el_publisher">publisher</a>></span>Université d’Artois - Lille, MESHS<span class="close"></<a class="el" href="#el_publisher">publisher</a>></span></div>
<div class="xmlblock "><span class="open"><<a class="el" href="#el_date">date</a> <b class="att">when</b>="<code class="val">2019</code>"></span>2019<span class="close"></<a class="el" href="#el_date">date</a>></span></div>
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_availability">availability</a> <b class="att">status</b>="<code class="val">restricted</code>"></dt>
<dd class="xmlcode">
<div class="open "><<a class="el" href="#el_licence">licence</a> <b class="att">target</b>="<div class="val">https://creativecommons.org/licenses/by-sa/4.0/deed.fr</div>"/></div>
</dd>
<dt class="close"></<a class="el" href="#el_availability">availability</a>></dt>
</dl>
</dd>
<dt class="close"></<a class="el" href="#el_publicationStmt">publicationStmt</a>></dt>
</dl>
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_sourceDesc">sourceDesc</a>></dt>
<dd class="xmlcode">
<div class="xmlblock ">
<span class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_bibl">bibl</a>></span>
<span class="xmlmix"><div class="xmlcomment"><!--<code> La ligne bibliographique peut être ponctuée librement, elle doit comporter au moins un élément <note>, utilisé dans l’interface comme complément bibliographique au titre. </code>--></div><span class=""><span class="open"><<a class="el" href="#el_title">title</a>></span>Les Plaisirs de l'île enchantée : Course de bague, collation ornée de machines, comédie mêlée de danse et de musique, ballet du palais d'Alcine, feu d'artifice, et autres fêtes galantes et magnifiques, faites par le roi à Versailles, le 7 mai 1664<span class="close"></<a class="el" href="#el_title">title</a>></span></span>.
<div class="xmlcomment"><!--<code> Complément bibliographique libre (obligatoire, non répétable), pour une pièce d’archive </code>--></div><span class=""><span class="open"><<a class="el" href="#el_note">note</a>></span>Estampe, 27,6x42,3cm, Paris, BNF, Estampes, RESERVE QB-201 (46)-FOL, Hennin, 4209.<span class="close"></<a class="el" href="#el_note">note</a>></span></span><div class="xmlcomment"><!--<code> Imprimé (balisage facultatif) </code>--></div><span class=""><span class="open"><<a class="el" href="#el_note">note</a>></span><span class=""><span class="open"><<a class="el" href="#el_pubPlace">pubPlace</a>></span>Paris<span class="close"></<a class="el" href="#el_pubPlace">pubPlace</a>></span></span>, <span class=""><span class="open"><<a class="el" href="#el_publisher">publisher</a>></span>Ballard<span class="close"></<a class="el" href="#el_publisher">publisher</a>></span></span> – <span class=""><span class="open"><<a class="el" href="#el_date">date</a>></span>1664<span class="close"></<a class="el" href="#el_date">date</a>></span></span>.<span class="close"></<a class="el" href="#el_note">note</a>></span></span><div class="xmlcomment"><!--<code> Pointeur vers un original numérique (obligatoire, non répétable) </code>--></div><span class="open "><<a class="el" href="#el_ptr">ptr</a> <b class="att">target</b>="<code class="val">http://source.numérique</code>"/></span></span>
<span class="close"></<a class="el" href="#el_bibl">bibl</a>></span>
</div>
</dd>
<dt class="close"></<a class="el" href="#el_sourceDesc">sourceDesc</a>></dt>
</dl>
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_profileDesc">profileDesc</a>></dt>
<dd class="xmlcode">
<dl class="xml ">
<dt class="open"><a class="fold" tabindex="1"><</a><a class="el" href="#el_creation">creation</a>></dt>
<dd class="xmlcode">
<div class="xmlblock "><span class="open"><<a class="el" href="#el_date">date</a> <b class="att">when</b>="<code class="val">1673</code>"></span>1673<span class="close"></<a class="el" href="#el_date">date</a>></span></div>
</dd>
<dt class="close"></<a class="el" href="#el_creation">creation</a>></dt>
</dl>
</dd>
<dt class="close"></<a class="el" href="#el_profileDesc">profileDesc</a>></dt>
</dl>
</dd>
<dt class="close"></<a class="el" href="#el_fileDesc">fileDesc</a>></dt>
</dl>
</dd>
<dt class="close"></<a class="el" href="#el_teiHeader">teiHeader</a>></dt>
</dl>
</figure>
<section class="element rng" id="el_teiHeader">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-teiHeader.html" target="TEI">teiHeader</a>> </header>
<table class="grammar">
<tr>
<th>Enfants</th>
<td class="children"><div><b>F</b>. <<a href="#el_fileDesc">fileDesc</a>> </div> <div><b>P</b>. <<a href="#el_profileDesc">profileDesc</a>> </div> </td>
</tr>
<tr>
<th>Modèle</th>
<td class="model">
<span class="compact element"><a href="#el_fileDesc">fileDesc</a> <a href="#el_profileDesc">profileDesc</a></span>
</td>
</tr>
<tr>
<th>Parents</th>
<td class="usage"><div><b>T</b>. <<a href="#el_TEI">TEI</a>> </div> </td>
</tr>
</table>
<section class="element rng" id="el_fileDesc">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-fileDesc.html" target="TEI">fileDesc</a>> </header>
<table class="grammar">
<tr>
<th>Enfants</th>
<td class="children"><div><b>E</b>. <<a href="#el_editionStmt">editionStmt</a>> </div> <div><b>N</b>. <<a href="#el_notesStmt">notesStmt</a>> </div> <div><b>P</b>. <<a href="#el_publicationStmt">publicationStmt</a>> </div> <div><b>S</b>. <<a href="#el_sourceDesc">sourceDesc</a>> </div> <div><b>T</b>. <<a href="#el_titleStmt">titleStmt</a>> </div> </td>
</tr>
<tr>
<th>Modèle</th>
<td class="model">
<span class="compact element"><a href="#el_titleStmt">titleStmt</a> <a href="#el_editionStmt">editionStmt</a> <a href="#el_publicationStmt">publicationStmt</a> <a href="#el_notesStmt">notesStmt</a> ? <a href="#el_sourceDesc">sourceDesc</a></span>
</td>
</tr>
<tr>
<th>Parents</th>
<td class="usage"><div><b>T</b>. <<a href="#el_teiHeader">teiHeader</a>> </div> </td>
</tr>
</table>
<section class="element rng" id="el_titleStmt">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-titleStmt.html" target="TEI">titleStmt</a>> Titre (! obligatoire) et auteurs (* optionnel et répétable) du document</header>
<table class="grammar">
<tr>
<th>Enfants</th>
<td class="children"><div><b>A</b>. <<a href="#el_author">author</a>> </div> <div><b>E</b>. <<a href="#el_editor">editor</a>> </div> <div><b>R</b>. <<a href="#el_respStmt_2">respStmt</a>> </div> <div><b>T</b>. <<a href="#el_title">title</a>> </div> </td>
</tr>
<tr>
<th>Modèle</th>
<td class="model">
<span class="compact element">
<a href="#el_title">title</a>
<span class="compact choice"> ( <a href="#el_author">author</a> | <a href="#el_editor">editor</a> | <a href="#el_respStmt_2">respStmt</a> ) * </span>
</span>
</td>
</tr>
<tr>
<th>Parents</th>
<td class="usage"><div><b>F</b>. <<a href="#el_fileDesc">fileDesc</a>> </div> </td>
</tr>
</table>
</section>
<section class="element rng" id="el_editionStmt">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-editionStmt.html" target="TEI">editionStmt</a>> </header>
<table class="grammar">
<tr>
<th>Enfants</th>
<td class="children"><div><b>E</b>. <<a href="#el_edition">edition="Merveilles17"</a>> </div> <div><b>R</b>. <<a href="#el_respStmt">respStmt</a>> </div> </td>
</tr>
<tr>
<th>Modèle</th>
<td class="model">
<span class="compact element"><a href="#el_edition">edition="Merveilles17"</a> <a href="#el_respStmt">respStmt</a> * </span>
</td>
</tr>
<tr>
<th>Parents</th>
<td class="usage"><div><b>F</b>. <<a href="#el_fileDesc">fileDesc</a>> </div> </td>
</tr>
</table>
<section class="element rng" id="el_edition">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-edition.html" target="TEI">edition="Merveilles17"</a>> Nom de l’édition électronique</header>
<table class="grammar">
<tr>
<th>Modèle</th>
<td class="model">
<span class="value">Merveilles17</span>
</td>
</tr>
<tr>
<th>Parents</th>
<td class="usage"><div><b>E</b>. <<a href="#el_editionStmt">editionStmt</a>> </div> </td>
</tr>
</table>
</section>
<section class="element rng" id="el_respStmt">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-respStmt.html" target="TEI">respStmt</a>> Personne ayant une responsabilité dans l'élaboration du texte électronique (pas le contenu intellectuel, cf. <<a class="el" href="#el_titleStmt">titleStmt</a>>)</header>
<table class="grammar">
<tr>
<th>Enfants</th>
<td class="children"><div><b>N</b>. <<a href="#el_name">name</a>> </div> <div><b>R</b>. <<a href="#el_resp">resp</a>> </div> </td>
</tr>
<tr>
<th>Modèle</th>
<td class="model">
<span class="compact element"><a href="#el_name">name</a> <a href="#el_resp">resp</a></span>
</td>
</tr>
<tr>
<th>Parents</th>
<td class="usage"><div><b>E</b>. <<a href="#el_editionStmt">editionStmt</a>> </div> </td>
</tr>
</table>
<section class="element rng" id="el_resp">
<header class="element rng"><<a href="http://www.tei-c.org/release/doc/tei-p5-doc/fr/html/ref-resp.html" target="TEI">resp</a>> Date et rôle dans l’établissement du texte électronique</header>
<table class="grammar">
<tr>
<th>Modèle</th>
<td class="model">
<i>{text}</i>