Newer
Older
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"?>
<rdf:RDF xmlns:dct="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#">
<skos:ConceptScheme rdf:about="http://uri.hab.de/vocab/wbb">
<skos:prefLabel xml:lang="de">Klassifikation der Wolfenbütteler Bibliographie zur Geschichte des Buchwesens im deutschen Sprachgebiet : 1840 - 1980</skos:prefLabel>
<dct:publisher>
<foaf:Organization rdf:about="http://uri.hab.de/instance/organization/habwf">
<skos:prefLabel>Herzog August Bibliothek Wolfenbüttel</skos:prefLabel>
</foaf:Organization>
</dct:publisher>
<dct:license>
<dct:LicenseDocument>
<owl:sameAs rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/"/>
<skos:prefLabel>CC0 1.0 Universal</skos:prefLabel>
</dct:LicenseDocument>
</dct:license>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-08-31</dct:modified>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-03-31</dct:created>
</skos:ConceptScheme>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.1.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Lob und Fluch des Buches und des Buchdrucks</skos:prefLabel>
<skos:notation>0.1.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.10">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchmuseen, Literaturmuseen und -archive</skos:prefLabel>
<skos:notation>0.10</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.10.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buch- und Literaturmuseen, allgemein</skos:prefLabel>
<skos:notation>0.10.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.10.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Mehrere Buch- und Literaturmuseen</skos:prefLabel>
<skos:notation>0.10.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.10.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Buchmuseen, auch Papiermuseen</skos:prefLabel>
<skos:notation>0.10.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.10.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Literaturmuseen und -archive, literarische Sammlungen und Institute</skos:prefLabel>
<skos:notation>0.10.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.11">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Ausstellungen zur Geschichte des Buches und des Buchwesens, moderne Buchausstellungen</skos:prefLabel>
<skos:notation>0.11</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.12">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Wettbewerbe, Auszeichnungen, Preise</skos:prefLabel>
<skos:notation>0.12</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.12.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Wettbewerbe, Auszeichnungen, Preise, allgemeines</skos:prefLabel>
<skos:notation>0.12.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.12.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Das Schöne Buch</skos:prefLabel>
<skos:notation>0.12.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.12.1.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Das Schön(s)te Buch, allgemein</skos:prefLabel>
<skos:notation>0.12.1.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.12.1.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Das Schön(s)te Buch, Verzeichnisse bestimmter Jahre, Berichte</skos:prefLabel>
<skos:notation>0.12.1.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.12.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Kinder- und Jugendbuchauszeichnungen und -preise</skos:prefLabel>
<skos:notation>0.12.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.13">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Geschichte des Buchwesens insgesamt</skos:prefLabel>
<skos:notation>0.13</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.13.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einführungen, Gesamtdarstellungen, Synthesen</skos:prefLabel>
<skos:notation>0.13.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.13.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Das Buchwesen in einzelnen Epochen</skos:prefLabel>
<skos:notation>0.13.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.13.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Das Buchwesen insgesamt nach geographischen Gesichtspunkten</skos:prefLabel>
<skos:notation>0.13.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.14">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Kulturgeschichte des Buches, Buchkultur (auch Buchtage und -wochen)</skos:prefLabel>
<skos:notation>0.14</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.15">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buch und Buchwesen in Literatur und Kunst</skos:prefLabel>
<skos:notation>0.15</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.16">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bedeutung und Rolle des Buches in der Gegenwart</skos:prefLabel>
<skos:notation>0.16</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.16.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bedeutung und Rolle des Buches, allgemeines</skos:prefLabel>
<skos:notation>0.16.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.16.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Das Buch als Kommunikationsmedium, Buch und andere Medien</skos:prefLabel>
<skos:notation>0.16.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.16.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Die Zukunft des Buches, das Buch der Zukunft</skos:prefLabel>
<skos:notation>0.16.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.17">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzel- und Sonderfragen; Varia und Kuriosa</skos:prefLabel>
<skos:notation>0.17</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bibliographie</skos:prefLabel>
<skos:notation>0.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bibliographie, Allgemeines</skos:prefLabel>
<skos:notation>0.2.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Geschichte der Bibliographie</skos:prefLabel>
<skos:notation>0.2.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Methodik der Bibliographie, Technik des Bibliographierens</skos:prefLabel>
<skos:notation>0.2.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.2.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Allgemeines, Gesamtdarstellungen, Technik</skos:prefLabel>
<skos:notation>0.2.2.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.2.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Klassifikation und Systematik</skos:prefLabel>
<skos:notation>0.2.2.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.2.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Dokumentation und Informationswesen</skos:prefLabel>
<skos:notation>0.2.2.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Typen der Bibliographie, einzelne Bibliographien</skos:prefLabel>
<skos:notation>0.2.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.3.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Typen der Bibliographie, Allgemeines</skos:prefLabel>
<skos:notation>0.2.3.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.3.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Nationalbibliographie(n); nationale Bibliographie(n)</skos:prefLabel>
<skos:notation>0.2.3.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.3.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Sonstige Bibliographien</skos:prefLabel>
<skos:notation>0.2.3.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bibliographische Institutionen und Gesellschaften</skos:prefLabel>
<skos:notation>0.2.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.5">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Der Bibliograph</skos:prefLabel>
<skos:notation>0.2.5</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.5.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Der Bibliograph, allgemein</skos:prefLabel>
<skos:notation>0.2.5.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.5.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Mehrere Bibliographen</skos:prefLabel>
<skos:notation>0.2.5.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.5.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Bibliographen, alphabetisch</skos:prefLabel>
<skos:notation>0.2.5.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.2.6">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bibliographie, Einzelfragen</skos:prefLabel>
<skos:notation>0.2.6</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Lexika, Sachwörterbücher zur Geschichte des Buchwesens, Hilfsmittel</skos:prefLabel>
<skos:notation>0.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Quellen- und Abbildungswerke, übergreifend</skos:prefLabel>
<skos:notation>0.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.6">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Fest- und Gedenkschriften</skos:prefLabel>
<skos:notation>0.6</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.6.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Fest- und Gedenkschriften für Personen, alphabetisch</skos:prefLabel>
<skos:notation>0.6.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.7">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Sammelwerke mehrerer Verfasser</skos:prefLabel>
<skos:notation>0.7</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.8">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Gesammelte Werke einzelner Verfasser</skos:prefLabel>
<skos:notation>0.8</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.9">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchgeschichtsforschung</skos:prefLabel>
<skos:notation>0.9</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.9.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchgeschichtsforschung, allgemein; Gesamtdarstellungen, Überblicke</skos:prefLabel>
<skos:notation>0.9.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.9.0.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchgeschichtsforschung, Einzelfragen</skos:prefLabel>
<skos:notation>0.9.0.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.9.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bibliographien, Literaturverzeichnisse zur Geschichte des Buchwesens</skos:prefLabel>
<skos:notation>0.9.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.9.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Forschungsberichte, Sammelrezensionen</skos:prefLabel>
<skos:notation>0.9.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.9.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Institutionen der Buchgeschichtsforschung</skos:prefLabel>
<skos:notation>0.9.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.9.5">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Buchgeschichtsforscher, alphabetisch</skos:prefLabel>
<skos:notation>0.9.5</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N0.9.6">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Analytische Druckforschung</skos:prefLabel>
<skos:notation>0.9.6</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Der Autor, allgemein</skos:prefLabel>
<skos:notation>1.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.0.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schriftsteller-Lexika</skos:prefLabel>
<skos:notation>1.0.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.0.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autor und Buch(wesen)</skos:prefLabel>
<skos:notation>1.0.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.0.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Pseudonym, Anonym(a)</skos:prefLabel>
<skos:notation>1.0.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.0.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelfragen</skos:prefLabel>
<skos:notation>1.0.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Sozialgeschichte des Autors</skos:prefLabel>
<skos:notation>1.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.1.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Sozialgeschichte des Autors, allgemein</skos:prefLabel>
<skos:notation>1.1.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.1.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autorenvergütung, Autorenhonorar</skos:prefLabel>
<skos:notation>1.1.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.10">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Literarisches Leben, literarischer Markt, literarische Salons; Sozialgeschichte der Literatur</skos:prefLabel>
<skos:notation>1.10</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schriftstellerischer Schaffensprozess, Arbeitstechnik des Autors</skos:prefLabel>
<skos:notation>1.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autoren-Vereinigungen und Organisationen</skos:prefLabel>
<skos:notation>1.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.3.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autoren-Vereinigungen, allgemein</skos:prefLabel>
<skos:notation>1.3.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.3.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Autoren-Vereinigungen und Organisationen, alphabetisch</skos:prefLabel>
<skos:notation>1.3.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.3.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Weitere Vereinigungen</skos:prefLabel>
<skos:notation>1.3.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.3.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Tagungen und Kongresse</skos:prefLabel>
<skos:notation>1.3.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.3.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Literarische Vereine, Sprachgesellschaften</skos:prefLabel>
<skos:notation>1.3.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autor und Öffentlichkeit</skos:prefLabel>
<skos:notation>1.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.4.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autor und Gesellschaft, allgemein</skos:prefLabel>
<skos:notation>1.4.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.4.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autor und Publikum, Autor und Leser</skos:prefLabel>
<skos:notation>1.4.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.4.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Widmungen, Dedikationen</skos:prefLabel>
<skos:notation>1.4.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.5">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autor-Verleger Beziehung</skos:prefLabel>
<skos:notation>1.5</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.5.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autor-Verleger Beziehung, allgemein</skos:prefLabel>
<skos:notation>1.5.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.5.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Autoren und Verleger Beziehungen, alphabetisch</skos:prefLabel>
<skos:notation>1.5.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.6">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Rechtsfragen, geistiges Eigentum, Urheberrecht</skos:prefLabel>
<skos:notation>1.6</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.6.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Geistiges Eigentum, Urheberrecht, allgemein</skos:prefLabel>
<skos:notation>1.6.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.6.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelfragen und -probleme</skos:prefLabel>
<skos:notation>1.6.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.6.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Plagiat</skos:prefLabel>
<skos:notation>1.6.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.7">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Editorik, Textüberlieferung, Entstehungs- und Druckgeschichte</skos:prefLabel>
<skos:notation>1.7</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.7.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Editorik, Methoden und Technik der Edition</skos:prefLabel>
<skos:notation>1.7.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.7.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Textüberlieferung, Entstehungsgeschichte, allgemein; Werkkataloge, Gesamtausgaben</skos:prefLabel>
<skos:notation>1.7.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.7.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Textüberlieferung, Entstehungs- und Druckgeschichte zu einzelnen Autoren und Werken</skos:prefLabel>
<skos:notation>1.7.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.7.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Erstausgabe(n), -drucke; Originaldrucke</skos:prefLabel>
<skos:notation>1.7.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.7.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Doppeldruck(e), Nachdruck(e)</skos:prefLabel>
<skos:notation>1.7.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.7.5">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelfragen</skos:prefLabel>
<skos:notation>1.7.5</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.7.6">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Sonstiges</skos:prefLabel>
<skos:notation>1.7.6</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.8">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Exil-Autoren und -Literatur</skos:prefLabel>
<skos:notation>1.8</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.8.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Exil-Literatur, allgemein; Forschung</skos:prefLabel>
<skos:notation>1.8.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.8.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Exil-Literatur-Sammlungen, Bestandsnachweise</skos:prefLabel>
<skos:notation>1.8.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.8.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Autoren und Literatur des Exils und der Emigration</skos:prefLabel>
<skos:notation>1.8.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.9">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Übersetzer, Übersetzen, Übersetzungen</skos:prefLabel>
<skos:notation>1.9</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.9.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Geschichte und Problematik des Übersetzens</skos:prefLabel>
<skos:notation>1.9.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.9.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Der Übersetzer</skos:prefLabel>
<skos:notation>1.9.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.9.1.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Der Übersetzer, allgemein</skos:prefLabel>
<skos:notation>1.9.1.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.9.1.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Übersetzer, alphabetisch</skos:prefLabel>
<skos:notation>1.9.1.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.9.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Übersetzungen einzelner Autoren und Werke</skos:prefLabel>
<skos:notation>1.9.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N1.9.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bibelübersetzung</skos:prefLabel>
<skos:notation>1.9.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchherstellung, allgemein</skos:prefLabel>
<skos:notation>2.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bibliographien, Literaturverzeichnisse</skos:prefLabel>
<skos:notation>2.0.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Handbücher, Gesamtdarstellungen; Lehrbücher zur Buchherstellung insgesamt</skos:prefLabel>
<skos:notation>2.0.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Lexika, Sachwörterbücher, Wörterbücher, Begriffserklärungen</skos:prefLabel>
<skos:notation>2.0.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchgewerbe</skos:prefLabel>
<skos:notation>2.0.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.4.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchgewerbe, allgemein</skos:prefLabel>
<skos:notation>2.0.4.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.4.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchgewerbe in einzelnen Epochen</skos:prefLabel>
<skos:notation>2.0.4.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.4.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchgewerbe nach Ländern, Regionen und Orten</skos:prefLabel>
<skos:notation>2.0.4.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.4.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Personen des Buchgewerbes insgesamt</skos:prefLabel>
<skos:notation>2.0.4.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.4.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelfragen allgemeiner Art</skos:prefLabel>
<skos:notation>2.0.4.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.5">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Ausstellungen zum graphischen Gewerbe</skos:prefLabel>
<skos:notation>2.0.5</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.6">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Spezielle Probleme der Buchherstellung insgesamt</skos:prefLabel>
<skos:notation>2.0.6</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.6.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Buchform, Buchformat</skos:prefLabel>
<skos:notation>2.0.6.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.6.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Faksimile, Reprint</skos:prefLabel>
<skos:notation>2.0.6.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.0.6.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Andere Fragen allgemeiner Art</skos:prefLabel>
<skos:notation>2.0.6.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papier</skos:prefLabel>
<skos:notation>2.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papier, allgemein</skos:prefLabel>
<skos:notation>2.1.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bibliographien und Literaturverzeichnisse zur Papiergeschichte und Wasserzeichenforschung</skos:prefLabel>
<skos:notation>2.1.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.10">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Andere Druckträger und Beschreibstoffe</skos:prefLabel>
<skos:notation>2.1.10</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.11">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papier- und Wasserzeichenforschung</skos:prefLabel>
<skos:notation>2.1.11</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.11.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papier- und Wasserzeichenforschung, allgemein; Papierprüfung</skos:prefLabel>
<skos:notation>2.1.11.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.11.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papierhistorische Forschungsstellen, Sammlungen und Museen; Papiersammeln</skos:prefLabel>
<skos:notation>2.1.11.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.11.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papierhistoriker und Wasserzeichenforscher, alphabetisch</skos:prefLabel>
<skos:notation>2.1.11.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.11.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Methodik der Wasserzeichenanalyse</skos:prefLabel>
<skos:notation>2.1.11.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.11.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papier- und Wasserzeichenforschung zu einzelnen Drucken; Datierungsfragen</skos:prefLabel>
<skos:notation>2.1.11.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.12">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Wasserzeichen</skos:prefLabel>
<skos:notation>2.1.12</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.12.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Wasserzeichen, allgemein¤</skos:prefLabel>
<skos:notation>2.1.12.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.12.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Wasserzeichensammlungen und -verzeichnisse¤</skos:prefLabel>
<skos:notation>2.1.12.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.12.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Wasserzeichen (Themen und Motive)¤</skos:prefLabel>
<skos:notation>2.1.12.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.12.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Wasserzeichen einzelner Papiermacher und -mühlen, alphabetisch¤</skos:prefLabel>
<skos:notation>2.1.12.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.12.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Wasserzeichen nach anderen Gesichtspunkten¤</skos:prefLabel>
<skos:notation>2.1.12.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.13">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Riesaufdrucke und Riesumschläge</skos:prefLabel>
<skos:notation>2.1.13</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.14">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Sozial- und Kulturgeschichte des Papiermachens</skos:prefLabel>
<skos:notation>2.1.14</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.15">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelfragen</skos:prefLabel>
<skos:notation>2.1.15</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einführungen</skos:prefLabel>
<skos:notation>2.1.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Handbücher, Gesamtdarstellungen, Lehrbücher</skos:prefLabel>
<skos:notation>2.1.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Sachwörterbücher; Sprach- und Terminologieprobleme</skos:prefLabel>
<skos:notation>2.1.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.5">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papierherstellung</skos:prefLabel>
<skos:notation>2.1.5</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.5.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papierherstellung, allgemein</skos:prefLabel>
<skos:notation>2.1.5.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.5.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Technik der Papierherstellung; Papiermaschinen, -fabriken und -fabrikanten</skos:prefLabel>
<skos:notation>2.1.5.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.5.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Zellstoff- und Holzschliffherstellung; Papierchemie, Rohstoffe</skos:prefLabel>
<skos:notation>2.1.5.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.5.2.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Friedrich Gottlob Keller</skos:prefLabel>
<skos:notation>2.1.5.2.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.5.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papierver- und -bearbeitung, Papierfärben</skos:prefLabel>
<skos:notation>2.1.5.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.5.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Ausbildung, Lehrstätten</skos:prefLabel>
<skos:notation>2.1.5.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.6">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermühlen und -fabriken</skos:prefLabel>
<skos:notation>2.1.6</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.6.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermühlen und -fabriken, allgemein</skos:prefLabel>
<skos:notation>2.1.6.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.6.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermühlen und -fabriken nach geographischen Gesichtspunkten</skos:prefLabel>
<skos:notation>2.1.6.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.6.1.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermühlen und -fabriken nach geographischen Gesichtspunkten, allgemein</skos:prefLabel>
<skos:notation>2.1.6.1.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.6.1.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermühlen und -fabriken nach Ländern und Regionen, alphabetisch</skos:prefLabel>
<skos:notation>2.1.6.1.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.6.1.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermühlen und -fabriken nach Orten, alphabetisch</skos:prefLabel>
<skos:notation>2.1.6.1.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.6.1.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Andere Papier- und papierverarbeitende Firmen</skos:prefLabel>
<skos:notation>2.1.6.1.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.7">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermacher und -fabrikanten</skos:prefLabel>
<skos:notation>2.1.7</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.7.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermacher und -fabrikanten, allgemein; Verbände und Organisationen</skos:prefLabel>
<skos:notation>2.1.7.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.7.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermacher und -fabrikanten nach geographischen Gesichtspunkten</skos:prefLabel>
<skos:notation>2.1.7.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.7.1.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermacher und -fabrikanten nach Ländern und Regionen, alphabetisch</skos:prefLabel>
<skos:notation>2.1.7.1.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.7.1.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papiermacher und -fabrikanten nach Orten, alphabetisch</skos:prefLabel>
<skos:notation>2.1.7.1.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.7.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Papiermacher und -fabrikanten, alphabetisch</skos:prefLabel>
<skos:notation>2.1.7.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.8">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papierhandel</skos:prefLabel>
<skos:notation>2.1.8</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.8.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papierhandel, allgemein</skos:prefLabel>
<skos:notation>2.1.8.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.8.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papierhandel in einzelnen Epochen</skos:prefLabel>
<skos:notation>2.1.8.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.8.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Papierhandel nach geographischen Gesichtspunkten</skos:prefLabel>
<skos:notation>2.1.8.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.8.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Papierhändler und Papierhandelsfirmen, alphabetisch</skos:prefLabel>
<skos:notation>2.1.8.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.1.9">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Papierarten</skos:prefLabel>
<skos:notation>2.1.9</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schrift -- Satz -- Druck</skos:prefLabel>
<skos:notation>2.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schrift, Satz und Druck, allgemein</skos:prefLabel>
<skos:notation>2.2.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Bibliographien und Literaturverzeichnisse</skos:prefLabel>
<skos:notation>2.2.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.10">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Griechischer Druck</skos:prefLabel>
<skos:notation>2.2.10</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.11">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Hebräischer und jüdischer Buchdruck, auch orientalischer Druck</skos:prefLabel>
<skos:notation>2.2.11</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.11.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Hebräischer Buchdruck, allgemein</skos:prefLabel>
<skos:notation>2.2.11.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.11.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Hebräischer Buchdruck in einzelnen Epochen</skos:prefLabel>
<skos:notation>2.2.11.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.11.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Hebräischer Buchdruck nach geographischen Gesichtspunkten</skos:prefLabel>
<skos:notation>2.2.11.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.11.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Hebräische und jüdische Buchdruckereien und -drucker, alphabetisch</skos:prefLabel>
<skos:notation>2.2.11.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.11.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne hebräische Drucke</skos:prefLabel>
<skos:notation>2.2.11.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.12">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Kyrillischer Druck</skos:prefLabel>
<skos:notation>2.2.12</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.13">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Korrektur</skos:prefLabel>
<skos:notation>2.2.13</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.13.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Korrektur, allgemein</skos:prefLabel>
<skos:notation>2.2.13.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.13.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelne Korrektoren, alphabetisch</skos:prefLabel>
<skos:notation>2.2.13.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.13.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Einzelfragen, z.B. Druckfehler</skos:prefLabel>
<skos:notation>2.2.13.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.13.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Sonstiges</skos:prefLabel>
<skos:notation>2.2.13.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Druckerhand- und -lehrbücher; Formatbücher</skos:prefLabel>
<skos:notation>2.2.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Handbücher, Gesamtdarstellungen; Fachwörterbücher</skos:prefLabel>
<skos:notation>2.2.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schrift</skos:prefLabel>
<skos:notation>2.2.5</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schrift, allgemein</skos:prefLabel>
<skos:notation>2.2.5.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.0.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schriftlehrbücher und -vorlagen</skos:prefLabel>
<skos:notation>2.2.5.0.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Geschichte der Schrift</skos:prefLabel>
<skos:notation>2.2.5.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.1.0">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Geschichte der Schrift, allgemein und übergreifend</skos:prefLabel>
<skos:notation>2.2.5.1.0</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.1.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Geschichte der Schrift vor Gutenberg</skos:prefLabel>
<skos:notation>2.2.5.1.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.1.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Geschichte der Schrift in der Inkunabelzeit</skos:prefLabel>
<skos:notation>2.2.5.1.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.1.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Sonstiges</skos:prefLabel>
<skos:notation>2.2.5.1.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.1.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Geschichte der Schrift, 19. und 20. Jahrhundert</skos:prefLabel>
<skos:notation>2.2.5.1.4</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schriftherstellung</skos:prefLabel>
<skos:notation>2.2.5.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.2.1">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schriftgestaltung und -entwurf</skos:prefLabel>
<skos:notation>2.2.5.2.1</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.2.2">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Entstehung und Herstellung von Typen, Buchstaben und Schrift(en)</skos:prefLabel>
<skos:notation>2.2.5.2.2</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.2.3">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schriftnormung und -maße</skos:prefLabel>
<skos:notation>2.2.5.2.3</skos:notation>
</skos:Concept>
<skos:Concept rdf:about="http://uri.hab.de/vocab/wbb#N2.2.5.2.4">
<skos:inScheme rdf:resource="http://uri.hab.de/vocab/wbb"/>
<skos:prefLabel xml:lang="de">Schriftgießerei</skos:prefLabel>