-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1886.xml
6321 lines (6321 loc) · 321 KB
/
1886.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.wolff">beinecke.wolff</recordid>
<otherrecordid localtype="BIB">3256553</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Kurt Wolff Archive
</titleproper>
<titleproper localtype="filing">Wolff (Kurt) Archive</titleproper>
<author>by Christa Sammons and Heidi L. Eberhardt</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>May 1989</date>
<num>YCGL MSS 3</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">3256553</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-11</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="50">50</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="957">957</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T01:55:56-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 01:55</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1886" level="collection">
<did>
<unittitle>Kurt Wolff archive</unittitle>
<unitid>YCGL MSS 3</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="ger">German</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4.38</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">11 boxes</physdesc>
<unitdatestructured altrender="1907-1938" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1907">1907</fromdate>
<todate standarddate="1938">1938</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_9478d3ec2fbb5fed8bd2750dfd6ea787">The papers consist of letters, manuscripts, and other documents from the business files of Kurt Wolff Verlag. Chiefly correspondence with authors of the German Expressionist literary movement. Includes contracts, financial statements, and documentary material. Correspondents include Walter Hasenclever, Franz Kafka, and Franz Werfel. Most letters to the Kurt Wolff Verlag are directed to Kurt Wolff himself; others are addressed to persons associated with the Kurt Wolff Verlag, e.g. Georg Heinrich Meyer, Giovanni Mardersteig, Ernst Rowohlt, Kurt Pinthus, Erik Ernst Schwabach, Lothar Mohrenwitz, René Schickele, Annemarie v. Puttkamer, Arthur Seiffhart, and Daniel Brody. Letters from 1907 to 1912 are directed to the Ernst Rowohlt Verlag (which became the Kurt Wolff Verlag on Feb. 15, 1913). Many letters to the Hyperion Verlag and to the Verlag der Weissen Blätter, some to Der neue Geist Verlag, Genius Verlag, and Verlag der Schriften von Karl Kraus, which all were part of the Kurt Wolff Verlag at one time.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Wolff, Kurt, 1887-1963</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_7dac001f98b6c7661fc8a44d9ab1353e">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Kurt Wolff, 1947.</p>
</acqinfo>
<userestrict id="aspace_deb551814b2befebc8bc948a119384e3">
<head>Conditions Governing Use</head>
<p>The Kurt Wolff Archive is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_06dcc983d547a3b879fa5409fbf54e28">
<head>Preferred Citation</head>
<p>Kurt Wolff Archive. Yale Collection of German Literature. Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_0290ce37088b99f30b823db68c47faef">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<altformavail id="aspace_c3da0576f49abcc8604881d426bd8cf9">
<head>Existence and Location of Copies</head>
<p>The collection is also available on microfilm. See <ref actuate="onrequest"
show="replace"
target="aspace_575eaefc44f64644dc62d9c510094f0a">Appendix</ref> for details.</p>
</altformavail>
<bioghist id="aspace_89a92397bd723d382a505a5ef2e8b34f">
<head>KURT WOLFF (1887-1963)</head>
<p>In writing about Kurt Wolff shortly after the purchase of his early papers in 1947, Curt von Faber du Faur, curator of the Yale Collection of German Literature, had this to say about his old friend:</p>
<blockquote>
<p>"Not every literary generation enjoys the privilege and the benefits of being fostered by an ideal type of publisher, who in one person combines great business acumen with broad scholarship and the requisite love of the fine arts; who carries in his heart a great spiritual tradition which enhances his judgment and sharpens his skills to detect the true values in the present and preserve them for the future. In the Germany of recent years this ideal was personified by Kurt Wolff. During the second and third decades of the present century he gathered about himself virtually all the leading spirits of the younger generation of authors. Most of the outstanding names of this period passed through the portals of his publishing house to recognition and fame; or at least felt themselves honored to have gained the renown of his imprint for one or more of their works. There was scarcely an author who failed to correspond with this keen-visioned publisher who so soon gained for himself the reputation of a tried and true sponsor to his literary friends. It is for this reason that the literary archives of the firm Kurt Wolff, recently acquired by the Library, contain in fact the epistolatory heritage of the spiritual center of the Germany of that period."</p>
<p>(YULG 23:1, 1948, 25)</p>
</blockquote>
<p>Kurt Wolff was born in 1887 in Bonn, into a musical household where Brahms was a frequent guest. His first activities as a publisher date from around 1909, when he was studying German literature at Leipzig. There he joined Ernst Rowohlt's fledgling publishing firm, which had been founded the year before. Office space was rented from the Offizin W. Drugulin, well-known for its bibliophile productions. A close relation quickly sprang up between the two firms; the Drugulin Drucke series was in fact overseen by Kurt Wolff.</p>
<p>Rowohlt left the firm in 1912; he joined the S. Fischer Verlag and subsequently established his own publishing house after World War I. In 1913 Wolff changed the name of the old Rowohlt Verlag, of which he was now sole proprietor, to the Kurt Wolff Verlag. When Wolff was called up for military service during the war, the operation was capably run by Georg Heinrich Meyer, many of whose letters will be found among the Yale papers. Wolff returned in 1916.</p>
<p>These early years of the Kurt Wolff Verlag were marked by rapid expansion, undoubtedly due to Wolff's ability to seek out and attract interesting authors and Meyer's genius for advertising. There were highly successful series, such as Der jüngste Tag, 86 volumes of which appeared between 1913 and 1921. A close connection was established with the Verlag der weissen Bücher, which published the influential literary periodical <title localtype="simple" render="italic">
<part>Die weissen Blätter</part>
</title>. In 1917, both the Verlag der weissen Bücher and the Hyperion Verlag were acquired by Wolff. A survey of the author list in this register will demonstrate the truth of Faber's statement, cited above, that Wolff was able during these years to gather to himself the leading spirits of the day. There were Expressionists (Benn, Heym, Toller, Trakl), Dadaists (Ball, Hülsenbeck, Tzara), and, presaging Kurt Wolff's interest in art publishing, a number of artists (Gauguin, Grosz, Klee, Kokoschka, Kollwitz, Kubin, Masereel). Correspondence with numerous prominent literary figures is to be found in Kurt Wolff's files: Gerhart Hauptmann, Hesse, Kafka, Karl Kraus, Else Lasker-Schüler, Heinrich and Thomas Mann, Rilke, Werfel, and Wedekind, to name just a few. Nor is the list strictly German, for the collection contains letters by such writers as Gorky, James Joyce, Rabindranath Tagore, and H. G. Wells.</p>
<p>After the war, Kurt Wolff turned more and more toward publishing collected editions rather than new works, toward art publishing, and to the pursuit of his bibliophile interests. In 1920 a close connection with the Ernst Ludwig Presse in Darmstadt was established, and in 1924 Kurt Wolff founded the Pantheon Casa Editrice in Florence, with Hans Mardersteig of the Officina Bodoni as guiding light to the new enterprise.</p>
<p>In 1930, in the wake of personal stress (overwork and divorce) and business difficulties, Kurt Wolff withdrew from publishing. Between 1933 and 1935 he lived in Nice, where a son, Christian, was born to him and his second wife, Helen Mosel. In 1935 the family acquired a farm outside Florence, where they began an experiment in self-sufficiency. In 1939 they moved to Paris. Although the ensuing political events split the family temporarily (Kurt Wolff was incarcerated briefly, the child was sent to the safety of a convent school at La Rochelle), they managed to reunite themselves, escape across the Spanish border, and immigrate to the United States in 1940.</p>
<p>One of Kurt Wolff's principal advisors and supporters in the United States was the curator of Yale's German Literature Collection, Curt von Faber du Faur. Faber offered Kurt Wolff $7,500 as a kind of matching grant: Wolff was to raise an equal amount in order to establish himself anew in business. This he did: Pantheon Books was founded in 1942, at first on the proverbial shoestring but soon attaining a large measure of success. Kurt Wolff had the good fortune to meet Paul Mellon, for whom he published the well-known Bollingen Series. Best-sellers followed: Anne Morrow Lindbergh's <title localtype="simple" render="italic">
<part>Gift from the Sea</part>
</title> and the American edition of Pasternak's <title localtype="simple" render="italic">
<part>Doctor Zhivago</part>
</title> (1958), for instance. Books like Broch's <title localtype="simple" render="italic">
<part>The Death of Virgil</part>
</title> (1945), while undoubtedly not financial successes, showed Wolff's continuing dedication to what he deemed to be worthwhile and timely literature.</p>
<p>In 1959 Helen and Kurt Wolff moved to Locarno. By 1961, however, it proved too difficult to manage the firm from abroad, and they resigned from Pantheon Books, which was acquired by Random House. William Jovanovitch subsequently proposed to the Wolffs that they should oversee a special imprint within Harcourt, Brace, Jovanovitch. The proposal was accepted, but not long after the launching of Helen and Kurt Wolff Books, Kurt Wolff was tragically run down and killed by a truck during a visit to Germany in 1963. Helen Wolff continued with Harcourt, Brace, and Jovanovitch until her retirement, overseeing Helen and Kurt Wolff Books until her death in 1994.</p>
</bioghist>
<scopecontent id="aspace_c5c476173a7f9eb55e63872f75748cf4">
<head>Scope and Contents</head>
<p>The Kurt Wolff papers at Yale consist of about 4,100 letters, telegrams, postcards, documents, and manuscripts from the business files of the Kurt Wolff Verlag, mostly from the period 1910-30. There is no material relating to Kurt Wolff's career as a publisher in the United States. Incoming correspondence from authors is interfiled with copies of letters and other communications by Kurt Wolff and members of the Verlag. Some author files also contain contracts, financial statements, and manuscripts.</p>
<p>The largest single correspondence is that between Franz Werfel and the Verlag, which numbers over 900 items including poetry manuscripts and letters by Werfel's wife Alma Mahler Werfel. There are 605 items of correspondence with Walter Hasenclever, a close friend of Wolff from his Leipzig student days. The letters from Franz Kafka (47 items, 1912-20) constitute one of the high points of the collection.</p>
<p>Most of the letters in the collection are directed to Kurt Wolff himself, but some are addressed to persons associated with the Kurt Wolff Verlag, including Georg Heinrich Meyer, Hans Mardersteig, Ernst Rowohlt, Kurt Pinthus, Erik Ernst Schwabach, Lothar Mohrenwitz, René Schickele, Annemarie von Puttkamer, Arthur Seiffhart, and Daniel Brody. Letters written between 1907 and 1912 are addressed to the Ernst Rowohlt Verlag. Some letters are directed to the Hyperion Verlag, the Verlag der weissen Bücher, Der neue Geist Verlag, Genius Verlag, and the Verlag der Schriften von Karl Kraus, all of which were part of the Kurt Wolff Verlag at some time.</p>
<p>Many of the letters written in German script are provided with typed transcriptions that were made by Yale graduate students under the supervision of Hedwig S. Dejon, librarian of the Yale Collection of German Literature. Soon after its acquisition, the Kurt Wolff Archive was catalogued on cards, with main entries for each of the authors with whom the Kurt Wolff Verlag corresponded. These cards give more detailed information about the material than the following list. They have been retained by the curator of the collection.</p>
<p>Many, although by no means all of the letters in the Yale Kurt Wolff Archive were published by Bernhard Zeller and Ellen Otten in <title localtype="simple" render="italic">
<part>Kurt Wolff. Briefwechsel eines Verlegers. 1911-1963</part>
</title> (Frankfurt: Heinrich Scheffler, 1966). The photocopies used to compile this volume are still on deposit at the Deutsches Literaturarchiv in Marbach, West Germany, where they can be made available to scholars who apply for Yale's permission to examine the material.</p>
<p>Related material will be found in the Helen Wolff papers (Uncat Zg Ms 12), which documents the American phase of Mrs. Wolff's career but also contains some earlier materials.</p>
</scopecontent>
<arrangement id="aspace_77af2b1724f516513b150c0d71d7ce67">
<head>Arrangement</head>
<p>This archive consists of letters to and from Kurt Wolff, among which literary writings of some correspondents have been interfiled. The correspondence has been alphabetically arranged and all letters have been placed in chronological order within each folder.</p>
</arrangement>
<odd id="aspace_575eaefc44f64644dc62d9c510094f0a">
<head>Appendix A: Guide to the Microfilm</head>
<table>
<tgroup cols="5">
<thead>
<row>
<entry>Microfilm Call Number</entry>
<entry>Reel</entry>
<entry>Boxes Filmed</entry>
<entry>Folders Filmed</entry>
<entry>Notes</entry>
</row>
</thead>
<tbody>
<row>
<entry>Ms Vault Film 2208</entry>
<entry>1</entry>
<entry>1-2</entry>
<entry>1-47</entry>
</row>
<row>
<entry>Ms Vault Film 2176</entry>
<entry>2</entry>
<entry>2</entry>
<entry>48-75</entry>
</row>
<row>
<entry>MS Vault Film 2295</entry>
<entry>3</entry>
<entry>3-4</entry>
<entry>76-112</entry>
</row>
<row>
<entry>MS Vault Film 2314</entry>
<entry>4</entry>
<entry>4-5</entry>
<entry>113-161</entry>
</row>
<row>
<entry>MS Vault Film 2341</entry>
<entry>5</entry>
<entry>5-6</entry>
<entry>162-212</entry>
</row>
<row>
<entry>MS Vault film 2296</entry>
<entry>6</entry>
<entry>6-7</entry>
<entry>213-274</entry>
</row>
<row>
<entry>MS Vault Film 2297</entry>
<entry>7</entry>
<entry>7-8</entry>
<entry>275-332</entry>
</row>
<row>
<entry>MS Vault Film 2298</entry>
<entry>8</entry>
<entry>8-9</entry>
<entry>333-370</entry>
</row>
<row>
<entry>MS Vault Film 2342</entry>
<entry>9</entry>
<entry>9-10</entry>
<entry>371-419</entry>
</row>
<row>
<entry>MS Vault Film 2325</entry>
<entry>10</entry>
<entry/>
<entry/>
<entry>Finding aid</entry>
</row>
</tbody>
</tgroup>
</table>
</odd>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2009116225"
source="lcsh">
<part localtype="topical">Authors and publishers</part>
<part localtype="geographic">Germany</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, German</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85035374"
source="lcsh">
<part localtype="topical">Dadaism</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85046541"
source="lcsh">
<part localtype="topical">Expressionism</part>
</subject>
<subject source="local">
<part localtype="topical">Publishers and publishing</part>
<part localtype="geographic">Germany</part>
</subject>
<persname>
<part localtype="agent_person">Ball, Hugo, 1886-1927</part>
</persname>
<persname>
<part localtype="agent_person">Becher, Johannes Robert, 1891-1958</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Benn, Gottfried, 1886-1956</part>
</persname>
<persname>
<part localtype="agent_person">Blei, Franz, 1871-1942</part>
</persname>
<persname>
<part localtype="agent_person">Borchardt, Rudolf, 1877-1945</part>
</persname>
<persname>
<part localtype="agent_person">Brod, Max, 1884-1968</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Brody, Daniel, 1883-1969</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Dauthendey, Max, 1867-1918</part>
</persname>
<persname>
<part localtype="agent_person">Edschmid, Kasimir, 1890-1966</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Eulenberg, Herbert, 1876-1949</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Gauguin, Pola, 1883-1961</part>
</persname>
<persname>
<part localtype="agent_person">Gorky, Maksim, 1868-1936</part>
</persname>
<persname>
<part localtype="agent_person">Grosz, George, 1893-1959</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Gundolf, Friedrich, 1880-1931</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Hasenclever, Walter, 1890-1940</part>
</persname>
<persname>
<part localtype="agent_person">Hesse, Hermann, 1877-1962</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Heym, Georg, 1887-1912</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Huelsenbeck, Richard, 1892-1974</part>
</persname>
<persname>
<part localtype="agent_person">Joyce, James, 1882-1941</part>
</persname>
<persname>
<part localtype="agent_person">Kafka, Franz, 1883-1924</part>
</persname>
<persname>
<part localtype="agent_person">Kirchner, Ernst Ludwig, 1880-1938</part>
</persname>
<persname>
<part localtype="agent_person">Klee, Paul, 1879-1940</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Kolb, Annette, 1870-1967</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Kollwitz, Käthe, 1867-1945</part>
</persname>
<persname>
<part localtype="agent_person">Kraus, Karl, 1874-1936</part>
</persname>
<persname>
<part localtype="agent_person">Kubin, Alfred, 1877-1959</part>
</persname>
<persname>
<part localtype="agent_person">Landauer, Gustav, 1870-1919</part>
</persname>
<persname>
<part localtype="agent_person">Lasker-Schüler, Else, 1869-1945</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Lichnowsky, Mechtilde, 1879-1958</part>
</persname>
<persname>
<part localtype="agent_person">Mahler, Alma, 1879-1964</part>
</persname>
<persname>
<part localtype="agent_person">Mann, Heinrich, 1871-1950</part>
</persname>
<persname>
<part localtype="agent_person">Mann, Thomas, 1875-1955</part>
</persname>
<persname>
<part localtype="agent_person">Mardersteig, Giovanni, 1892-1977</part>
</persname>
<persname>
<part localtype="agent_person">Masereel, Frans, 1889-1972</part>
</persname>
<persname>
<part localtype="agent_person">Meidner, Ludwig, 1884-1966</part>
</persname>
<persname source="local">
<part localtype="agent_person">Meyer, Georg Heinrich</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Meyrink, Gustav, 1868-1932</part>
</persname>
<persname source="local">
<part localtype="agent_person">Mohrenwitz, Lothar</part>
</persname>
<persname>
<part localtype="agent_person">Mühsam, Erich, 1878-1934</part>
</persname>
<persname>
<part localtype="agent_person">Pinthus, Kurt, 1886-1975</part>
</persname>
<persname source="local">
<part localtype="agent_person">Puttkamer, Annemarie v.</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Rilke, Rainer Maria, 1875-1926</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Rolland, Romain, 1866-1944</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Rowohlt, Ernst, 1887-1960</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Scheerbart, Paul, 1863-1915</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Schickele, René, 1883-1940</part>
</persname>
<persname source="local">
<part localtype="agent_person">Schwabach, Erik Ernst</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Seiffhart, Arthur</part>
</persname>
<persname>
<part localtype="agent_person">Sternheim, Carl, 1878-1942</part>
</persname>
<persname>
<part localtype="agent_person">Tagore, Rabindranath, 1861-1941</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Toller, Ernst, 1893-1939</part>
</persname>
<persname>
<part localtype="agent_person">Trakl, Georg, 1887-1914</part>
</persname>
<persname>
<part localtype="agent_person">Tzara, Tristan, 1896-1963</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Unruh, Fritz von, 1885-1970</part>
</persname>
<persname>
<part localtype="agent_person">Walser, Robert, 1878-1956</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Wassermann, Jakob, 1873-1934</part>
</persname>
<persname>
<part localtype="agent_person">Wedekind, Frank, 1864-1918</part>
</persname>
<persname>
<part localtype="agent_person">Wells, H. G. (Herbert George), 1866-1946</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Werfel, Franz, 1890-1945</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Wolfskehl, Karl, 1869-1948</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Zech, Paul, 1881-1946</part>
</persname>
<persname>
<part localtype="agent_person">Zuckmayer, Carl, 1896-1977</part>
</persname>
<persname>
<part localtype="agent_person">Zweig, Arnold, 1887-1968</part>
</persname>
<persname>
<part localtype="agent_person">Zweig, Stefan, 1881-1942</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Kurt Wolff Verlag</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/777509"
id="ref11"
level="file">
<did>
<unittitle>Albert, Eugen d' [with transcript]</unittitle>
<unitdatestructured altrender="1922 Jun 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1922-06-22">1922 Jun 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref11_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref11_c2" localtype="folder" parent="aspace_ref11_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777510"
id="ref12"
level="file">
<did>
<unittitle>Amann, Paul [with transcript]</unittitle>
<unitdatestructured altrender="1921-22" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1921">1921</fromdate>
<todate standarddate="1922">1922</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777511"
id="ref13"
level="file">
<did>
<unittitle>Andersen Nexo, Martin</unittitle>
<unitdatestructured altrender="1921" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921">1921</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">2a</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777512"
id="ref14"
level="file">
<did>
<unittitle>Andreas-Salomé, Lou</unittitle>
<unitdatestructured altrender="1917-19" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1917">1917</fromdate>
<todate standarddate="1919">1919</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">3</container>
<daoset altrender="/repositories/11/digital_objects/184061">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2021301"
identifier="oid:2021301"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1086086/full/!150,150/0/default.jpg"
identifier="oid:2021301"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2021301"
identifier="oid:2021301"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Andreas-Salomé, Lou</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777513"
id="ref15"
level="file">
<did>
<unittitle>Asenijeff, Elsa [with transcript]</unittitle>
<unitdatestructured altrender="1913" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1913">1913</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777514"
id="ref16"
level="file">
<did>
<unittitle>Bahr, Hermann</unittitle>
<unitdatestructured altrender="1916-22" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1916">1916</fromdate>
<todate standarddate="1922">1922</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3406420"
id="aspace_c1da067b634d9f7da1ec585e6d71c495"
level="file">
<did>
<unittitle>Baader, Johannes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_c1da067b634d9f7da1ec585e6d71c495_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_c1da067b634d9f7da1ec585e6d71c495_c2"
localtype="folder"
parent="aspace_c1da067b634d9f7da1ec585e6d71c495_c1">4a</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777515"
id="ref17"
level="file">
<did>
<unittitle>Bahr-Mildenburg, Anna</unittitle>
<unitdatestructured altrender="1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">1927</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777516"
id="ref18"
level="file">
<did>
<unittitle>Balázs, Béla</unittitle>
<unitdatestructured altrender="1915" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1915">1915</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777517"
id="ref19"
level="file">
<did>
<unittitle>Ball, Hugo [with transcripts]</unittitle>
<unitdatestructured altrender="1911-15" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1911">1911</fromdate>
<todate standarddate="1915">1915</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777518"
id="ref20"
level="file">
<did>
<unittitle>Becher, Johannes Robert [with transcripts]</unittitle>
<unitdatestructured altrender="1914-22" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1914">1914</fromdate>
<todate standarddate="1922">1922</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777519"
id="ref21"
level="file">
<did>
<unittitle>Becker-Glauch, K.</unittitle>
<unitdatestructured altrender="1917-23" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1917">1917</fromdate>
<todate standarddate="1923">1923</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">9a-b</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777520"
id="ref22"
level="file">
<did>
<unittitle>Beeh, René [with transcripts]</unittitle>
<unitdatestructured altrender="1920" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920">1920</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777521"
id="ref23"
level="file">
<did>
<unittitle>Benn, Gottfried [with transcripts]</unittitle>
<unitdatestructured altrender="1916-17" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1916">1916</fromdate>
<todate standarddate="1917">1917</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">11</container>
<daoset altrender="/repositories/11/digital_objects/184056">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2021302"
identifier="oid:2021302"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1086088/full/!150,150/0/default.jpg"
identifier="oid:2021302"
linktitle="[recto]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2021302"
identifier="oid:2021302"
linktitle="[recto]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Benn, Gottfried [with transcripts]</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777522"
id="ref24"
level="file">
<did>
<unittitle>Berger, Ludwig [with transcripts]</unittitle>
<unitdatestructured altrender="1920-22" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1922">1922</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">12-14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777523"
id="ref25"
level="file">
<did>
<unittitle>Binding, Rudolf Georg [with transcripts]</unittitle>
<unitdatestructured altrender="1916" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1916">1916</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777524"
id="ref26"
level="file">
<did>
<unittitle>Björnsen, Björn</unittitle>
<unitdatestructured altrender="1920-30" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1930">1930</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777525"
id="ref27"
level="file">
<did>
<unittitle>Blass, Ernst [with transcripts]</unittitle>
<unitdatestructured altrender="1915-17" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1915">1915</fromdate>
<todate standarddate="1917">1917</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777526"
id="ref28"
level="file">
<did>
<unittitle>Blei, Franz</unittitle>
<unitdatestructured altrender="1913-21" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1913">1913</fromdate>
<todate standarddate="1921">1921</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777527"
id="ref29"
level="file">
<did>
<unittitle>Bloch, Ernst</unittitle>
<unitdatestructured altrender="1921 Dec 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921-12-19">1921 Dec 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777528"
id="ref30"
level="file">
<did>
<unittitle>Bô Yin Râ: letter [with transcript]; document</unittitle>
<unitdatestructured altrender="1920 Jul 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920-07-09">1920 Jul 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">19a</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777529"
id="ref31"
level="file">
<did>
<unittitle>Boehn, Max von [with transcripts]</unittitle>
<unitdatestructured altrender="1919-20" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1919">1919</fromdate>
<todate standarddate="1920">1920</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777530"
id="ref32"
level="file">
<did>
<unittitle>Bötticher, Hans (Ringelnatz, pseud.)</unittitle>
<unitdatestructured altrender="1921-23" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1921">1921</fromdate>
<todate standarddate="1923">1923</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777531"
id="ref33"
level="file">
<did>
<unittitle>Bonsels, Waldemar [with transcripts]</unittitle>
<unitdatestructured altrender="1920" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920">1920</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777532"
id="ref34"
level="file">
<did>
<unittitle>Borchardt, Rudolf</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/777533"
id="ref35"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1916-18" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1916">1916</fromdate>
<todate standarddate="1918">1918</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">23-24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777534"
id="ref36"
level="file">
<did>
<unittitle>"(Toskanische) Villen" [with fragments]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">25-26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/777535"
id="ref37"
level="file">
<did>
<unittitle>"Giovanni Pascoli"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/89988 /locations/9"
containerid="39002091570821"