-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1666.xml
5694 lines (5694 loc) · 314 KB
/
1666.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.basso">beinecke.basso</recordid>
<otherrecordid localtype="BIB">3437855</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Hamilton Basso Papers
</titleproper>
<titleproper localtype="filing">Basso (Hamilton) Papers</titleproper>
<author>by Timothy G. Young</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>September 1992</date>
<num>YCAL MSS 57</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">3437855</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-20, 22</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 21</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="3">3</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="187">187</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:31:17-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:31</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1666" level="collection">
<did>
<unittitle>Hamilton Basso papers</unittitle>
<unitid>YCAL MSS 57</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>10.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">22 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1861">1861</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_fc2468b36c811bbd31bfc99617ce6ad4">Manuscripts, letters, and research material document the life of best-selling novelist Hamilton Basso.</abstract>
<physdesc id="aspace_2a9aab2dfa2874a475fb545e8e4ab4cd">Other Storage Formats: Oversize</physdesc>
<origination label="Creator">
<persname>
<part localtype="agent_person">Basso, Hamilton, 1904-1964</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_9c1ade2d87b9f5f0d5892efe7db36dcc">
<head>Immediate Source of Acquisition</head>
<p>The papers were donated to the Yale Collection of American Literature by Mr. Basso and his widow between 1962 and 1984.</p>
</acqinfo>
<userestrict id="aspace_c6609dc0786d44fb810b0ebf330db50e">
<head>Conditions Governing Use</head>
<p>The Hamilton Basso Papers are 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_b763d8fc42b71603884613194fdbe363">
<head>Preferred Citation</head>
<p>Hamilton Basso Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_dcf7ea0ec62c387bfbbc4a29d29bffc0">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 22: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<bioghist id="aspace_898fd86fdb4894f170133d32f66da840">
<head>HAMILTON BASSO (1904-1964)</head>
<p>Joseph Hamilton Basso was born September 5, 1904 in New Orleans, Louisiana. His early years were spent in the French Quarter of the city, where his grandfather, an Italian immigrant, had established a successful shoe factory. He attended Tulane University, first studying law, but eventually concentrating on journalism and literature, though he did not take a degree. The change in his scholarly interests was precipitated by his association with a group of southern writers who contributed to the <title localtype="simple" render="italic">
<part>Double Dealer</part>
</title>, published in New Orleans, the magazine that would eventually publish the first of Basso's own work. Included in this group were writers with whom Basso established lasting friendships, including Sherwood Anderson, William Faulkner, and Edmund Wilson.</p>
<p>In 1926, Basso moved to New York City, establishing himself for a few years in Greenwich Village. He soon moved back to his native New Orleans, where he progressively established himself as a writer and editor at all three of the city's newspapers, including the <title localtype="simple" render="italic">
<part>Times-Picayune</part>
</title>. His first novel, the semi-autobiographic <title localtype="simple" render="italic">
<part>Relics and Angels</part>
</title>, was published in 1929. The work garnered little acclaim and Basso would later dismiss it as a piece of juvenilia. His next work, <title localtype="simple" render="italic">
<part>Beauregard, the Great Creole</part>
</title> (1933), a biography of the Confederate general, was a success, allowing Basso to move to the mountain retreat Pisgah Forest, North Carolina to work on his next novel, accompanied by his wife, Etolia (née Simmons) and their infant son, Keith.</p>
<p>Basso's efforts of the 1930s established him as a novelist of note. His <title localtype="simple" render="italic">
<part>Cinnamon Seed</part>
</title> (1934) was well received, as was <title localtype="simple" render="italic">
<part>In Their Own Image</part>
</title> (1935) and <title localtype="simple" render="italic">
<part>Courthouse Square</part>
</title> (1936), which was optioned to be made into a motion picture. <title localtype="simple" render="italic">
<part>Days Before Lent</part>
</title>, published in 1939, became widely acclaimed, winning the Southern Writer's Award for 1940. The film version of the novel, retitled <title localtype="simple" render="italic">
<part>Holiday for Sinners</part>
</title>, was released 12 years later. <title localtype="simple" render="italic">
<part>Sun in Capricorn</part>
</title>, a novel about the struggle of a Yale graduate against the wiles of a southern politician named Gilgo Slade, who was fashioned after Huey Long, was issued in 1940. In 1943, Basso published <title localtype="simple" render="italic">
<part>Mainstream</part>
</title>, a collection of profiles of famous Americans, including Franklin D. Roosevelt.</p>
<p>During the productive years of the 1930s and 1940s, Basso resumed his editorial work by moving to New York to write for several nationally known magazines. Beginning with <title localtype="simple" render="italic">
<part>New Republic</part>
</title> in 1935-37, and continuing at <title localtype="simple" render="italic">
<part>Time</part>
</title> from 1942-43, Basso eventually established himself as an associate editor at the <title localtype="simple" render="italic">
<part>New Yorker</part>
</title> in 1943, a position he held until 1964. The <title localtype="simple" render="italic">
<part>New Yorker</part>
</title> gave him the opportunity to work with a variety of other writers and to publish his own short fiction and nonfiction.</p>
<p>
<title localtype="simple" render="italic">
<part>The World from Jackson Square</part>
</title>, a collection of writings about New Orleans, published in 1948, was done in conjunction with his wife. In 1954, Basso published what is likely his most widely-read book, <title localtype="simple" render="italic">
<part>The View from Pompey's Head</part>
</title>. The novel, concerning the conflicting emotions of a Southern expatriate who must confront his heritage when he is called back to his hometown, the fictional Pompey's Head, South Carolina, stayed on the best-seller lists for the better part of a year. The movie, made from the book the following year, proved to be just as successful.</p>
<p>Though Basso and his family settled in Weston, Connecticut in the 1940s, he had a passion for travel. Many of his voyages would provide background for his work. After writing several short pieces for <title localtype="simple" render="italic">
<part>Holiday</part>
</title> magazine, Basso issued some of his essays as a collection, titled <title localtype="simple" render="italic">
<part>A Quota of Seaweed</part>
</title>, in 1960.</p>
<p>
<title localtype="simple" render="italic">
<part>The Light Infantry Ball</part>
</title>, a prequel to <title localtype="simple" render="italic">
<part>The View from Pompey's Head</part>
</title> and the second in a unfinished trilogy about the town, was issued in 1961. Basso's final novel, <title localtype="simple" render="italic">
<part>A Touch of the Dragon</part>
</title>, was published shortly after he died of cancer on May 13, 1964 in New Haven, Connecticut.</p>
</bioghist>
<scopecontent id="aspace_ccd45c1ca7355c2bfcc6a68a3db1140a">
<head>Scope and Contents</head>
<p>The Hamilton Basso Papers consist of letters, manuscripts, photographs, legal and financial documents, and printed material concerning the working and publishing career of the author. The papers span the years 1851-1975, but are concentrated in the period 1929-64.</p>
<p>The collection is housed in 22 boxes and consists of three series: <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, <title localtype="simple" render="italic">
<part>Writings</part>
</title>, and <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>. Box 21 contains <title localtype="simple" render="italic">
<part>Oversize</part>
</title> material. Box 22 contains <title localtype="simple" render="italic">
<part>Restricted Fragile Papers</part>
</title>.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref11">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, covers the years 1927-73. Included here are letters to and from Hamilton Basso and his family, colleagues, readers and publishing companies. The letters from Hamilton Basso to his wife Etolia discuss his activities while away on a series of trips between 1942 and 1960. Letters from February and March 1942 involve Basso's sojourn in Florida where he met Marjorie Kinnan Rawlings. Between 1957 and 1960, Basso traveled to Rio de Janeiro, the South Seas, Scandinavia, and Finland to do research for articles. His letters reflect his admiration for foreign settings and his interactions with natives in both urban and rural areas. Basso later corresponded with many people he met during this period, including the Danielsson family and Emmerik Jensen.</p>
<p>Basso's professional correspondence involved a number of publishing companies and fellow authors. Letters from Thomas Wolfe, written from 1935 until his death in 1938, concern Wolfe's growing notoriety and friends such as F. Scott Fitzgerald. A 28-page letter from Wolfe to Maxwell Perkins dated December 15, 1936 discusses Wolfe's personal philosophy, his writing, and his opinion of influential books such as <title localtype="simple" render="italic">
<part>Ulysses</part>
</title>. Maxwell Perkins's letters to Hamilton Basso from August and October 1938 concern Thomas Wolfe before and after the author's death.</p>
<p>Jade Snow-Wong, a sculptor from San Francisco, corresponded with Basso in the mid-1950s and sent him copies of letters written during her trip to Japan, Hong Kong, and India in 1953. During this same period, Basso received a number of fan letters from readers of his best-selling novel, <title localtype="simple" render="italic">
<part>The View from Pompey's Head</part>
</title>. Many of these can be found in the "Letter" general folders.</p>
<p>Correspondence with publishing companies reveals the often arduous process of negotiation. The Doubleday & Co., Inc. letters from 1955 reflect the success of <title localtype="simple" render="italic">
<part>The View from Pompey's Head</part>
</title>, while later letters from 1962 concern the growing incompatibility between author and publisher.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref163">Series II, <title localtype="simple" render="italic">
<part>Writings</part>
</title>
</ref>, covering the years 1878-1964, contains drafts of most of Hamilton Basso's later works and a number of short pieces written early in his career. The first subseries covers books written by or contributed to by Hamilton Basso. <title localtype="simple" render="italic">
<part>The View from Pompey's Head</part>
</title> exists in three versions. A draft typescript is followed by a setting typescript, which was made into a final galley proof for the book. These stages are evident for other titles such as <title localtype="simple" render="italic">
<part>A Quota of Seaweed</part>
</title>. <title localtype="simple" render="italic">
<part>The Light Infantry Ball</part>
</title> also includes an advance proof of the book and several folders of notes, both written and collected by Basso in preparation for this tale of the Civil War period.</p>
<p>
<title localtype="simple" render="italic">
<part>A Touch of the Dragon</part>
</title>, Basso's final published work, exists in several stages of development. Begun as a short story entitled "Edwina and the Kangaroo," this story went through at least three distinct drafts before being typeset for publication. The pages of the first and second drafts are not in precise numerical order, because numerous additions and duplicate pages which had to be kept in the sequence in which they were received.</p>
<p>An unpublished novel, <title localtype="simple" render="italic">
<part>The Swing of the Compass</part>
</title>, also has many variant pages intermingled in its separate drafts. Draft 3 represents the most cohesive text of this book. Included before the drafts are files of notes, typewritten outlines, character sketches, and printed materials which help trace the development of the Basso's idea from a storyline called "Adam's Profession" to the final 378-page manuscript.</p>
<p>
<title localtype="simple" render="italic">
<part>Sun in Capricorn</part>
</title>, Basso's 1942 novel about southern politics, is present in several forms, exhibiting a different process of revision than that seen with other manuscripts. For a Popular Library edition of the book in 1961, Basso took copies of his original hardcover novel and revised its pages, making additions and deletion by inserting typewritten notes throughout. One copy of the original hardcover novel contains notes for a play based on the book, while another was used as a setting copy for the paperback edition.</p>
<p>Basso contributed the introduction to <title localtype="simple" render="italic">
<part>Exploration of the Valley of the Amazon</part>
</title> by William Lewis Herndon in a reprinted edition of this title from 1952. Drafts of his essay and the final galley proofs are included here as is a setting typescript of another work of fiction, <title localtype="simple" render="italic">
<part>The Green Room</part>
</title>, from 1949.</p>
<p>The second subseries, <title localtype="simple" render="italic">
<part>Shorter Works</part>
</title>, contains many short stories from Basso's early years in New York and New Orleans. Many of these stories center around a character named Quimby. Profiles of writers (Thomas Wolfe, Eugene O'Neill) and notes for various projects (The USA, Cuba, 1952, Letters from America) make up the later works in this subseries.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref282">Series III, <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>
</ref>, contains financial, legal and printed materials, and photographs. Included here are copies of contracts for publishing and filming rights to several of Basso's books and royalty receipts from the 1950s and 1960s. The printed materials contain a variety of items categorized by the work or subject to which they pertain. Found in the folder for <title localtype="simple" render="italic">
<part>The View from Pompey's Head</part>
</title> are newspaper clippings of reviews of the novel, a map of the town of Pompey's Head, and advertising flyers and posters for the British edition of the book, which was entitled simply <title localtype="simple" render="italic">
<part>Pompey's Head</part>
</title>.</p>
<p>
<title localtype="simple" render="italic">
<part>Writings by Others</part>
</title> includes a sketchy profile of Thomas Wolfe by Robert Sadow, as well as a typewritten carbon copy of Wolfe's own work, "The Child by Tiger." Two versions of the radio adaptation of Basso's novel <title localtype="simple" render="italic">
<part>The Green Room</part>
</title>, retitled "The Great Lady" by Fletcher Markle and Robert Wallstein, are found here, as well.</p>
<p>Box 21 contains <ref actuate="onrequest" show="replace" target="ref329">
<title localtype="simple" render="italic">
<part>Oversize</part>
</title>
</ref> material from the <title localtype="simple" render="italic">
<part>Writings</part>
</title> series. The <ref actuate="onrequest" show="replace" target="ref334">
<title localtype="simple" render="italic">
<part>Restricted Fragile Papers</part>
</title>
</ref> in Box 22 consist of the originals for which preservation copies have been made.</p>
</scopecontent>
<controlaccess>
<title source="local">
<part localtype="uniform_title">Double-dealer</part>
</title>
<title source="local">
<part localtype="uniform_title">Holiday</part>
</title>
<title identifier="http://id.loc.gov/authorities/names/no2008154705"
source="lcsh">
<part localtype="uniform_title">New Yorker (New York, N.Y. : 1925)</part>
</title>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004341"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008117582"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="geographic">Southern States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85048054"
source="lcsh">
<part localtype="topical">Fiction</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85061165"
source="lcsh">
<part localtype="topical">Historical fiction</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85144443"
source="lcsh">
<part localtype="topical">Voyages and travels</part>
</subject>
<occupation identifier="http://id.loc.gov/authorities/subjects/sh85009793"
source="lcsh">
<part localtype="occupation">Authors</part>
</occupation>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85092863"
source="lcsh">
<part localtype="topical">Novelists</part>
</subject>
<persname rules="aacr" source="local">
<part localtype="agent_person">Basso, Etolia</part>
</persname>
<persname>
<part localtype="agent_person">Basso, Hamilton, 1904-1964</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Brooks, Van Wyck, 1886-1963</part>
</persname>
<persname>
<part localtype="agent_person">Cowley, Malcolm, 1898-1989</part>
</persname>
<persname>
<part localtype="agent_person">Glasgow, Ellen, 1873-1945</part>
</persname>
<persname>
<part localtype="agent_person">Hellman, Lillian, 1905-1984</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Herndon, William Lewis, 1813-1857 (Exploration of the valley of the Amazon)</part>
</persname>
<persname>
<part localtype="agent_person">Lindsay, Howard, 1889-1968</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Perkins, Maxwell E. (Maxwell Evarts), 1884-1947</part>
</persname>
<persname>
<part localtype="agent_person">Wilson, Edmund, 1895-1972</part>
</persname>
<persname>
<part localtype="agent_person">Wolfe, Thomas, 1900-1938</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Wong, Jade Snow</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/670413"
id="ref11"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1927-73" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1973">1973</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_a20a052b1c3d55266f11e64b8de50269">1.5' (4 boxes)</physdesc>
</did>
<scopecontent id="aspace_14f675b4dbb795e5e040629e27e38619">
<head>Scope and Contents</head>
<p>Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title> is arranged alphabetically by name of correspondent.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/670414"
id="ref13"
level="file">
<did>
<unittitle>Anderson, Sherwood</unittitle>
<unitdatestructured altrender="1929-30" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1929">1929</fromdate>
<todate standarddate="1930">1930</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670415"
id="ref14"
level="file">
<did>
<unittitle>"A" general</unittitle>
<unitdatestructured altrender="1950-62" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670416"
id="ref15"
level="file">
<did>
<unittitle>Barker, Lee</unittitle>
</did>
<relatedmaterial id="aspace_3637690a8c3192332c89133bf9155fd7">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref50">See: Doubleday & Co., Inc., Box 2 folder 41-44</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/670417"
id="ref17"
level="file">
<did>
<unittitle>Barrau, J.</unittitle>
<unitdatestructured altrender="1959-60" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1959">1959</fromdate>
<todate standarddate="1960">1960</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670418"
id="ref18"
level="file">
<did>
<unittitle>Basso, Etolia</unittitle>
<unitdatestructured altrender="1942-64" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1942">1942</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">4-15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670419"
id="ref19"
level="file">
<did>
<unittitle>Basso, Keith</unittitle>
<unitdatestructured altrender="1942-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1942">1942</fromdate>
<todate standarddate="1950">1950</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670420"
id="ref20"
level="file">
<did>
<unittitle>Benjamin, Ben</unittitle>
<unitdatestructured altrender="1961-62" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670421"
id="ref21"
level="file">
<did>
<unittitle>Boyle, Kay</unittitle>
<unitdatestructured altrender="1958 Jun 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1958-06-02">1958 Jun 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670422"
id="ref22"
level="file">
<did>
<unittitle>Brooks, Van Wyck</unittitle>
<unitdatestructured altrender="1943-61" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1943">1943</fromdate>
<todate standarddate="1961">1961</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670423"
id="ref23"
level="file">
<did>
<unittitle>Brown, Ned</unittitle>
<unitdatestructured altrender="1949-56" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670424"
id="ref24"
level="file">
<did>
<unittitle>"B" general</unittitle>
<unitdatestructured altrender="1933-64" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933">1933</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">21-22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670425"
id="ref25"
level="file">
<did>
<unittitle>Cahn, Edmond H.</unittitle>
<unitdatestructured altrender="1954-61" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1954">1954</fromdate>
<todate standarddate="1961">1961</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670426"
id="ref26"
level="file">
<did>
<unittitle>Caldwell, Erskine</unittitle>
<unitdatestructured altrender="1940-41" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940">1940</fromdate>
<todate standarddate="1941">1941</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670427"
id="ref27"
level="file">
<did>
<unittitle>Catton, Bruce</unittitle>
<unitdatestructured altrender="1955-56" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1955">1955</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670428"
id="ref28"
level="file">
<did>
<unittitle>Challman, Jean C.</unittitle>
<unitdatestructured altrender="1959" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1959">1959</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670429"
id="ref29"
level="file">
<did>
<unittitle>Charles Scribner's Sons</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1941, 1946, n.d.</unitdate>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670430"
id="ref30"
level="file">
<did>
<unittitle>Chase, Marion</unittitle>
<unitdatestructured altrender="1950-53, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670431"
id="ref31"
level="file">
<did>
<unittitle>Chase, Stuart</unittitle>
<unitdatestructured altrender="1956" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1956">1956</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1961" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1961">1961</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670432"
id="ref32"
level="file">
<did>
<unittitle>Civil War Round Table of New York</unittitle>
<unitdatestructured altrender="1954" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1954">1954</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1958" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1958">1958</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670433"
id="ref33"
level="file">
<did>
<unittitle>Collins, W. A. R.</unittitle>
</did>
<relatedmaterial id="aspace_523781694f92a5a9adc1373083119b73">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref152">See: Wm Collins Sons & Co., Ltd., Box 4 folder 119</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/670434"
id="ref35"
level="file">
<did>
<unittitle>Columbia Broadcasting System</unittitle>
<unitdatestructured altrender="1949" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1949">1949</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1952" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1952">1952</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670435"
id="ref36"
level="file">
<did>
<unittitle>Cousins, Margaret</unittitle>
<unitdatestructured altrender="1955-62" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1955">1955</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670436"
id="ref37"
level="file">
<did>
<unittitle>Cousins, Norman</unittitle>
<unitdatestructured altrender="1963 Sep 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1963-09-09">1963 Sep 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670437"
id="ref38"
level="file">
<did>
<unittitle>Cowley, Malcolm</unittitle>
<unitdatestructured altrender="1938-64" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938">1938</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79129 /locations/9"
containerid="39002091609207"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670438"
id="ref39"
level="file">
<did>
<unittitle>Crowell-Collier Publishing Co.</unittitle>
<unitdatestructured altrender="1961-62" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670439"
id="ref40"
level="file">
<did>
<unittitle>cummings, e. e.</unittitle>
<unitdatestructured altrender="1954 Apr 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1954-04-12">1954 Apr 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670440"
id="ref41"
level="file">
<did>
<unittitle>Curtis Brown Ltd.</unittitle>
<unitdatestructured altrender="1942-43" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1942">1942</fromdate>
<todate standarddate="1943">1943</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670441"
id="ref42"
level="file">
<did>
<unittitle>"C" general</unittitle>
<unitdatestructured altrender="1949-62, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">36-37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670442"
id="ref43"
level="file">
<did>
<unittitle>Danielsson, Bengt</unittitle>
<unitdatestructured altrender="1959-60, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1959">1959</fromdate>
<todate standarddate="1960">1960</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670443"
id="ref44"
level="file">
<did>
<unittitle>Danielsson, Marie-Therèse</unittitle>
<unitdatestructured altrender="1959-62, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1959">1959</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670444"
id="ref45"
level="file">
<did>
<unittitle>Danielsson, Marnia</unittitle>
<unitdatestructured altrender="1959" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1959">1959</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670445"
id="ref46"
level="file">
<did>
<unittitle>DeVoto, Bernard</unittitle>
<unitdatestructured altrender="1943" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1943">1943</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1951" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951">1951</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670446"
id="ref47"
level="file">
<did>
<unittitle>DeVoy, S. Elizabeth</unittitle>
</did>
<relatedmaterial id="aspace_209604b38f1edcc1337841794f7a28bc">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref29">See: Charles Scribner's Sons, Box 1 folder 27</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/670447"
id="ref49"
level="file">
<did>
<unittitle>DeVries, Peter</unittitle>
<unitdatestructured altrender="1964" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1964">1964</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670448"
id="ref50"
level="file">
<did>
<unittitle>Doubleday & Co., Inc.</unittitle>
<unitdatestructured altrender="1952-68" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1952">1952</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79130 /locations/9"
containerid="39002091609215"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">41-44</container>
</did>
</c>