-
Notifications
You must be signed in to change notification settings - Fork 9
/
uebersichtText.dita
1404 lines (1404 loc) · 75.3 KB
/
uebersichtText.dita
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 topic PUBLIC "-//OASIS//DTD DITA Topic//EN" "topic.dtd">
<topic id="Unbenannt13">
<title>Übersicht über die Elemente im Textbereich</title>
<titlealts>
<navtitle>Elemente im Text-Bereich</navtitle>
</titlealts>
<body>
<p>
Die folgende Tabelle bietet einen Überblick über alle Elemente, die das DTA-Basisformat für den
<codeph><text></codeph>-Bereich vorsieht. Jedem Element sind die jeweils laut DTA-Basisformat
möglichen Attribute und (falls invariabel) Werte zugeordnet. Jedem Element ist ein Level zugeordnet,
welches dessen Verwendungsstatus im DTA-Kernkorpus spezifiziert. Den Elementen sind weiterhin
funktionale Kategorien zugeordnet, welche über deren Verwendungskontexte informieren. Die Attribute
des DTA-Basisformats, die in den meisten der DTA-Elemente verwendet werden können (Universalattribute),
sind in der <xref href="legende.dita#legende/tb-ga">Legende zu den Übersichten</xref> dokumentiert.
Dort findet sich ebenso eine nähere Dokumentation der <xref href="legende.dita#legende/tb-tl">Levels</xref>
und der <xref href="legende.dita#legende/tb-fk">funktionalen Kategorien</xref>.
</p>
<p>
<table>
<tgroup cols="6">
<colspec colnum="1" colname="col1" colwidth="1.18*"/>
<colspec colnum="2" colname="col2" colwidth="2.24*"/>
<colspec colnum="3" colname="col3" colwidth="1.46*"/>
<colspec colnum="4" colname="col4" colwidth="1.46*"/>
<colspec colnum="5" colname="col5" colwidth="1.38*"/>
<colspec colnum="6" colname="col5" colwidth="1.18*"/>
<thead>
<row>
<entry>Element</entry>
<entry>Beschreibung</entry>
<entry namest="col3" nameend="col4">Attribute/Anmerkungen</entry>
<entry>Funktionale Kategorie</entry>
<entry>Level</entry>
</row>
</thead>
<tbody>
<row>
<entry> <codeph>ab</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ab.html"
format="html" scope="external">TEI</xref> </p> </entry>
<entry>Anonymer Block/Container</entry>
<entry namest="col3" nameend="col4"> <i>stattdessen <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-div.html"
format="html" scope="external"> <codeph>div</codeph> </xref>,
<xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-floatingText.html"
format="html" scope="external"> <codeph>floatingText</codeph>
</xref> oder <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-p.html"
format="html" scope="external"> <codeph>p</codeph> </xref>
benutzen</i> </entry>
<entry> <xref href="legende.dita#legende/fk09"
>textStructure</xref> </entry>
<entry>
<p><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></p>
</entry>
</row>
<row>
<entry> <codeph>abbr</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-abbr.html"
format="html" scope="external">TEI</xref>, <xref
href="abkuerzung.dita">DTABf</xref> </p> </entry>
<entry>Abkürzung</entry>
<entry namest="col3" nameend="col4"/>
<entry> <xref href="legende.dita#legende/fk07"
>phraseStructure</xref>, <xref href="legende.dita#legende/fk04"
>editorial</xref> </entry>
<entry><xref href="legende.dita#legende/l03">3 (fakultativ)</xref>
</entry>
</row>
<row>
<entry> <codeph>actor</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-actor.html"
format="html" scope="external">TEI</xref>, <xref
href="drFiguren.dita">DTABf</xref> </p> </entry>
<entry>Name eines Schauspielers innerhalb einer
Darstellerliste</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk03">drama</xref>, <xref
href="legende.dita#legende/fk07">phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry> <codeph>add</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-add.html"
format="html" scope="external">TEI</xref>, <xref
href="msAddDel.dita">DTABf</xref> </p> </entry>
<entry>Hinzufügung durch den Autor</entry>
<entry namest="col3" nameend="col4">nur in Manuskripten zu verwenden</entry>
<entry><xref href="legende.dita#legende/fk12">manuscripts</xref>, <xref
href="legende.dita#legende/fk07">phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry> <codeph>argument</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-argument.html"
format="html" scope="external">TEI</xref>, <xref
href="teaser.dita">DTABf</xref> </p> </entry>
<entry>Inhaltszusammenfassung</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry> <codeph>back</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-back.html"
format="html" scope="external">TEI</xref>, <xref
href="TEIStruktur.dita">DTABf</xref>, <xref href="anhAllg.dita"
>DTABf2</xref> </p> </entry>
<entry>Anhang</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l01">1 (notwendig)</xref>
</entry>
</row>
<row>
<entry> <codeph>bibl</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-bibl.html"
format="html" scope="external">TEI</xref>, <xref
href="bibliographie.dita">DTABf</xref>, <xref
href="zitateEpigraphe.dita">DTABf2</xref> </p> </entry>
<entry>bibliographische Angabe</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk01">citations</xref>,
<xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry> <codeph>body</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-body.html"
format="html" scope="external">TEI</xref> <xref
href="TEIStruktur.dita">DTABf</xref>, <xref href="bodyAllg.dita"
>DTABf2</xref></p> </entry>
<entry>Textkörper</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l01">1 (notwendig)</xref>
</entry>
</row>
<row>
<entry><codeph>byline</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-byline.html"
format="html" scope="external">TEI</xref> <xref
href="tbAllg.dita">DTABf</xref> </p> </entry>
<entry>Angabe zur Urheberschaft</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>c</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-c.html"
format="html" scope="external">TEI</xref> </p> </entry>
<entry>ein Zeichen</entry>
<entry namest="col3" nameend="col4"><i>wird im DTA-Korpus standoff
annotiert</i></entry>
<entry><xref href="legende.dita#legende/fk07"
>phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry><codeph>castGroup</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-castGroup.html"
format="html" scope="external">TEI</xref> <xref
href="drFiguren.dita">DTABf</xref></p></entry>
<entry>Gruppe von Personen (Drama)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk03">drama</xref>, <xref
href="legende.dita#legende/fk09">textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>castItem</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-castItem.html"
format="html" scope="external">TEI</xref> <xref
href="drFiguren.dita">DTABf</xref> </p> </entry>
<entry>Beschreibung einer Rolle (Drama)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk03">drama</xref>, <xref
href="legende.dita#legende/fk09">textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>castList</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-castList.html"
format="html" scope="external">TEI</xref> <xref
href="drFiguren.dita">DTABf</xref> </p> </entry>
<entry>Liste der handelnden Personen (Drama)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk03">drama</xref>, <xref
href="legende.dita#legende/fk09">textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>cb</codeph> <p outputclass="sg">Doku:
<xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-cb.html"
format="html" scope="external">TEI</xref>, <xref
href="spalte.dita">DTABf</xref></p></entry>
<entry morerows="1">Spaltenumbruch</entry>
<entry> <codeph>@n</codeph> </entry>
<entry> Spaltennummer </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry morerows="1"><xref href="legende.dita#legende/l01">1
(notwendig)</xref> </entry>
</row>
<row>
<entry> <codeph>@type</codeph> </entry>
<entry> [<codeph>"end"</codeph>, <codeph>"start"</codeph>]
</entry>
</row>
<row>
<entry morerows="2"><codeph>cell</codeph> <p outputclass="sg"
>Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-cell.html"
format="html" scope="external">TEI</xref>, <xref
href="tabAllg.dita">DTABf</xref></p></entry>
<entry morerows="2">Tabellenzelle</entry>
<entry> <codeph>@cols</codeph> </entry>
<entry> Spaltenumfang </entry>
<entry morerows="2"><xref href="legende.dita#legende/fk08"
>tables</xref></entry>
<entry morerows="2"><xref href="legende.dita#legende/l01">1
(notwendig)</xref> </entry>
</row>
<row>
<entry> <codeph>@role</codeph> </entry>
<entry> Funktion des Zelleninhalts für die Tabelle
[<codeph>"label"</codeph>] </entry>
</row>
<row>
<entry> <codeph>@rows</codeph> </entry>
<entry> Zeilenumfang </entry>
</row>
<row>
<entry><codeph>choice</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-choice.html"
format="html" scope="external">TEI</xref>, <xref
href="eeAllg.dita">DTABf</xref></p></entry>
<entry>Auswahl bei Änderungen gegenüber der Vorlage
(Transkription/Encoding)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk04"
>editorial</xref></entry>
<entry><xref href="legende.dita#legende/l03">3 (fakultativ)</xref>
</entry>
</row>
<row>
<entry><codeph>cit</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-cit.html"
format="html" scope="external">TEI</xref>, <xref
href="zitateEpigraphe.dita">DTABf</xref></p></entry>
<entry>Zitat</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk01">citations</xref>,
<xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>closer</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-closer.html"
format="html" scope="external">TEI</xref>, <xref
href="brAllg.dita">DTABf</xref></p></entry>
<entry>beschließender Text (Brief)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk06">letter</xref>, <xref
href="legende.dita#legende/fk09">textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>corr</codeph> <p outputclass="sg"
>Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-corr.html"
format="html" scope="external">TEI</xref>, <xref
href="eeDruckfehler.dita">DTABf</xref></p></entry>
<entry morerows="1">(bei Korrekturen:) korrigierte Form</entry>
<entry> <codeph>@resp</codeph> </entry>
<entry> Manuskripte: Person, die verantwortlich ist für die
Ergänzung [<codeph>"[pointer]"</codeph>] </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk04"
>editorial</xref></entry>
<entry morerows="1"><xref href="legende.dita#legende/l03">3
(fakultativ)</xref> </entry>
</row>
<row>
<entry> <codeph>@type</codeph> </entry>
<entry> Ursprung der Korrektur [<codeph>"addenda"</codeph>,
<codeph>"corrigenda"</codeph>, <codeph>"editorial"</codeph>]
</entry>
</row>
<row>
<entry><codeph>date</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-date.html"
format="html" scope="external">TEI</xref>, <xref href="datum.dita">DTABf</xref> </p> </entry>
<entry>Datumsangabe</entry>
<entry> <codeph>@when</codeph> </entry>
<entry> Datum in ISO-8601-Form </entry>
<entry><xref href="legende.dita#legende/fk07"
>phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l03">3 (fakultativ)</xref>
</entry>
</row>
<row>
<entry><codeph>dateline</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-dateline.html"
format="html" scope="external">TEI</xref>, <xref
href="brAllg.dita">DTABf</xref>, <xref
href="geLyrikband.dita">DTABf2</xref></p></entry>
<entry>Abfassungsort und -zeit im Brief</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk06">letter</xref>, <xref
href="legende.dita#legende/fk09">textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry> <codeph>del</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-del.html"
format="html" scope="external">TEI</xref>, <xref
href="msAddDel.dita">DTABf</xref> </p> </entry>
<entry>Tilgung durch den Autor</entry>
<entry namest="col3" nameend="col4">nur in Manuskripten zu verwenden</entry>
<entry><xref href="legende.dita#legende/fk12">manuscripts</xref>, <xref
href="legende.dita#legende/fk07">phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>div</codeph> <p outputclass="sg">Doku:
<xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-div.html"
format="html" scope="external">TEI</xref>, <xref href="div.dita"
>DTABf</xref></p></entry>
<entry morerows="1">Textabschnitt</entry>
<entry> <codeph>@n</codeph> </entry>
<entry> Strukturtiefe des Textabschnittes </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk09"
>textStructure</xref>, <xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry morerows="1"><xref href="legende.dita#legende/l01">1
(notwendig)</xref> </entry>
</row>
<row>
<entry> <codeph>@type</codeph> </entry>
<entry> Art des Textabschnittes [<codeph>"abbreviations"</codeph>,
<codeph>"act"</codeph>, <codeph>"advertisement"</codeph>,
<codeph>"appendix"</codeph>, <codeph>"bibliography"</codeph>,
<codeph>"chapter"</codeph>, <codeph>"contents"</codeph>,
<codeph>"copyright"</codeph>, <codeph>"corrigenda"</codeph>,
<codeph>"dedication"</codeph>, <codeph>"diaryEntry"</codeph>,
<codeph>"edition"</codeph>, <codeph>"figures"</codeph>,
<codeph>"frontispiece"</codeph>, <codeph>"imprimatur"</codeph>,
<codeph>"imprint"</codeph>, <codeph>"index"</codeph>,
<codeph>"letter"</codeph>, <codeph>"lexiconEntry"</codeph>,
<codeph>"poem"</codeph>, <codeph>"postface"</codeph>,
<codeph>"preface"</codeph>, <codeph>"recipe"</codeph>,
<codeph>"scene"</codeph>, <codeph>"session"</codeph>] </entry>
</row>
<row>
<entry><codeph>div1</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-div1.html"
format="html" scope="external">TEI</xref>, </p></entry>
<entry>Textabschnitt mit Strukturtiefe 1</entry>
<entry namest="col3" nameend="col4"><i>stattdessen <div n="1">
benutzen</i></entry>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref>, <xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry><codeph>div2</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-div2.html"
format="html" scope="external">TEI</xref>, </p></entry>
<entry>Textabschnitt mit Strukturtiefe 2</entry>
<entry namest="col3" nameend="col4"><i>stattdessen <div n="2">
benutzen</i></entry>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref>, <xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry><codeph>div3</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-div3.html"
format="html" scope="external">TEI</xref></p></entry>
<entry>Textabschnitt mit Strukturtiefe 3</entry>
<entry namest="col3" nameend="col4"><i>stattdessen <div n="3">
benutzen</i></entry>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref>, <xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry><codeph>div4</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-div4.html"
format="html" scope="external">TEI</xref></p></entry>
<entry>Textabschnitt mit Strukturtiefe 4</entry>
<entry namest="col3" nameend="col4"><i>stattdessen <div n="4">
benutzen</i></entry>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref>, <xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry><codeph>div5</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-div5.html"
format="html" scope="external">TEI</xref></p></entry>
<entry>Textabschnitt mit Strukturtiefe 5</entry>
<entry namest="col3" nameend="col4"><i>stattdessen <div n="5">
benutzen</i></entry>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref>, <xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry><codeph>div6</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-div6.html"
format="html" scope="external">TEI</xref></p></entry>
<entry>Textabschnitt mit Strukturtiefe 6</entry>
<entry namest="col3" nameend="col4"><i>stattdessen <div n="6">
benutzen</i></entry>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref>, <xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry><codeph>div7</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-div7.html"
format="html" scope="external">TEI</xref></p></entry>
<entry>Textabschnitt mit Strukturtiefe 7</entry>
<entry namest="col3" nameend="col4"><i>stattdessen <div n="7">
benutzen</i></entry>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref>, <xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry><codeph>docAuthor</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-docAuthor.html"
format="html" scope="external">TEI</xref>, <xref
href="tbAllg.dita">DTABf</xref></p></entry>
<entry>Autor (Dokument)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk10"
>titlepage</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>docDate</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-docDate.html"
format="html" scope="external">TEI</xref>, <xref
href="tbAllg.dita">DTABf</xref></p></entry>
<entry>Erscheinungsjahr (Dokument)</entry>
<entry> <codeph>@when</codeph> </entry>
<entry> Datum in ISO-8601-Form </entry>
<entry><xref href="legende.dita#legende/fk10"
>titlepage</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>docEdition</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-docEdition.html"
format="html" scope="external">TEI</xref>, <xref
href="tbAllg.dita">DTABf</xref></p></entry>
<entry>Angaben zur Ausgabe (Dokument)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk10"
>titlepage</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>docImprint</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-docImprint.html"
format="html" scope="external">TEI</xref>, <xref
href="tbAllg.dita">DTABf</xref></p></entry>
<entry>Impressum (Dokument)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk10"
>titlepage</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>docTitle</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-docTitle.html"
format="html" scope="external">TEI</xref>, <xref
href="tbAllg.dita">DTABf</xref></p></entry>
<entry>Titel (Dokument)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk10"
>titlepage</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>epigraph</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-epigraph.html"
format="html" scope="external">TEI</xref>, <xref
href="epigraphe.dita">DTABf</xref></p></entry>
<entry>Epigraph</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk01">citations</xref>,
<xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>expan</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-expan.html"
format="html" scope="external">TEI</xref>, <xref
href="abkuerzung.dita">DTABf</xref></p></entry>
<entry>Abkürzungsausschrift</entry>
<entry> <codeph>@resp</codeph> </entry>
<entry> Manuskripte: Person, die verantwortlich ist für die
Ergänzung [<codeph>"[pointer]"</codeph>] </entry>
<entry><xref href="legende.dita#legende/fk04"
>editorial</xref></entry>
<entry><xref href="legende.dita#legende/l03">3 (fakultativ)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>figure</codeph> <p outputclass="sg"
>Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-figure.html"
format="html" scope="external">TEI</xref>, <xref
href="abbKennzeichnung.dita">DTABf</xref></p></entry>
<entry morerows="1">Abbildung</entry>
<entry><codeph>@facs</codeph> </entry>
<entry> Link zu einer Darstellung der Original-Abbildung
[<codeph>"[pointer]"</codeph>] </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk05"
>floats</xref></entry>
<entry morerows="1"><xref href="legende.dita#legende/l01">1
(notwendig)</xref> </entry>
</row>
<row>
<entry> <codeph>@type</codeph> </entry>
<entry> Art der Abbildung [<codeph>"notatedMusic"</codeph>]
</entry>
</row>
<row>
<entry><codeph>floatingText</codeph> <p outputclass="sg">Doku:
<xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-floatingText.html"
format="html" scope="external">TEI</xref>, <xref
href="brEinschub.dita">DTABf</xref></p></entry>
<entry>unterbrechender Textabschnit</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk05"
>floats</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>foreign</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-foreign.html"
format="html" scope="external">TEI</xref>, <xref
href="fremdsprachlMaterial.dita">DTABf</xref></p></entry>
<entry>fremdsprachliches Material</entry>
<entry> <codeph>@xml:lang</codeph> </entry>
<entry> Sprachcode (ISO 639-3) </entry>
<entry><xref href="legende.dita#legende/fk07"
>phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l03">3 (fakultativ)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>formula</codeph> <p outputclass="sg"
>Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-formula.html"
format="html" scope="external">TEI</xref>, <xref
href="formelnAllg.dita">DTABf</xref></p></entry>
<entry morerows="1">Formel</entry>
<entry> <codeph>@facs</codeph> </entry>
<entry> verweist auf eine graphische Darstellung der
Formeltranskription </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk05"
>floats</xref>, <xref href="legende.dita#legende/fk07"
>phraseStructure</xref> </entry>
<entry morerows="1"><xref href="legende.dita#legende/l01">1
(notwendig)</xref> </entry>
</row>
<row>
<entry> <codeph>@notation</codeph> </entry>
<entry> Art der Notierung [<codeph>"MathML"</codeph>,
<codeph>"TeX"</codeph>] </entry>
</row>
<row>
<entry><codeph>front</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-front.html"
format="html" scope="external">TEI</xref>, <xref
href="TEIStruktur.dita">DTABf</xref>, <xref
href="frontAllg.dita">DTABf2</xref>, </p></entry>
<entry>Titelei (Werk)</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry><xref href="legende.dita#legende/l01">1 (notwendig)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>fw</codeph> <p outputclass="sg">Doku:
<xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-fw.html"
format="html" scope="external">TEI</xref>, <xref
href="ohAllg.dita">DTABf</xref></p></entry>
<entry morerows="1">Elemente der Druckplatte</entry>
<entry><codeph>@place</codeph> </entry>
<entry> Position [<codeph>"bottom"</codeph>,
<codeph>"top"</codeph>] </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk05"
>floats</xref></entry>
<entry morerows="1"><xref href="legende.dita#legende/l02">2
(empfohlen)</xref> </entry>
</row>
<row>
<entry> <codeph>@type</codeph> </entry>
<entry> Art des Elements [<codeph>"catch"</codeph>,
<codeph>"header"</codeph>, <codeph>"pageNum"</codeph>,
<codeph>"sig"</codeph>] </entry>
</row>
<row>
<entry><codeph>g</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-g.html"
format="html" scope="external">TEI</xref></p></entry>
<entry>Sonderzeichen (außerhalb von Unicode)</entry>
<entry namest="col3" nameend="col4"><i>stattdessen U+FFFC
benutzen</i></entry>
<entry><xref href="legende.dita#legende/fk07"
>phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry morerows="2"><codeph>gap</codeph> <p outputclass="sg">Doku:
<xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-gap.html"
format="html" scope="external">TEI</xref>, <xref
href="gapSupplied.dita">DTABf</xref></p></entry>
<entry morerows="2">fehlendes Textmaterial</entry>
<entry><codeph>@quantity</codeph> </entry>
<entry> Umfang des Textverlusts </entry>
<entry morerows="2"><xref href="legende.dita#legende/fk04"
>editorial</xref></entry>
<entry morerows="2"><xref href="legende.dita#legende/l01">1
(notwendig)</xref> </entry>
</row>
<row>
<entry> <codeph>@reason</codeph> </entry>
<entry> Grund des Textverlusts [<codeph>"fm"</codeph>,
<codeph>"illegible"</codeph>, <codeph>"insignificant"</codeph>,
<codeph>"lost"</codeph>] </entry>
</row>
<row>
<entry> <codeph>@unit</codeph> </entry>
<entry> Einheit, in welcher der Umfang des Textverlusts angegeben
wird [<codeph>"chars"</codeph>, <codeph>"lines"</codeph>,
<codeph>"pages"</codeph>, <codeph>"words"</codeph>] </entry>
</row>
<row>
<entry><codeph>head</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-head.html"
format="html" scope="external">TEI</xref>, <xref href="div.dita"
>DTABf</xref>, <xref href="tabAllg.dita">DTABf2</xref>, <xref
href="liAllg.dita">DTABf3</xref>, <xref
href="abbKennzeichnung.dita">DTABf4</xref>, <xref
href="geProsa.dita">DTABf5</xref>, </p> </entry>
<entry>Überschrift</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l01">1 (notwendig)</xref>
</entry>
</row>
<row>
<entry><codeph>hi</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-hi.html"
format="html" scope="external">TEI</xref>, <xref
href="typogrAllg.dita">DTABf</xref></p></entry>
<entry>Hervorhebung</entry>
<entry> <codeph>@rendition</codeph> </entry>
<entry> das Mittel der Hervorhebung </entry>
<entry><xref href="legende.dita#legende/fk07"
>phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>imprimatur</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-imprimatur.html"
format="html" scope="external">TEI</xref>, <xref
href="tbAllg.dita">DTABf</xref></p></entry>
<entry>Druckgenehmigung</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry><codeph>item</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-item.html"
format="html" scope="external">TEI</xref>, <xref
href="liAllg.dita">DTABf</xref></p></entry>
<entry>Listenelement</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l01">1 (notwendig)</xref>
</entry>
</row>
<row>
<entry><codeph>l</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-l.html"
format="html" scope="external">TEI</xref>, <xref
href="geProsa.dita">DTABf</xref>, <xref href="geLyrikband.dita"
>DTABf2</xref></p></entry>
<entry>Zeile bzw. Vers</entry>
<entry> <codeph>@n</codeph> </entry>
<entry> Versnummer (aus der Vorlage) </entry>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref>, <xref href="legende.dita#legende/fk11"
>verse</xref></entry>
<entry><xref href="legende.dita#legende/l01">1 (notwendig)</xref>
</entry>
</row>
<row>
<entry><codeph>label</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-label.html"
format="html" scope="external">TEI</xref></p></entry>
<entry>Einleitung eines Postscriptums</entry>
<entry namest="col3" nameend="col4"><i>sollte mit im <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-postscript.html"
format="html" scope="external"> <codeph>postscript</codeph>
</xref> stehen</i></entry>
<entry><xref href="legende.dita#legende/fk06">letter</xref>, <xref
href="legende.dita#legende/fk07">phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l04">4
(unzulässig)</xref></entry>
</row>
<row>
<entry><codeph>lb</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-lb.html"
format="html" scope="external">TEI</xref>, <xref
href="lbAllg.dita">DTABf</xref></p></entry>
<entry>Zeilenumbruch</entry>
<entry> <codeph>@n</codeph> </entry>
<entry> gedruckte Zeilennummer </entry>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>lg</codeph> <p outputclass="sg">Doku:
<xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-lg.html"
format="html" scope="external">TEI</xref>, <xref
href="geProsa.dita">DTABf</xref></p></entry>
<entry morerows="1">Gruppe von Versen</entry>
<entry><codeph>@n</codeph> </entry>
<entry> (bei Strophen:) Strophennummer </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk11"
>verse</xref>, <xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry morerows="1"><xref href="legende.dita#legende/l01">1
(notwendig)</xref> </entry>
</row>
<row>
<entry> <codeph>@type</codeph> </entry>
<entry> Art der Versgruppe [<codeph>"poem"</codeph>] </entry>
</row>
<row>
<entry><codeph>list</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-list.html"
format="html" scope="external">TEI</xref>, <xref
href="liAllg.dita">DTABf</xref></p></entry>
<entry>Liste</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk05">floats</xref>, <xref
href="legende.dita#legende/fk09">textStructure</xref> </entry>
<entry><xref href="legende.dita#legende/l01">1 (notwendig)</xref>
</entry>
</row>
<row>
<entry><codeph>listBibl</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-listBibl.html"
format="html" scope="external">TEI</xref>, <xref
href="bibliographie.dita">DTABf</xref></p></entry>
<entry>Liste bibliographischer Angaben</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l03">3 (fakultativ)</xref>
</entry>
</row>
<row>
<entry> <codeph>metamark</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-metamark.html"
format="html" scope="external">TEI</xref>, <xref
href="msEinweisung.dita">DTABf</xref> </p> </entry>
<entry>Einweisung durch den Autor</entry>
<entry namest="col3" nameend="col4">nur in Manuskripten zu verwenden</entry>
<entry><xref href="legende.dita#legende/fk12">manuscripts</xref>, <xref
href="legende.dita#legende/fk07">phraseStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>milestone</codeph> <p outputclass="sg"
>Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-milestone.html"
format="html" scope="external">TEI</xref>, <xref
href="horizontaleLinie.dita">DTABf</xref></p></entry>
<entry morerows="1">Text-/Abschnittsseparator</entry>
<entry><codeph>@rendition</codeph> </entry>
<entry> Gestalt der Textunterbrechung [<codeph>"#hr"</codeph>,
<codeph>"#hrBlue"</codeph>, <codeph>"#hrRed"</codeph>,
<codeph>"#vr"</codeph>] </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry morerows="1"><xref href="legende.dita#legende/l02">2
(empfohlen)</xref> </entry>
</row>
<row>
<entry> <codeph>@unit</codeph> </entry>
<entry> Textunterbrechung (horizontale Linie)
[<codeph>"section"</codeph>] </entry>
</row>
<row>
<entry morerows="2"><codeph>name</codeph> <p outputclass="sg"
>Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-name.html"
format="html" scope="external">TEI</xref>, <xref
href="eigenname.dita">DTABf</xref></p></entry>
<entry morerows="2">Eigenname (alles außer Personen, Orte und
Organisationen)</entry>
<entry><codeph>@full</codeph> </entry>
<entry> Vollständigkeit des Namens [<codeph>"abb"</codeph>] </entry>
<entry morerows="2"><xref href="legende.dita#legende/fk07"
>phraseStructure</xref></entry>
<entry morerows="2"><xref href="legende.dita#legende/l03">3
(fakultativ)</xref> </entry>
</row>
<row>
<entry> <codeph>@ref</codeph> </entry>
<entry>Referenz auf eine Ressource, die den jeweiligen Eigennamen
näher spezifiziert [<codeph>"[URI]"</codeph>] </entry>
</row>
<row>
<entry> <codeph>@type</codeph> </entry>
<entry> Art des Eigennamens [<codeph>"artificialWork"</codeph>]
</entry>
</row>
<row>
<entry morerows="2"> <codeph>note</codeph> <p outputclass="sg"
>Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-note.html"
format="html" scope="external">TEI</xref>, <xref
href="marginalie.dita">DTABf</xref>, <xref href="fussnote.dita"
>DTABf2</xref>, <xref href="endnote.dita">DTABf3</xref>, <xref
href="sachkommentar.dita">DTABf4</xref> </p> </entry>
<entry morerows="2">Anmerkung (Fußnote, Endnote,
Marginalie)</entry>
<entry><codeph>@n</codeph> </entry>
<entry> Fuß-/Endnotenzeichen/-nummer </entry>
<entry morerows="2"><xref href="legende.dita#legende/fk05"
>floats</xref></entry>
<entry morerows="2"><xref href="legende.dita#legende/l01">1
(notwendig)</xref> </entry>
</row>
<row>
<entry> <codeph>@place</codeph> </entry>
<entry> Position [<codeph>"end"</codeph>, <codeph>"foot"</codeph>,
<codeph>"left"</codeph>, <codeph>"right"</codeph>] </entry>
</row>
<row>
<entry> <codeph>@type</codeph> </entry>
<entry> Art der Anmerkung [<codeph>"editorial"</codeph>] </entry>
</row>
<row>
<entry><codeph>opener</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-opener.html"
format="html" scope="external">TEI</xref>, <xref
href="brAllg.dita">DTABf</xref></p></entry>
<entry>Briefbeginn/-kopf</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk06">letter</xref>, <xref
href="legende.dita#legende/fk09">textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l02">2 (empfohlen)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>orgName</codeph> <p outputclass="sg"
>Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-orgName.html"
format="html" scope="external">TEI</xref>, <xref
href="eigenname.dita">DTABf</xref></p></entry>
<entry morerows="1">Eigenname (Organisation)</entry>
<entry><codeph>@full</codeph> </entry>
<entry> Vollständigkeit des Namens [<codeph>"abb"</codeph>] </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk07"
>phraseStructure</xref></entry>
<entry morerows="1"><xref href="legende.dita#legende/l03">3
(fakultativ)</xref> </entry>
</row>
<row>
<entry> <codeph>@ref</codeph> </entry>
<entry>Referenz auf eine Ressource, die den jeweiligen Eigennamen
näher spezifiziert [<codeph>"[URI]"</codeph>] </entry>
</row>
<row>
<entry><codeph>orig</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-orig.html"
format="html" scope="external">TEI</xref>, <xref
href="normalisierung.dita">DTABf</xref></p></entry>
<entry>(bei Normalisierungen:) der Vorlage entsprechende
Schreibung</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk07"
>phraseStructure</xref>, <xref href="legende.dita#legende/fk04"
>editorial</xref></entry>
<entry><xref href="legende.dita#legende/l03">3 (fakultativ)</xref>
</entry>
</row>
<row>
<entry><codeph>p</codeph> <p outputclass="sg">Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-p.html"
format="html" scope="external">TEI</xref>, <xref
href="absatz.dita">DTABf</xref></p></entry>
<entry>Absatz</entry>
<entry namest="col3" nameend="col4"/>
<entry><xref href="legende.dita#legende/fk09"
>textStructure</xref></entry>
<entry><xref href="legende.dita#legende/l01">1 (notwendig)</xref>
</entry>
</row>
<row>
<entry morerows="1"><codeph>pb</codeph> <p outputclass="sg">Doku:
<xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-pb.html"
format="html" scope="external">TEI</xref>, <xref
href="seitenFacsNr.dita">DTABf</xref></p></entry>
<entry morerows="1">Seitenumbruch</entry>
<entry> <codeph>@facs</codeph> </entry>
<entry> Verweis auf Faksimile </entry>
<entry morerows="1"><xref href="legende.dita#legende/fk02"
>documentStructure</xref></entry>
<entry morerows="1"><xref href="legende.dita#legende/l01">1
(notwendig)</xref> </entry>
</row>
<row>
<entry> <codeph>@n</codeph> </entry>
<entry> Seitennummer </entry>
</row>
<row>
<entry morerows="1"><codeph>persName</codeph> <p outputclass="sg"
>Doku: <xref
href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-persName.html"
format="html" scope="external">TEI</xref>, <xref
href="eigenname.dita">DTABf</xref></p></entry>
<entry morerows="1">Eigenname (Person)</entry>