-
Notifications
You must be signed in to change notification settings - Fork 2
/
W0015.xml
2518 lines (2461 loc) · 248 KB
/
W0015.xml
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-model href="http://files.salamanca.school/saltei.rng"
type="application/xml"
schematypens="http://relaxng.org/ns/structure/1.0"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0" xml:id="W0015">
<?svsal htmlFragmentationDepth="4"?>
<teiHeader>
<fileDesc>
<titleStmt>
<title type="short" level="m">Confessionario</title>
<title type="main" level="m">Confessionario vtil y prouechoso</title>
<author>
<persName ref="author:A0100 cerl:cnp01234843 gnd:118768735" key=" Vitoria, Francisco de">
<forename>Francisco</forename>
<nameLink>de</nameLink>
<surname>Vitoria</surname>
</persName>
</author>
<editor xml:id="CB" role="Editor">
<persName ref="gnd:138962987">
<surname>Birr</surname>, <forename>Christiane</forename>
</persName>
</editor>
<editor xml:id="JLE" role="Editor">
<persName ref="orcid:0000-0002-9256-8490">
<surname>Egío García</surname>, <forename>José Luis</forename>
</persName>
</editor>
<editor xml:id="DG" role="DataManager">
<persName ref="orcid:0000-0002-0273-3844">
<surname>Glück</surname>, <forename>David</forename>
</persName>
</editor>
<editor xml:id="AW" role="DataManager">
<persName ref="orcid:0000-0003-1835-1653 gnd:108835820">
<surname>Wagner</surname>, <forename>Andreas</forename>
</persName>
</editor>
<editor xml:id="CR" role="DataManager">
<persName ref="orcid:0000-0001-5095-1793" full="yes">
<surname full="yes">Rico Carmona</surname>, <forename full="yes">Cindy</forename>
</persName>
</editor>
<editor xml:id="IC" role="DataManager">
<persName ref="gnd:1022577581">
<surname>Caesar</surname>, <forename>Ingo</forename>
</persName>
</editor>
</titleStmt>
<editionStmt>
<edition n="1.0.0" xml:id="W0015-v1.0.0" xml:lang="en">
Complete digitized edition, <date type="digitizedEd" when="2018-05-09">2018-05-09</date>.
</edition>
</editionStmt>
<publicationStmt xml:id="publicationStmt">
<publisher xml:id="pubstmt-publisher">
<orgName xml:lang="de">Akademie der Wissenschaften und der Literatur, Mainz</orgName>
<ref type="url" target="http://salamanca.adwmainz.de/">http://salamanca.adwmainz.de/</ref>
</publisher><distributor xml:id="pubstmt-distributor">
<orgName xml:lang="de">Akademie der Wissenschaften und der Literatur, Mainz</orgName>,
<orgName xml:lang="de">Max-Planck-Institut für europäische Rechtsgeschichte</orgName>,
<orgName xml:lang="de">Goethe-Universität Frankfurt/Main</orgName>
<email>[email protected]</email>
</distributor><pubPlace role="digitizedEd" xml:lang="en" xml:id="pubstmt-pubplace">
Frankfurt am Main, Germany (<ref type="url" target="http://salamanca.adwmainz.de/">http://salamanca.adwmainz.de/</ref>)
</pubPlace><availability xml:id="pubstmt-availability">
<licence n="cc-by" target="https://creativecommons.org/licenses/by/4.0">
<p xml:id="p_wc2c454" xml:lang="de">Dieses Werk bzw. dieser Inhalt wurde digitalisiert durch die <ref target="http://www.adwmainz.de">Akademie der
Wissenschaften und der Literatur, Mainz</ref> und steht unter einer <ref target="https://creativecommons.org/licenses/by/4.0/deed.de">Creative
Commons Lizenz: Namensnennung 4.0 International (CC BY 4.0)</ref>.</p>
<p xml:id="p_ffjaztskfd" xml:lang="en">This work or content, respectively, was digitized by the
<ref target="http://www.adwmainz.de">Akademie der Wissenschaften und der Literatur, Mainz</ref>,
and is licensed under the terms of a
<ref target="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International (CC BY 4.0)</ref>.</p>
<p xml:id="p_7rlkjdf8sd" xml:lang="es">Esta obra respectivamente este contenido ha sido digitalizado por la <ref target="http://www.adwmainz.de">Akademie der
Wissenschaften und der Literatur, Mainz</ref> y es autorizado bajo una licencia de
<ref target="https://creativecommons.org/licenses/by/4.0/deed.es"> Creative Commons Reconocimiento 4.0 Internacional (CC BY 4.0)</ref>
</p>
</licence>
</availability>
<date type="digitizedEd" when="2018-05-09">2018-05-09</date>
<idno><idno type="DOI">10.5281/zenodo.4046303</idno>
<idno xml:id="urlid">https://id.salamanca.school/texts/W0015</idno>
<idno xml:id="urltei">https://id.salamanca.school/texts/W0015?format=tei</idno>
<idno xml:id="urlhtml">https://id.salamanca.school/texts/W0015?format=html</idno>
<idno xml:id="urlrdf">https://id.salamanca.school/texts/W0015?format=rdf</idno>
<idno xml:id="urliiif">https://id.salamanca.school/texts/W0015?format=iiif</idno>
<idno xml:id="urltxtorig">https://id.salamanca.school/texts/W0015?format=txt&mode=orig</idno>
<idno xml:id="urltxtedit">https://id.salamanca.school/texts/W0015?format=txt&mode=edit</idno>
</idno>
</publicationStmt>
<seriesStmt>
<title level="s" xml:lang="de">Die Schule von Salamanca. Eine Digitale Quellensammlung</title><title level="s" xml:lang="en">The School of Salamanca. A Digital Collection of Sources</title><title level="s" xml:lang="es">La Escuela de Salamanca. Una Colección Digital de Fuentes</title><editor role="ProjectLeader" xml:id="TD">
<persName ref="gnd:1028938721" full="yes">
<surname full="yes">Duve</surname>, <forename full="yes">Thomas</forename>
</persName>
</editor><editor role="ProjectLeader" xml:id="MLB">
<persName ref="gnd:1022577581" full="yes">
<surname full="yes">Lutz-Bachmann</surname>, <forename full="yes">Matthias</forename>
</persName>
</editor>
<biblScope unit="volume" n="1" xml:lang="en">Volume 1</biblScope>
</seriesStmt>
<sourceDesc>
<biblStruct>
<monogr>
<author>
<persName ref="author:A0100 cerl:cnp01234843 gnd:118768735" key=" Vitoria, Francisco de">
<forename>Francisco</forename>
<nameLink>de</nameLink>
<surname>Vitoria</surname>
</persName>
</author>
<title type="short" level="m">Confessionario</title>
<title type="main" level="m">Confessionario vtil y prouechoso</title>
<imprint>
<pubPlace role="firstEd" ref="getty:7008643" key="Santiago de Compostela">Santiago</pubPlace>
<date type="firstEd" when="1562">1562</date>
<publisher n="firstEd">
<persName>
<surname>[s.n.]</surname>
</persName>
</publisher>
</imprint>
<extent xml:lang="de">24 ungezählte Blätter ; 8°</extent>
<extent xml:lang="en">[24] l. ; 8°</extent>
<extent xml:lang="es">[24] h. ; 8°</extent>
</monogr>
</biblStruct>
<msDesc type="main">
<msIdentifier>
<repository ref="gnd:4313400-2" xml:lang="es">Bibliotecas de la Universidad de Salamanca</repository>
<idno type="catlink" xml:lang="es">https://gredos.usal.es/handle/10366/19465</idno>
</msIdentifier>
<physDesc>
<typeDesc>
<typeNote n="antiqua" xml:lang="en">Antiqua typeface</typeNote>
</typeDesc>
</physDesc>
</msDesc>
<msDesc type="additional" corresp="#facs:W0015-0037 #facs:W0015-0038">
<msIdentifier>
<repository ref="gnd:4313400-2" xml:lang="es">Bibliotecas de la Universidad de Salamanca</repository>
<idno type="catlink" subtype="main" xml:lang="en">http://hdl.handle.net/10366/19465</idno>
</msIdentifier>
<physDesc>
<typeDesc>
<typeNote n="rotunda" xml:lang="en">Rotunda typeface</typeNote>
</typeDesc>
</physDesc>
</msDesc>
</sourceDesc>
</fileDesc>
<profileDesc>
<langUsage>
<language ident="es" usage="100" n="main" xml:lang="en">Spanish</language>
</langUsage>
</profileDesc>
<encodingDesc>
<projectDesc xml:id="projectDesc">
<p xml:id="p_retq324ewfr" xml:lang="de">Dieses Dokument wurde im Rahmen des Projekts
<ref target="https://www.salamanca.school/de/project.html">"Die Schule von Salamanca.
Eine digitale Quellensammlung und ein Wörterbuch ihrer juridisch-politischen Sprache"</ref> der
<ref target="http://www.adwmainz.de">Akademie der Wissenschaften und der Literatur, Mainz</ref>, kodiert. Dieses Projekt zielt
neben der Herstellung eines Wörterbuchs auf die freie und leicht zugängliche
Präsentation wichtiger Texte aus dem Diskussionszusammenhang der sog. "Schule von
Salamanca" ab, die hierfür (i.d.R.) aus den Erst-Drucken retrodigitalisiert werden.
Von einer kritischen Überarbeitung und einem Rückgriff auf die Manuskript-Quellen oder
andere Ausgaben wurde abgesehen.</p>
<p xml:id="p_fhsdofisad" xml:lang="en">This document was
encoded within the scope of the project <ref target="https://www.salamanca.school/en/project.html">"The School of Salamanca. A Digital Collection of
Sources and a Dictionary of its Juridical-Political Language"</ref> of the
<ref target="http://www.adwmainz.de">Akademie der Wissenschaften und der Literatur, Mainz</ref>.
Besides creating a dictionary, the project aims at a freely available and easily accessible
collection of important texts from the discoursive context of the so called "School of Salamanca",
which are being digitized for this purpose (usually in the form of their initial edition). A critical revision,
or a recourse to manuscript templates, for instance, has been refrained from.
</p>
<p xml:id="p_fhsdofesad" xml:lang="es">
Este documento se codificó en el marco del proyecto <ref target="https://www.salamanca.school/es/project.html">"La Escuela de Salamanca. Una
colección digital de fuentes y un diccionario de su lenguaje jurídico-político"</ref>
de la <ref target="http://www.adwmainz.de">Akademie der Wissenschaften und der Literatur, Mainz</ref>.
Además de la producción de un diccionario, el proyecto tiene como objetivo la presentación gratuita y
accesible de textos importantes del contexto de discusión de la llamada "Escuela de Salamanca",
que se digitalizan (básicamente en la forma de su primera publicación).
Se ha prescindido tanto de una revisión crítica, como de un
recurso que muestre los originales de los manuscritos o otras ediciones.
</p>
</projectDesc>
<editorialDecl>
<p xml:id="editorialdecl-de" xml:lang="de">Dieses Werk wurde für das Projekt "Die Schule von Salamanca"
im Double-Keying-Verfahren durch Nicht-Muttersprachler transkribiert
(siehe hierzu auch die
<ref target="http://facs.salamanca.school/docs/transcription/guidelines/general/SvSal_Allgemeine_Erfassungsanweisungen.pdf">allgemeinen</ref>
und
<ref target="http://facs.salamanca.school/docs/transcription/guidelines/specific/">werkspezifischen</ref>
Erfassungsanweisungen des Projekts)
und gemäß der
<ref target="https://www.salamanca.school/de/guidelines.html">Editionsrichtlinien</ref>
durch das Projekt in XML/TEI P5 kodiert.</p><p xml:id="editorialdecl-en" xml:lang="en">This work was transcribed by non-native speakers through
double keying for the project "The School of Salamanca" (see also the
<ref target="http://facs.salamanca.school/docs/transcription/guidelines/general/SvSal_Allgemeine_Erfassungsanweisungen.pdf">general</ref>
and
<ref target="http://facs.salamanca.school/docs/transcription/guidelines/specific/">werkspezifischen</ref>
transcription guidelines of the project, currently only available in German) and was
encoded by the project in XML/TEI P5 according to the
<ref target="https://www.salamanca.school/en/guidelines.html">edition guidelines</ref>.</p><p xml:id="editorialdecl-es" xml:lang="es">Esta obra fue transcrita por hablantes no nativos a través
de doble codificación para el proyecto "La Escuela de Salamanca" (véase también las Directrices
<ref target="http://facs.salamanca.school/docs/transcription/guidelines/general/SvSal_Allgemeine_Erfassungsanweisungen.pdf">Generales</ref>
y
<ref target="http://facs.salamanca.school/docs/transcription/guidelines/specific/">Específicas</ref> de
transcripción del proyecto, actualmente solo disponibles en alemán) y fue
codificada por el proyecto en XML/TEI P5 según las <ref target="https://www.salamanca.school/es/guidelines.html">directrices</ref> de edición.
</p>
<normalization>
<p xml:id="meta-pa-0006" xml:lang="en">The "long s" character (<q>ſ</q>) was normalized,
i.e. resolved to <q>s</q>.</p>
</normalization>
</editorialDecl>
<refsDecl xml:id="refsDecl">
<p xml:id="p_d2d3fccq3" xml:lang="de">Für eine Beschreibung der im Werk verwendeten Identifikations- und
Referenzierungsschemata für Elemente mittels <att>xml:id</att> siehe die
<ref target="https://www.salamanca.school/de/guidelines.html#de-xmlid">Editionsrichtlinien</ref>.</p>
<p xml:id="p_d2derccq3" xml:lang="en">For a description of the schemata used for identification and referencing of elements
by means of <att>xml:id</att>, please refer to the
<ref target="https://www.salamanca.school/en/guidelines.html#en-xmlid">edition guidelines</ref>.</p>
<p xml:id="p_d2deercq3" xml:lang="es">Para una descripción de los esquemas de identificación y referencia de elementos,
utilizado en la obra por medio de <att>xml:id</att>, por favor refiérase a las
<ref target="https://www.salamanca.school/en/guidelines.html#es-xmlid">directrices de edición</ref>.</p>
</refsDecl><styleDefDecl scheme="css"/><tagsDecl> <!-- from TEI P5 2.8.0 on: @partial="true" -->
<rendition scheme="css" xml:id="hyphenBefore">content:'-';</rendition>
<rendition scheme="css" xml:id="noHyphen">content:'';</rendition>
<rendition scheme="css" xml:id="asterisk">content:'*';</rendition>
<rendition scheme="css" xml:id="dagger">content:'†';</rendition>
<rendition scheme="css" xml:id="initCaps" scope="first-letter">font-size: xx-large; font-style: initial;</rendition>
<rendition scheme="css" xml:id="it">font-style: italic;</rendition>
<rendition scheme="css" xml:id="recte">font-style: normal;</rendition>
<rendition scheme="css" xml:id="b">font-weight: bold;</rendition>
<rendition scheme="css" xml:id="sc">font-variant: small-caps;</rendition>
<rendition scheme="css" xml:id="sup">vertical-align: sup; font-size: .83em;</rendition>
<rendition scheme="css" xml:id="sub">vertical-align: sub; font-size: .83em;</rendition>
<rendition scheme="css" xml:id="spc">letter-spacing: 3px;</rendition>
<rendition scheme="css" xml:id="r-center">text-align: center;</rendition>
<rendition scheme="css" xml:id="right">text-align: right;</rendition>
<rendition scheme="css" xml:id="inline-space">content: ' ';</rendition>
<rendition scheme="css" xml:id="h-line">content: " ";display:block;border-bottom: 1px solid #rrggbb;</rendition>
<rendition scheme="css" xml:id="inline-h-line">content: " — ";</rendition>
<namespace name="http://www.tei-c.org/ns/1.0">
<tagUsage gi="lb" rendition="#noHyphen"/>
<tagUsage gi="milestone" rendition="#asterisk"/>
<tagUsage gi="lg" rendition="#it"/>
<tagUsage gi="head" rendition="#r-center"/>
</namespace>
</tagsDecl><appInfo>
<application ident="MUFI" version="4.0">
<label xml:id="svsal-meta-la-0001">MUFI character recommendation v. 4.0</label>
<ref target="http://hdl.handle.net/1956/10699"/>
</application>
<application ident="Unicode" version="6.3.0">
<label xml:id="svsal-meta-la-0002">The Unicode Consortium. The Unicode Standard, Version 6.3.0</label>
<ref target="http://www.unicode.org/versions/Unicode6.3.0/"/>
</application>
</appInfo><listPrefixDef>
<prefixDef ident="author" matchPattern="([A-z0-9.:#_\-]+)" replacementPattern="http://id.salamanca.school/authors.$1">
<p xml:id="p_f2q34f3cew" xml:lang="en">Within the scope of this edition, private URIs using an "author" prefix refer to
person datasets, available in the "tei/authors/" directory of the svsal-data package.
The filenames therein are concatenations of the internal ID number of the respective person, beginning
with the letter "A", and the file extension ".xml". The web application displays these datasets
under the address <ref type="url" target="http://www.salamanca.school/author.html">http://www.salamanca.school/author.html</ref>,
which is to be complemented by the "?aid=" parameter, followed by the internal ID number.</p>
</prefixDef>
<prefixDef ident="work" matchPattern="([A-z0-9.:#_\-]+)" replacementPattern="http://id.salamanca.school/works.$1">
<p xml:id="p_awevearvq" xml:lang="en">Within the scope of this edition, private URIs using a "work" prefix refer to
work datasets, available in the "tei/works/" directory of the svsal-data package.
The filenames therein are concatenations of the internal ID number of the respective work, beginning
with the letter "W", and the file extension ".xml". The web application displays these datasets
under the address <ref type="url" target="http://www.salamanca.school/work.html">http://www.salamanca.school/work.html</ref>,
which is to be complemented by the "?wid=" parameter, followed by the internal ID number.</p>
</prefixDef>
<prefixDef ident="lemma" matchPattern="([A-z0-9.:#_\-]+)" replacementPattern="http://www.salamanca.school/lemma.html?lid=$1">
<p xml:id="p_dlkjupupu" xml:lang="en">Within the scope of this edition, private URIs using a "lemma" prefix refer to
dictionary datasets, available in the "tei/lemmata/" directory of the svsal-data package.
The filenames therein are concatenations of the internal ID number of the respective lemma, beginning
with the letter "L", and the file extension ".xml". The web application displays these datasets
under the address <ref type="url" target="http://www.salamanca.school/lemma.html">http://www.salamanca.school/lemma.html</ref>,
which is to be complemented by the "?lid=" parameter, followed by the internal ID number.</p>
</prefixDef>
<prefixDef ident="facs" matchPattern="(W[0-9]{4})-[0-9]{4}" replacementPattern="http://wwwuser.gwdg.de/~svsal/images/$1/$0.jpg"> <!-- einbändige Werke -->
<p xml:id="p_sdeaeeq1" xml:lang="en">Within the scope of this edition, private URIs using the "facs" prefix
refer to scan image files within the server system of the "Gesellschaft für wissenschaftliche Datenverarbeitung in
Göttingen (GWDG)" at <ref target="http://wwwuser.gwdg.de/~svsal/images/">http://wwwuser.gwdg.de/~svsal/images/</ref>. The filenames
therein are concatenations of the internal ID number of the respective work and the ".jpg" file extension.
The mapping of each ID to its respective work also can be found at the mentioned address.</p>
</prefixDef>
<prefixDef ident="facs" matchPattern="(W[0-9]{4})-([A-Z])-[0-9]{4}" replacementPattern="http://wwwuser.gwdg.de/~svsal/images/$1/$2/$0.jpg"> <!-- mehrbändige Werke -->
<p xml:id="p_sdeaeeq2" xml:lang="en">Within the scope of this edition, private URIs using the "facs" prefix
refer to scan image files within the server system of the "Gesellschaft für wissenschaftliche Datenverarbeitung in
Göttingen (GWDG)" at <ref target="http://wwwuser.gwdg.de/~svsal/images/">http://wwwuser.gwdg.de/~svsal/images/</ref>. The filenames
therein are concatenations of the internal ID number of the respective work and the ".jpg" file extension.
The mapping of each ID to its respective work also can be found at the mentioned address.</p>
</prefixDef>
<!-- The following prefixes linking our data to external sources are disabled for now,
because the data are not rich enough yet... -->
<!--
<prefixDef ident="cerl" matchPattern="([A-z0-9.#_\-]+)" replacementPattern="http://thesaurus.cerl.org/cgi-bin/record.pl?rid=$1">
<p xml:id="p_ertertwe">Im Kontext dieser Edition verweisen private URIs mit dem Präfix "cerl" auf Personen-
Datensätze in der öffentlichen Datenbank unter http://thesaurus.cerl.org/.</p>
</prefixDef>
<prefixDef ident="gnd" matchPattern="([A-z0-9.#_\-]+)" replacementPattern="http://thesaurus.cerl.org/cgi-bin/record.pl?rid=$1">
<p xml:id="p_xcvsdfdwq">Im Kontext dieser Edition verweisen private URIs mit dem Präfix "cerl" auf Personen-
Datensätze in der öffentlichen Datenbank unter http://thesaurus.cerl.org/.</p>
</prefixDef>
<prefixDef ident="viaf" matchPattern="([A-z0-9.#_\-]+)" replacementPattern="http://viaf.org/viaf/$1">
<p xml:id="p_lkjoiop">Im Kontext dieser Edition verweisen private URIs mit dem Präfix "viaf" auf Personen-
Datensätze in der öffentlichen Datenbank unter http://viaf.org/viaf/.</p>
</prefixDef>
<prefixDef ident="fhla" matchPattern="([A-z0-9.#_\-]+)" replacementPattern="http://www.larramendi.es/aut/$1">
<p xml:id="p_lkjoiop">Im Kontext dieser Edition verweisen private URIs mit dem Präfix "fhla" auf Personen-
Datensätze in der öffentlichen Datenbank unter http://www.larramendi.es/aut/.</p>
</prefixDef>
<prefixDef ident="getty" matchPattern="([A-z0-9.#_\-]+)" replacementPattern="http://www.getty.edu/vow/TGNFullDisplay?subjectid=$1">
<p xml:id="p_q23dfq23">Im Kontext dieser Edition verweisen private URIs mit dem Präfix "getty" auf Personen-
Datensätze in der öffentlichen Datenbank unter http://www.getty.edu/.</p>
</prefixDef>
-->
</listPrefixDef>
<charDecl xml:id="charDecl">
<!-- Characters below 00FF -->
<char xml:id="char0026">
<desc>AMPERSAND</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>amp</value>
</charProp>
<mapping type="precomposed">&</mapping>
<mapping type="standardized">&</mapping>
</char>
<char xml:id="char00b6">
<desc>PILCROW SIGN</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>para</value>
</charProp>
<mapping type="precomposed">¶</mapping>
<mapping type="standardized">¶</mapping>
</char>
<char xml:id="charf1e1">
<desc>PARAGRAPHUS</desc>
<mapping type="precomposed"></mapping>
<mapping type="standardized"></mapping>
</char>
<char xml:id="char00df">
<desc>LATIN SMALL LETTER SHARP S</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>szlig</value>
</charProp>
<mapping type="precomposed">ß</mapping>
<mapping type="standardized">ss</mapping>
</char>
<char xml:id="char00e6">
<desc>LATIN SMALL LETTER AE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>aelig</value>
</charProp>
<mapping type="MUFI" subtype="Lat1Suppl">U+00E6</mapping>
<mapping type="precomposed">æ</mapping>
<mapping type="standardized">ae</mapping>
</char>
<char xml:id="char00c6">
<desc>LATIN CAPITAL LETTER AE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>AElig</value>
</charProp>
<mapping type="MUFI" subtype="Lat1Suppl">U+00C6</mapping>
<mapping type="precomposed">Æ</mapping>
<mapping type="standardized">AE</mapping>
</char>
<char xml:id="chara0302">
<desc>LATIN SMALL LETTER A WITH CIRCUMFLEX</desc>
<mapping type="precomposed">â</mapping>
<mapping type="composed">â</mapping>
<mapping type="standardized">a</mapping>
</char>
<char xml:id="chara0300">
<desc>LATIN SMALL LETTER A WITH GRAVE</desc>
<mapping type="precomposed">à</mapping>
<mapping type="composed">à</mapping>
<mapping type="standardized">a</mapping>
</char>
<!-- Other Precomposed Characters -->
<char xml:id="char0180">
<desc>LATIN SMALL LETTER B WITH STROKE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>bstrok</value>
</charProp>
<mapping type="MUFI" subtype="LatExtB">U+0180</mapping>
<mapping type="precomposed">ƀ</mapping>
<mapping type="standardized">b</mapping>
</char>
<char xml:id="char0111">
<desc>LATIN SMALL LETTER D WITH STROKE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>dstrok</value>
</charProp>
<mapping type="MUFI" subtype="LatExtA">U+0111</mapping>
<mapping type="precomposed">đ</mapping>
<mapping type="standardized">d</mapping>
</char>
<char xml:id="char0142">
<desc>LATIN SMALL LETTER L WITH STROKE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>lstrok</value>
</charProp>
<mapping type="MUFI" subtype="LatExtA">U+0142</mapping>
<mapping type="precomposed">ł</mapping>
<mapping type="standardized">l</mapping>
</char>
<char xml:id="char0153">
<desc>LATIN SMALL LIGATURE OE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>oelig</value>
</charProp>
<mapping type="MUFI" subtype="LatExtA">U+0153</mapping>
<mapping type="precomposed">œ</mapping>
<mapping type="standardized">oe</mapping>
</char>
<char xml:id="char0152">
<desc>LATIN CAPITAL LIGATURE OE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>Oelig</value>
</charProp>
<mapping type="MUFI" subtype="LatExtA">U+0152</mapping>
<mapping type="precomposed">Œ</mapping>
<mapping type="standardized">OE</mapping>
</char>
<char xml:id="char017f">
<desc>LATIN SMALL LETTER LONG S</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>slong</value>
</charProp>
<mapping type="precomposed">ſ</mapping>
<mapping type="standardized">s</mapping>
</char>
<char xml:id="char1e9c">
<desc>LATIN SMALL LETTER LONG S WITH DIAGONAL STROKE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>slongbarslash</value>
</charProp>
<mapping type="MUFI" subtype="LatExtAdd"/>
<mapping type="precomposed">ẜ</mapping>
<mapping type="standardized">s</mapping>
</char>
<char xml:id="char01d4">
<desc>LATIN SMALL LETTER U WITH CARON</desc>
<mapping type="precomposed">ǔ</mapping>
<mapping type="standardized">u</mapping>
</char>
<char xml:id="charu0300">
<desc>LATIN SMALL LETTER U WITH GRAVE</desc>
<mapping type="precomposed">ù</mapping>
<mapping type="composed">ù</mapping>
<mapping type="standardized">u</mapping>
</char>
<char xml:id="char0250">
<desc>LATIN SMALL LETTER TURNED A</desc>
<mapping type="precomposed">ɐ</mapping>
<mapping type="standardized">a</mapping>
</char>
<char xml:id="char0259">
<desc>LATIN SMALL LETTER SCHWA</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>schwa</value>
</charProp>
<mapping type="precomposed">ə</mapping>
<mapping type="standardized">e</mapping>
</char>
<char xml:id="char026f">
<desc>LATIN SMALL LETTER TURNED M</desc>
<charProp>
<localName>entity</localName>
<value>turnedm</value>
</charProp>
<mapping type="precomposed">ɯ</mapping>
<mapping type="standardized">m</mapping>
</char>
<char xml:id="char0292">
<desc>LATIN SMALL LETTER EZH</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>ezh</value>
</charProp>
<mapping type="precomposed">ʒ</mapping>
<mapping type="standardized">z</mapping>
</char>
<char xml:id="char204a">
<desc>LATIN ABBREVIATION SIGN SMALL ET</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>et</value>
</charProp>
<mapping type="precomposed">⁊</mapping>
<mapping type="standardized">et</mapping>
</char>
<char xml:id="char211f">
<desc>RESPONSE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>Rslstrok</value>
</charProp>
<mapping type="precomposed">℟</mapping>
<mapping type="standardized">R</mapping>
</char>
<char xml:id="char2184">
<desc>LATIN ABBREVIATION SIGN SMALL CON</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>conbase</value>
</charProp>
<mapping type="precomposed">ↄ</mapping>
<mapping type="standardized">con</mapping>
</char>
<char xml:id="chara751">
<desc>LATIN SMALL LETTER P WITH STROKE THROUGH DESCENDER</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>pbardes</value>
</charProp>
<mapping type="precomposed">ꝑ</mapping>
<mapping type="standardized">p</mapping>
</char>
<char xml:id="chara750">
<desc>LATIN CAPITAL LETTER P WITH STROKE THROUGH DESCENDER</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>Pbardes</value>
</charProp>
<mapping type="precomposed">Ꝑ</mapping>
<mapping type="standardized">P</mapping>
</char>
<char xml:id="chara753">
<desc>LATIN SMALL LETTER P WITH FLOURISH</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>pflour</value>
</charProp>
<mapping type="precomposed">ꝓ</mapping>
<mapping type="standardized">p</mapping>
</char>
<char xml:id="chara759">
<desc>LATIN SMALL LETTER Q WITH DIAGONAL STROKE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>qslstrok</value>
</charProp>
<mapping type="precomposed">ꝙ</mapping>
<mapping type="standardized">q</mapping>
</char>
<char xml:id="chara75d">
<desc>LATIN SMALL LETTER RUM ROTUNDA</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>rum</value>
</charProp>
<mapping type="precomposed">ꝝ</mapping>
<mapping type="standardized">rum</mapping>
</char>
<char xml:id="chara75f">
<desc>LATIN SMALL LETTER V WITH DIAGONAL STROKE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>vdiagstrok</value>
</charProp>
<mapping type="precomposed">ꝟ</mapping>
<mapping type="standardized">v</mapping>
</char>
<char xml:id="chara76d">
<desc>LATIN SMALL LETTER IS</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>is</value>
</charProp>
<mapping type="precomposed">ꝭ</mapping>
<mapping type="standardized">is</mapping>
</char>
<char xml:id="chara770">
<desc>MODIFIER LETTER US</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>usmod</value>
</charProp>
<mapping type="precomposed">ꝰ</mapping>
<mapping type="standardized">us</mapping>
</char>
<char xml:id="chare682">
<desc>LATIN SMALL LETTER Q WITH DOT ABOVE</desc>
<charProp>
<localName>entity</localName>
<value>qdot</value>
</charProp>
<mapping type="MUFI" subtype="PUA">U+E682</mapping>
<mapping type="precomposed"></mapping>
<mapping type="composed">q̇</mapping>
<mapping type="standardized">q</mapping>
<graphic mimeType="image/png" url="http://v2.manuscriptorium.com/apps/gbank/data/mufi-graphic/e682.png"/>
</char>
<char xml:id="chare8b3">
<desc>LATIN SMALL LETTER Q LIGATED WITH R ROTUNDA</desc>
<charProp>
<localName>entity</localName>
<value>q2app</value>
</charProp>
<mapping type="MUFI" subtype="PUA">U+E8B3</mapping>
<mapping type="precomposed"></mapping>
<mapping type="standardized">q</mapping>
<graphic mimeType="image/png" url="http://v2.manuscriptorium.com/apps/gbank/data/mufi-graphic/e8b3.png"/>
</char>
<char xml:id="chare8bf">
<desc>LATIN SMALL LETTER Q LIGATED WITH FINAL ET</desc>
<charProp>
<localName>entity</localName>
<value>q3app</value>
</charProp>
<mapping type="MUFI" subtype="PUA">U+E8BF</mapping>
<mapping type="precomposed"></mapping>
<mapping type="standardized">q</mapping>
<graphic mimeType="image/png" url="http://v2.manuscriptorium.com/apps/gbank/data/mufi-graphic/e8bf.png"/>
</char>
<char xml:id="chara757">
<desc>LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER</desc>
<charProp>
<localName>entity</localName>
<value>qbardes</value>
</charProp>
<mapping type="MUFI" subtype="LatExtD">U+A757</mapping>
<mapping type="precomposed">ꝗ</mapping>
<mapping type="standardized">q</mapping>
</char>
<char xml:id="chare68b">
<desc>LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER AND TILDE</desc>
<desc n="Combined">LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER + COMBINING TILDE</desc>
<charProp>
<localName>entity</localName>
<value>qbardestilde</value>
</charProp>
<charProp>
<localName>combined-entity</localName>
<value> qbardestilde = qbardes + combtilde </value>
</charProp>
<mapping type="MUFI" subtype="PUA">U+E68B</mapping>
<mapping type="MUFI" subtype="Combined">U+E68B = A757+ 0303</mapping>
<mapping type="precomposed"></mapping>
<mapping type="composed">ꝗ̃</mapping>
<mapping type="standardized">q</mapping>
<graphic mimeType="image/png" url="http://v2.manuscriptorium.com/apps/gbank/data/mufi-graphic/e68b.png"/>
</char>
<char xml:id="char0308">
<desc>LATIN SMALL LETTER Q WITH STROKE AND COMBINING DIAERESIS</desc>
<charProp>
<localName>combined-entity</localName>
<value> qdiaeresis = qbardes + combdiaeresis </value>
</charProp>
<mapping type="composed">ꝗ̈</mapping>
<mapping type="standardized">q</mapping>
</char>
<char xml:id="charebd1">
<desc>LATIN SMALL LETTER D ROTUNDA WITH DOT ABOVE</desc>
<desc>LATIN SMALL LETTER D ROTUNDA + COMBINING DOT ABOVE</desc>
<charProp>
<localName>entity</localName>
<value>drotdot</value>
</charProp>
<charProp>
<localName>combined-entity</localName>
<value> drotdot = drot + combdot </value>
</charProp>
<mapping type="MUFI" subtype="PUA">U+EBD1</mapping>
<mapping type="MUFI" subtype="Combined">U+EBD1 = A77A + 0307</mapping>
<mapping type="precomposed"></mapping>
<mapping type="composed">ꝺ̇</mapping>
<mapping type="standardized">d</mapping>
<graphic mimeType="image/png" url="http://v2.manuscriptorium.com/apps/gbank/data/mufi-graphic/ebd1.png"/>
</char>
<char xml:id="charf159">
<desc>LATIN ABBREVIATION SIGN SMALL DE</desc>
<charProp>
<localName>entity</localName>
<value>de</value>
</charProp>
<mapping type="MUFI" subtype="PUA">U+F159</mapping>
<mapping type="precomposed"></mapping>
<mapping type="standardized">d</mapping>
<graphic mimeType="image/png" url="http://v2.manuscriptorium.com/apps/gbank/data/mufi-graphic/f159.png"/>
</char>
<char xml:id="chary0302">
<desc>LATIN SMALL LETTER Y WITH CIRCUMFLEX</desc>
<mapping type="precomposed">ŷ</mapping>
<mapping type="composed">ŷ</mapping>
<mapping type="standardized">y</mapping>
</char>
<!-- Combining Characters, the first character of the code after "char" is the base letter, then come 4 identifying characters combining mark -->
<char xml:id="chara0303">
<desc>LATIN SMALL LETTER A WITH TILDE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>atilde</value>
</charProp>
<charProp>
<unicodeName>combined-entity</unicodeName>
<value> atilde = a + combtilde </value>
</charProp>
<mapping type="precomposed">ã</mapping>
<mapping type="composed">ã</mapping>
<mapping type="standardized">a</mapping>
<graphic mimeType="image/png" url="http://www.manuscriptorium.com/apps/gbank/data/mufi-graphic/00e3.png"/>
</char>
<char xml:id="chara0304">
<desc>LATIN SMALL LETTER A WITH MACRON</desc>
<charProp>
<localName>entity</localName>
<value>amacr</value>
</charProp>
<charProp>
<localName>combined-entity</localName>
<value> amacr = a + combmacr</value>
</charProp>
<mapping type="MUFI" subtype="LatExtA">U+0101</mapping>
<mapping type="MUFI" subtype="Combined">U+0101 = 0061 + 0304</mapping>
<mapping type="precomposed">ā</mapping>
<mapping type="composed">ā</mapping>
<mapping type="standardized">a</mapping>
</char>
<char xml:id="charb0307">
<desc>LATIN SMALL LETTER B WITH DOT ABOVE</desc>
<mapping type="composed">ḃ</mapping>
<mapping type="standardized">b</mapping>
</char>
<char xml:id="charc0303">
<desc>LATIN SMALL LETTER C WITH TILDE</desc>
<mapping type="composed">c̃</mapping>
<mapping type="standardized">c</mapping>
</char>
<char xml:id="charc0327">
<desc>LATIN SMALL LETTER C WITH CEDILLA</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>ccedil</value>
</charProp>
<mapping type="precomposed">ç</mapping>
<mapping type="composed">ç</mapping>
<mapping type="standardized">c</mapping>
<graphic mimeType="image/png" url="http://www.manuscriptorium.com/apps/gbank/data/mufi-graphic/00e7.png"/>
</char>
<char xml:id="chare0303">
<desc>LATIN SMALL LETTER E WITH TILDE</desc>
<mapping type="precomposed">ẽ</mapping>
<mapping type="composed">ẽ</mapping>
<mapping type="standardized">e</mapping>
</char>
<char xml:id="chare0308">
<desc>LATIN SMALL LETTER E WITH TWO DOTS ABOVE</desc>
<charProp>
<unicodeName>entity</unicodeName>
<value>euml</value>
</charProp>
<mapping type="precomposed">ë</mapping>
<mapping type="composed">ë</mapping>
<mapping type="standardized">e</mapping>
</char>
<char xml:id="chare0327">
<desc>LATIN SMALL LETTER E WITH CEDILLA</desc>
<mapping type="precomposed">ȩ</mapping>
<mapping type="composed">ȩ</mapping>
<mapping type="standardized">e</mapping>
</char>
<char xml:id="chare0304">
<desc>LATIN SMALL LETTER E WITH MACRON</desc>
<charProp>
<localName>entity</localName>
<value>emacr</value>
</charProp>
<charProp>
<localName>combined-entity</localName>
<value> emacr = e + combmacr</value>
</charProp>
<mapping type="MUFI" subtype="LatExtA">U+0113</mapping>
<mapping type="MUFI" subtype="Combined">U+0113 = 0065 + 0304</mapping>
<mapping type="precomposed">ē</mapping>
<mapping type="composed">ē</mapping>
<mapping type="standardized">e</mapping>
</char>
<char xml:id="chare0328">
<desc>LATIN SMALL LETTER E WITH OGONEK</desc>
<charProp>
<localName>entity</localName>
<value>eogon</value>
</charProp>
<mapping type="MUFI" subtype="LatExtA">U+0119</mapping>
<mapping type="precomposed">ę</mapping>
<mapping type="composed">ę</mapping>
<mapping type="standardized">e</mapping>
</char>
<char xml:id="chare0302">
<desc>LATIN SMALL LETTER E WITH CIRCUMFLEX</desc>
<mapping type="precomposed">ê</mapping>
<mapping type="composed">ê</mapping>
<mapping type="standardized">e</mapping>
</char>
<char xml:id="chare4e9">
<desc>LATIN SMALL LETTER E WITH CURL</desc>
<charProp>
<localName>entity</localName>
<value>ecurl</value>
</charProp>
<charProp>
<localName>combined-entity</localName>
<value>ecurl = e + combcurl</value>
</charProp>
<mapping type="MUFI" subtype="Combined">U+E4E9 = 0065 + 1DCE</mapping>
<mapping type="precomposed"></mapping>
<mapping type="standardized">e</mapping>
</char>
<char xml:id="chare0300">
<desc>LATIN SMALL LETTER E WITH GRAVE</desc>
<mapping type="precomposed">è</mapping>
<mapping type="composed">è</mapping>
<mapping type="standardized">e</mapping>
</char>
<char xml:id="charg0304">
<desc>LATIN SMALL LETTER G WITH MACRON</desc>
<charProp>
<localName>entity</localName>
<value>gmacr</value>
</charProp>
<mapping type="precomposed">ḡ</mapping>
<mapping type="standardized">g</mapping>
</char>
<char xml:id="chari0303">
<desc>LATIN SMALL LETTER I WITH TILDE</desc>
<mapping type="precomposed">ĩ</mapping>
<mapping type="composed">ĩ</mapping>
<mapping type="standardized">i</mapping>
</char>
<char xml:id="chari0302">
<desc>LATIN SMALL LETTER I WITH CIRCUMFLEX</desc>
<mapping type="precomposed">î</mapping>
<mapping type="composed">î</mapping>
<mapping type="standardized">i</mapping>
</char>
<char xml:id="chari0304">
<desc>LATIN SMALL LETTER I WITH MACRON</desc>
<charProp>
<localName>entity</localName>
<value>imacr</value>
</charProp>
<charProp>
<localName>combined-entity</localName>
<value>imacr = i + combmacr</value>
</charProp>
<mapping type="MUFI" subtype="LatExtA">U+012B</mapping>
<mapping type="precomposed">ī</mapping>
<mapping type="composed">ī</mapping>
<mapping type="standardized">i</mapping>
</char>
<char xml:id="charj0303">
<desc>LATIN SMALL LETTER J WITH TILDE</desc>
<mapping type="composed">j̃</mapping>
<mapping type="standardized">j</mapping>
</char>
<char xml:id="charl0303">
<desc>LATIN SMALL LETTER L WITH TILDE</desc>
<mapping type="composed">l̃</mapping>
<mapping type="standardized">l</mapping>
</char>
<char xml:id="charl0309">
<desc>LATIN SMALL LETTER L WITH HOOK</desc>
<charProp>
<localName>entity</localName>
<value>lhook</value>
</charProp>
<mapping type="composed">l̉</mapping>
<mapping type="standardized">l</mapping>
</char>
<char xml:id="charm0303">
<desc>LATIN SMALL LETTER M WITH TILDE</desc>
<mapping type="composed">m̃</mapping>
<mapping type="standardized">m</mapping>
</char>
<char xml:id="charm0304">
<desc>LATIN SMALL LETTER M WITH MACRON</desc>
<mapping type="composed">m̄</mapping>
<mapping type="standardized">m</mapping>
</char>
<char xml:id="charn0303">
<desc>LATIN SMALL LETTER N WITH TILDE</desc>
<mapping type="precomposed">ñ</mapping>
<mapping type="composed">ñ</mapping>
<mapping type="standardized">n</mapping>
</char>
<char xml:id="char00D1">
<desc>LATIN CAPITAL LETTER N WITH TILDE</desc>
<charProp>
<localName>entity</localName>
<value>Ntilde</value>
</charProp>
<charProp>
<localName>combined-entity</localName>
<value> Ntilde = N + combtilde</value>
</charProp>
<mapping type="MUFI" subtype="Lat1Suppl">U+00D1</mapping>
<mapping type="MUFI" subtype="Combined">U+00D1 = 004E + 0303</mapping>
<mapping type="precomposed">Ñ</mapping>
<mapping type="composed">Ñ</mapping>
<mapping type="standardized">N</mapping>
</char>
<char xml:id="charn0304">
<desc>LATIN SMALL LETTER N WITH MACRON</desc>
<mapping type="composed">n̄</mapping>
<mapping type="standardized">n</mapping>
</char>
<char xml:id="char0254">
<desc>LATIN SMALL LETTER OPEN O</desc>
<mapping type="precomposed">ɔ</mapping>
<mapping type="standardized">o</mapping>
</char>
<char xml:id="charo0300">
<desc>LATIN SMALL LETTER O WITH GRAVE</desc>
<mapping type="precomposed">ò</mapping>
<mapping type="composed">ò</mapping>
<mapping type="standardized">o</mapping>
</char>
<char xml:id="charo0302">
<desc>LATIN SMALL LETTER O WITH CIRCUMFLEX</desc>
<mapping type="precomposed">ô</mapping>
<mapping type="composed">ô</mapping>
<mapping type="standardized">o</mapping>
</char>
<char xml:id="charo0303">
<desc>LATIN SMALL LETTER O WITH TILDE</desc>
<mapping type="precomposed">õ</mapping><!--00f5-->
<mapping type="composed">õ</mapping>
<mapping type="standardized">o</mapping>
</char>
<char xml:id="charo00F6">
<desc>LATIN SMALL LETTER O WITH DIAERESIS</desc>
<mapping type="MUFI">ö</mapping>
<mapping type="standardized">o</mapping>
</char>
<char xml:id="charo0304">
<desc>LATIN SMALL LETTER O WITH MACRON</desc>
<charProp>
<localName>entity</localName>
<value>omacr</value>
</charProp>
<charProp>
<localName>combined-entity</localName>
<value> omacr = o + combmacr</value>