-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharachne.rdf
17746 lines (17746 loc) · 683 KB
/
arachne.rdf
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
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:z="http://www.zotero.org/namespaces/export#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:vcard="http://nwalsh.com/rdf/vCard#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:bib="http://purl.org/net/biblio#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:prism="http://prismstandard.org/namespaces/1.2/basic/">
<bib:Book rdf:about="urn:isbn:0-521-58394-2%20and%200521583942%20(hb)">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Cambridge</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Cambridge University Press</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Bartman</foaf:surname>
<foaf:givenname>Elizabeth</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Portraits of Livia. imaging the imperial woman in Augustan Rome. Elizabeth Bartman</dc:title>
<dc:date>1999</dc:date>
<z:numPages>xxiv, 242 p</z:numPages>
<dc:identifier>ISBN 0-521-58394-2 and 0521583942 (hb)</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000043060</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_1932">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series><dc:title>Studia archaeologica</dc:title></bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Roma</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>"L'Erma" di Bretschneider</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Lattanzi</foaf:surname>
<foaf:givenname>Elena</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>I ritratti dei cosmeti nel Museo nazionale di Atene. Elena Lattanzi</dc:title>
<dc:date>1968</dc:date>
<z:numPages>87 p., 39 p. of pls</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000212479</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:3-8053-2363-8">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Beiträge zur Erschließung hellenistischer und kaiserzeitlicher Skulptur und Architektur</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Mainz</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>P. von Zabern</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Fittschen</foaf:surname>
<foaf:givenname>Klaus</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Prinzenbildnisse antoninischer Zeit. Klaus Fittschen</dc:title>
<prism:volume>Bd. 18</prism:volume>
<dc:date>1999</dc:date>
<z:numPages>xxviii, 156 p., 208 p. of plates</z:numPages>
<dc:identifier>ISBN 3-8053-2363-8</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000044573</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:3-8204-8323-3">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Europäische Hochschulschriften</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Frankfurt am Main and Bern and New York</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>P. Lang</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Vedder</foaf:surname>
<foaf:givenname>Ursula</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Untersuchungen zur plastischen Ausstattung attischer Grabanlagen des 4. Jhs. v. Chr. Ursula Vedder</dc:title>
<prism:volume>Bd. 7</prism:volume>
<dc:date>1985</dc:date>
<z:numPages>317 p., [53] p. of plates</z:numPages>
<dc:identifier>ISBN 3-8204-8323-3</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000170207</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<rdf:Description rdf:about="#item_1935">
<z:itemType>conferencePaper</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>München</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Bruckmann</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Lippold</foaf:surname>
<foaf:givenname>Georg</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Griechische Porträtstatuen. vorgelegt von Georg Lippold</dc:title>
<dc:date>1912</dc:date>
<dc:title>Griechische Porträtstatuen (Online)</dc:title>
<bib:pages>109 p</bib:pages>
<dc:subject>
<dcterms:LCC><rdf:value>000148958</rdf:value></dcterms:LCC>
</dc:subject>
</rdf:Description>
<bib:Book rdf:about="urn:isbn:3-89678-116-2">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Darmstadt</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Primus Verlag</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Radt</foaf:surname>
<foaf:givenname>Wolfgang</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Steiner</foaf:surname>
<foaf:givenname>Elisabeth</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Pergamon. Geschichte und Bauten einer antiken Metropole. Wolfgang Radt ; mit Fotos von Elisabeth Steiner</dc:title>
<dc:date>1999</dc:date>
<z:numPages>376 p</z:numPages>
<dc:identifier>ISBN 3-89678-116-2</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000044646</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_1937">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Freunde & Förderer der Abguss-Sammlung Antiker Plastik</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Stemmer</foaf:surname>
<foaf:givenname>Klaus</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Standorte. Kontext und Funktion antiker Skulptur. herausgegeben von Klaus Stemmer</dc:title>
<dc:date>1995</dc:date>
<z:numPages>474 p</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000779850</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_1938">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Kleine Texte für Vorlesungen und Übungen</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Walter de Gruyter</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Augustus</foaf:surname>
<foaf:givenname>Gaius Iulius Caesar Octavianus</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Volkmann</foaf:surname>
<foaf:givenname>Hans</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Res gestae divi Augusti. Das Monumentum Ancyranum. hrsg. und erklärt von Dr. Hans Volkmann</dc:title>
<prism:volume>29/30</prism:volume>
<dc:date>1969</dc:date>
<z:numPages>64 S</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000150347</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:0300040725">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>New Haven and London</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Yale University Press</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Stewart</foaf:surname>
<foaf:givenname>Andrew F</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Greek sculpture. an exploration. Andrew Stewart</dc:title>
<dc:date>1990</dc:date>
<z:numPages>2 v</z:numPages>
<dc:identifier>ISBN 0300040725</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000154644</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:3786112053">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Die antiken Sarkophagreliefs</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Gebr. Mann</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Kollwitz</foaf:surname>
<foaf:givenname>Johannes</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Herdejürgen</foaf:surname>
<foaf:givenname>Helga</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Die Sarkophage der westlichen Gebiete des Imperium romanum. 2. Die ravennatischen Sarkophage. bearbeitet von Johannes Kollwitz und Helga Herdejürgen</dc:title>
<prism:volume>Bd. 8, T. 2</prism:volume>
<dc:date>1979</dc:date>
<z:numPages>184 p., [46] leaves of plates</z:numPages>
<dc:identifier>ISBN 3786112053</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000287151</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_2612">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Stuttgart</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Spemann</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Bernoulli</foaf:surname>
<foaf:givenname>Johann Jacob</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Römische Ikonographie. 1. Die Bildnisse berühmter Römer mit Ausschluss der Kaiser und ihrer Angehörigen</dc:title>
<dc:date>1882</dc:date>
<z:numPages>X, 305 S</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000898559</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_2613">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Marburg</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Elwert</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Bieber</foaf:surname>
<foaf:givenname>Margarete</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Die antiken Skulpturen und Bronzen des Königl. Museum Fridericianum in Cassel. im Auftrage der Museumsdirektion hrsg. von Margarete Bieber</dc:title>
<dc:date>1915</dc:date>
<z:numPages>viii, 116 p., 59 p. of plates</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000157941</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:3-05-002274-4">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
</foaf:Organization>
</dc:publisher>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Bringmann</foaf:surname>
<foaf:givenname>Klaus</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Steuben</foaf:surname>
<foaf:givenname>Hans v</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Ameling</foaf:surname>
<foaf:givenname>Walter</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Schenkungen hellenistischer Herrscher an griechische Städte und Heiligtümer. 1. Zeugnisse und Kommentare</dc:title>
<dc:date>1995</dc:date>
<z:numPages>IX, 592 S</z:numPages>
<dc:identifier>ISBN 3-05-002274-4</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000892831</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_2615">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Jahrbuch des Deutschen Archäologischen Instituts</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>De Gruyter</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Matz</foaf:surname>
<foaf:givenname>Friedrich</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Ein römisches Meisterwerk. der Jahreszeitensarkophag Badminton-New York. von Friedrich Matz</dc:title>
<prism:volume>19 Ergänzungsheft</prism:volume>
<dc:date>1958</dc:date>
<z:numPages>[viii], 215 p., 46 p. of plates</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000318580</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<rdf:Description rdf:about="#item_2616">
<z:itemType>conferencePaper</z:itemType>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Knigge</foaf:surname>
<foaf:givenname>U</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Untersuchungen zu den Gesandtenstelen im Kerameikos zu Athen</dc:title>
<dc:date>1972</dc:date>
<dc:title>Archäologischer Anzeiger, 1972.1972</dc:title>
<bib:pages>584-629, Abb</bib:pages>
<dc:subject>
<dcterms:LCC><rdf:value>000427918</rdf:value></dcterms:LCC>
</dc:subject>
</rdf:Description>
<bib:Book rdf:about="#item_2617">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series><dc:title>Die Sammlung Parthenon</dc:title></bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>[S.l</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>s.n</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Garger</foaf:surname>
<foaf:givenname>Ernst von</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Der Trajansbogen in Benevent. Einführung von Ernst von Garger</dc:title>
<dc:date>s.d.]</dc:date>
<z:numPages>[10] p., 40 p. of plates</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000165037</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_2618">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Athen</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Krene Verlag and Deutsches Archäologisches Institut</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Kyrieleis</foaf:surname>
<foaf:givenname>Helmut</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Führer durch das Heraion von Samos. von Helmut Kyrieleis</dc:title>
<dc:date>1981</dc:date>
<z:numPages>143 p., [1] folded leaf of plates</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000043282</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_2619">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Die antiken Sarkophagreliefs</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Verlag Gebr. Mann</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Wegner</foaf:surname>
<foaf:givenname>Max</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Die Musensarkophage. mit 151 Lichtdrucktafeln, 5 Kunstdrucktafeln und 3 Textabbildungen</dc:title>
<prism:volume>Bd. 5:3</prism:volume>
<dc:date>1966</dc:date>
<z:numPages>171 p., 151 p. of plates</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000213303</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:3-7861-1623-7">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Schriften des Liebieghauses</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Gebr. Mann</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Kreikenbom</foaf:surname>
<foaf:givenname>Detlev</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Bildwerke nach Polyklet. Kopienkritische Untersuchungen zu den männlichen statuarischen Typen nach polykletischen Vorbildern: "Diskophoros", Hermes, Doryphoros, Herakles, Diadumenos. Detlev Kreikenbom</dc:title>
<dc:date>1990</dc:date>
<z:numPages>228 p., 348 p. of pl</z:numPages>
<dc:identifier>ISBN 3-7861-1623-7</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000216871</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:3-8053-0563-X">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Beiträge zur Erschließung hellenistischer und kaiserzeitlicher Skulptur und Architektur</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Mainz</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>P. von Zabern</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Pfanner</foaf:surname>
<foaf:givenname>Michael</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Hess</foaf:surname>
<foaf:givenname>Ulrike</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Der Titusbogen. Michael Pfanner ; mit einer Bauaufnahme von Ulrike Hess und Fotografien von Helmut Schwanke</dc:title>
<prism:volume>2</prism:volume>
<dc:date>1983</dc:date>
<z:numPages>x, 112 p., [112] p. of plates (some folded)</z:numPages>
<dc:identifier>ISBN 3-8053-0563-X</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000040729</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:978-3-05-004398-2">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Stiftung Preussische Schlösser und Gärten Berlin-Brandenburg</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Akademie-Verl</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Hüneke</foaf:surname>
<foaf:givenname>Saskia</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Antiken. I. Kurfürstliche und königliche Erwerbungen für die Schlösser und Gärten Brandenburg-Preussens vom 17. bis zum 19. Jahrhundert. Stiftung Preussische Schlösser und Gärten Berlin-Brandenburg. Saskia Hüneke ... [et al.]</dc:title>
<dc:date>2009</dc:date>
<z:numPages>viii, 763 p</z:numPages>
<dc:identifier>ISBN 978-3-05-004398-2</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000806693</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_2623">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Cambridge</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Univerity Press</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Dickins</foaf:surname>
<foaf:givenname>Guy</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Casson</foaf:surname>
<foaf:givenname>Stanley</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Nicholson</foaf:surname>
<foaf:givenname>Dorothy Lamb Brooke</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Catalogue of the Acropolis Museum</dc:title>
<dc:date>1912-1921</dc:date>
<z:numPages>2 v</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000750784</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_2624">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Recueil Général des Bas-Reliefs de la Gaule Romaine</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Paris</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Imprimerie Nationale</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Espérandieu</foaf:surname>
<foaf:givenname>Émile</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Supplemént (suite) et tables générales du recueil</dc:title>
<dc:date>1928</dc:date>
<z:numPages>291 S</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>000927845</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="#item_2625">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Arbeiten zur Kirchengeschichte</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Walter de Gruyter</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Andresen</foaf:surname>
<foaf:givenname>Carl</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Logos und Nomos. die Polemik des Kelsos wider das Christentum. von Carl Andresen</dc:title>
<prism:volume>30</prism:volume>
<dc:date>1955</dc:date>
<z:numPages>v, 415 p</z:numPages>
<dc:subject>
<dcterms:LCC><rdf:value>AR010279031</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:978-3-8053-4382-4%20and%20978-3-8053-4393-0">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series><dc:title>Xantener Berichte</dc:title></bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Mainz</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>von Zabern</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Reuter</foaf:surname>
<foaf:givenname>Marcus</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Schiavone</foaf:surname>
<foaf:givenname>Romina</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<dc:title>Gefährliches Pflaster. Kriminalität im Römischen Reich. herausgegeben von Marcus Reuter und Romina Schiavone</dc:title>
<prism:volume>Bd. 21</prism:volume>
<dc:date>2011</dc:date>
<z:numPages>xi, 437 p</z:numPages>
<dc:identifier>ISBN 978-3-8053-4382-4 and 978-3-8053-4393-0</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000875661</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Book rdf:about="urn:isbn:3820475788">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series>
<dc:title>Europäische Hochschulschriften</dc:title>
</bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Frankfurt am Main</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Lang</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Raeder</foaf:surname>
<foaf:givenname>Joachim</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Die statuarische Ausstattung der Villa Hadriana bei Tivoli. Joachim Raeder</dc:title>
<prism:volume>Bd. 4</prism:volume>
<dc:date>1983</dc:date>
<z:numPages>397 p., 32 p. of plates</z:numPages>
<dc:identifier>ISBN 3820475788</dc:identifier>
<dc:subject>
<dcterms:LCC><rdf:value>000280308</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Book>
<bib:Article rdf:about="#item_2628">
<z:itemType>journalArticle</z:itemType>
<dcterms:isPartOf>
<bib:Journal>
<dc:title>Kölner Jahrbuch</dc:title><prism:number>42</prism:number>
</bib:Journal>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Oenbrink</foaf:surname>
<foaf:givenname>Werner</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Die Grabdenkmäler der Südnekropole in Köln</dc:title>
<bib:pages>545-591</bib:pages>
<dc:date>2009</dc:date>
<dc:subject>
<dcterms:LCC><rdf:value>000879669</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Article>
<bib:Article rdf:about="#item_2629">
<z:itemType>journalArticle</z:itemType>
<dcterms:isPartOf>
<bib:Journal>
<dc:title>Jahrbuch des Deutschen Archäologischen Instituts</dc:title>
<prism:volume>90</prism:volume>
</bib:Journal>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Zanker</foaf:surname>
<foaf:givenname>Paul</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:title>Grabreliefs römischer Freigelassener</dc:title>
<bib:pages>267-315</bib:pages>
<dc:date>1975</dc:date>
<dc:subject>
<dcterms:LCC><rdf:value>000448157</rdf:value></dcterms:LCC>
</dc:subject>
</bib:Article>
<bib:Book rdf:about="urn:isbn:3-7861-2209-1">
<z:itemType>book</z:itemType>
<dcterms:isPartOf>
<bib:Series><dc:title>Istanbuler Forschungen</dc:title></bib:Series>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Berlin</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Gebr. Mann</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Borchhardt</foaf:surname>
<foaf:givenname>Jürgen</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Feld</foaf:surname>
<foaf:givenname>O</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Neumann</foaf:surname>
<foaf:givenname>G</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>