-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1523.xml
4298 lines (4298 loc) · 243 KB
/
1523.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.frost">beinecke.frost</recordid>
<otherrecordid localtype="BIB">3251290</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Frances Frost Papers
</titleproper>
<titleproper localtype="filing">Frost (Frances) Papers</titleproper>
<author>by Karen V. Kukil</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>August 1988</date>
<num>YCAL MSS 33</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">3251290</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-12, 17-18</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 13-16</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="1">1</num> published digital object.</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:10:16-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:10</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1523" level="collection">
<did>
<unittitle>Frances Frost papers</unittitle>
<unitid>YCAL MSS 33</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>8.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">18 boxes</physdesc>
<unitdatestructured altrender="1919-1976 (inclusive), 1928-1959"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1919">1919</fromdate>
<todate standarddate="1976">1976</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1959">1959</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_9c9f85ba8802d56154b6b184eaca6172">The papers contain correspondence, journals, financial papers, scrapbooks and drafts of Frost's poetry, short stories, and longer works.</abstract>
<physdesc id="aspace_ff2b2c4edd6b5d01c8ee15fd4ea8d202">Other Storage Formats: oversize</physdesc>
<origination label="Creator">
<persname>
<part localtype="agent_person">Frost, Frances, 1905-1959</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_7a5597fd4bda93ac25bdfeffe4eafc60">
<head>Immediate Source of Acquisition</head>
<p>The papers were purchased from Frances Frost's executrix, Mrs. N. Carr Grace, on the Danford Barney Fund in May 1972. In March 1977, Harper & Row, Inc. donated the galleys and mock-ups for the 1976 reissue of <title localtype="simple" render="italic">
<part>Christmas in the Woods</part>
</title>.</p>
</acqinfo>
<userestrict id="aspace_8f57334c44516ebc745b6581e086199c">
<head>Conditions Governing Use</head>
<p>The Frances Frost 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_c23e6b3025ffbce34d7523c311a7a689">
<head>Preferred Citation</head>
<p>Frances Frost Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_fe4c5c41c29b6071f94a509f10f52fe8">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 17 (audiotape reel): Restricted fragile. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<bioghist id="aspace_2f3a943173b503e6c63fc4bcc69a3d79">
<head>FRANCES MARY FROST (1905-1959)</head>
<p>Frances Mary Frost, poet, novelist, and author of children's books, was born in St. Albans, Vermont, on August 3, 1905, to Amos and Susan Keefe Frost. She attended Middlebury College from 1923-26 and later graduated from the University of Vermont with the degree of Bachelor of Philosophy in 1931.</p>
<p>Frost worked as a reporter in 1927 and taught creative poetry at the University of Vermont from 1929-31 before devoting her time to writing. Her first book, <title localtype="simple" render="italic">
<part>Hemlock Wall</part>
</title>, was published by the Yale University Press in 1929 as part of the Yale Series of Younger Poets. It was succeeded by ten volumes of verse, including <title localtype="simple" render="italic">
<part>Woman of this Earth</part>
</title>, published by Houghton, Mifflin, & Co. in 1934. She was a frequent contributor of poetry and fiction to the <title localtype="simple" render="italic">
<part>New York Herald Tribune</part>
</title> and to such magazines as <title localtype="simple" render="italic">
<part>Harper's</part>
</title> and <title localtype="simple" render="italic">
<part>Saturday Review</part>
</title>. In addition to the four volumes of poetry she wrote for children--<title localtype="simple" render="italic">
<part>Pool in the Meadow</part>
</title>, <title localtype="simple" render="italic">
<part>Christmas in the Woods</part>
</title>, <title localtype="simple" render="italic">
<part>The Little Whistler</part>
</title>, and <title localtype="simple" render="italic">
<part>The Little Naturalist</part>
</title>--Frost published over a dozen books of juvenile fiction, including the Windy Foot series. Farrar & Rinehart also published five of her novels between 1936-42, including <title localtype="simple" render="italic">
<part>Yoke</part>
</title>
<title localtype="simple" render="italic">
<part>of Stars</part>
</title>, <title localtype="simple" render="italic">
<part>Uncle Snowball</part>
</title>, and <title localtype="simple" render="italic">
<part>Village of Glass</part>
</title>. She spent her summers from 1931-37 at the MacDowell Colony in Peterboro, New Hampshire, and received the Shelley Memorial Award from the Poetry Society of America along with Lola Ridge and the Golden Rose Award of the New England Poetry Club in 1933.</p>
<p>Both of Frost's marriages--to W. Gordon Blackburn of Portland, Oregon, on April 4, 1926 and to Samuel Gaillard Stoney of Charleston, South Carolina, on September 18, 1933--ended in divorce. She spent the last years of her life in New York City and died of cancer at her home at 79 Horatio Street on February 11, 1959. She was survived by her son, the poet Paul Blackburn, and by her daughter, Sister Marguerite of the Order of St. Joseph.</p>
</bioghist>
<scopecontent id="aspace_08591c5ef25faf3e09165654e28bf73d">
<head>Scope and Contents</head>
<p>The Frances Frost Papers contain correspondence, journals, financial records, scrapbooks, and drafts of Frost's poetry, novels, children's books, and short stories. The papers span the years 1919-76, but the bulk of the material dates from 1928-59. The Beinecke Rare Book and Manuscript Library also owns a life-size portrait head in composite of Frances Frost (one of three) by Anita Weschler that was donated by Jack A. Goldfarb in May, 1972.</p>
<p>Series I, <title localtype="simple" render="italic">
<part>Writings</part>
</title> (Boxes 1-11), is divided into four sections, <title localtype="simple" render="italic">
<part>Children's Literature</part>
</title>, <title localtype="simple" render="italic">
<part>Novels</part>
</title>, <title localtype="simple" render="italic">
<part>Poetry</part>
</title>, and <title localtype="simple" render="italic">
<part>Shorter Works</part>
</title>. The section on <title localtype="simple" render="italic">
<part>Children's Literature</part>
</title> begins with drafts of Frost's narrative adaptation of Gian-Carlo Menotti's opera, <title localtype="simple" render="italic">
<part>Amahl and the Night Visitors</part>
</title>. Box 1, folder 2 contains a portion of the dialogue from the opera, which Frost preserved intact, and a reproduction of "The Adoration of the Magi" by Hieronymous Bosch, which inspired Menotti. There are also some articles about Harvard in Box 15, folder 268, upon which Frost based her book <title localtype="simple" render="italic">
<part>The Cat That Went to College</part>
</title>. A number of galleys and page proofs for the Windy Foot books are also preserved with the <ref actuate="onrequest" show="replace" target="ref266">
<title localtype="simple" render="italic">
<part>Oversize</part>
</title>
</ref> material. Whittlesey House published Frost's juvenilia, beginning in 1943 with <title localtype="simple" render="italic">
<part>Legends of the United Nations</part>
</title>, a collection of folk tales from all over the world. They rejected "Paddy Reilly," however, in 1955 because the manuscript was "too episodic" (Box 2, folder 25).</p>
<p>Like her other writings, Frost based her novels upon her New England upbringing and often featured strong female characters. According to a scrapbook of reviews about her second novel, <title localtype="simple" render="italic">
<part>Yoke of Stars</part>
</title>, Frost had a flowing lyric style, "appealing human characters," and a "hearty and wholesome message" (Box 13, folder 256). The <title localtype="simple" render="italic">
<part>Novels</part>
</title> subseries contains contracts for three other novels, a synopsis of <title localtype="simple" render="italic">
<part>Uncle Snowball</part>
</title>, which was not recommended for a movie "unless a quiet, serene story is wanted" (Box 3, folder 40), and various drafts for her last novel, <title localtype="simple" render="italic">
<part>Village of Glass</part>
</title>.</p>
<p>The bulk of <ref actuate="onrequest" show="replace" target="ref11">the <title localtype="simple" render="italic">
<part>Writings</part>
</title> series</ref> consists of poetry, found in Boxes 3-10. Thirty-one notebooks covering the period 1928-59 begin the section. They are arranged chronologically and contain early drafts and publishing information about each poem, such as submissions, rejections, and acceptances. Financial information concerning the poems may also be found with Frost's financial records in Box 12, folders 238-42. Over one thousand loose poems, arranged alphabetically by title, follow the notebooks in letter general files. Books of verse and printed versions of poems in magazines are given separate folders and interfiled alphabetically by title. Poetry written for both adults and children is represented in the subseries. Some of the poems were later set to music by Earl Roland Larson and may be found with <title localtype="simple" render="italic">
<part>Shorter Works</part>
</title> in Boxes 10-11. A folder of newspaper clippings of Frost's poems completes the section. Other printed versions of her poems are found in scrapbooks (Box 13, folders 255-57). An untitled draft filed in Box 10, folder 166 was probably the last collection of verse that Frost wrote before her death.</p>
<p>
<title localtype="simple" render="italic">
<part>Shorter Works</part>
</title> include short stories, essays, plays, and music scores. Both juvenile and adult fiction are represented in this section. Most of Frost's stories are in manuscript, although a few printed versions from magazines are included, together with one recording on magnetic tape of the "Voice of America's" broadcast of "The Heart Being Perished."</p>
<p>
<ref actuate="onrequest" show="replace" target="ref204">Series II, <title localtype="simple" render="italic">
<part>Personal Papers</part>
</title>
</ref> (Boxes 12-14), is arranged alphabetically by type of material. There are twenty-six folders of letters Frost received from magazines like <title localtype="simple" render="italic">
<part>Virginia Quarterly</part>
</title> and <title localtype="simple" render="italic">
<part>Atlantic Monthly</part>
</title>, from George Abbe at the Book Club for Poetry, who published <title localtype="simple" render="italic">
<part>This Rowdy Heart</part>
</title> in 1954 through the Golden Quill Press (Box 12, folder 213), and from the Arthur P. Schmidt Company, which sent her ten dollars for every poem they set to music. Poets like Edwin Arlington Robinson sent her wedding congratulations, Witter Bynner praised her poem "Rocking Chair," and Karlton Kelm admired her first novel <title localtype="simple" render="italic">
<part>Innocent Summer</part>
</title>. Ivan Beede wrote from the MacDowell Colony wishing her a "strenuous, happy, and fruitful visit to Germany" and quipping that "the beer can't have gone Nazi" (Box 12, folder 211). There is also a letter from Gertrude Stein to Lindley Hubbell about the writer Windell Wilcox. The Library of Congress sent a permission form signed by N. Carr Grace in 1968, releasing her rights to the library's sound recording of Frost reading poetry in 1955.</p>
<p>Frost's journals begin with two early diaries from high school and a third of her impressions of Germany in 1936. In two later notebooks, she records overheard conversations and lists such things as names to be used in her writing. There are only two early photographs of Frost in the papers and one of James Houston Spencer. Three scrapbooks include printed clippings of Frost's poems, articles about her, and reviews of her work from 1930-58. Seven additional scrapbooks contain the poetry of other writers, such as Robert Frost (to whom she was not related), Dorothy Parker, and William Carlos Williams. There are also clippings of poems by other residents of the MacDowell Colony, such as Babette Deutsch and Louis Untermeyer. Three folders of writings by others complete the series. Alice Hunt Bartlett's article about American poetry, filed here, mentions Frost and a play written at the MacDowell Colony in 1936 in which Frost is described as "A daughter of rock-ribbed Vermont," "An interpreter of life -- and of nature," and "A New England pagan" (Box 14, folder 266).</p>
</scopecontent>
<processinfo id="aspace_d3c765d552d552dba9288dfdaf98041b">
<head>Processing Information</head>
<p>Folder 180 in box 10 is unused. Original audiotape reel is now housed in box 17. Restricted fragile material.</p>
</processinfo>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85023598"
source="lcsh">
<part localtype="topical">Children's literature</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85079180"
source="lcsh">
<part localtype="topical">Lyric poetry</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85103705"
source="lcsh">
<part localtype="topical">Poetry</part>
<part localtype="topical">Authorship</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85103727"
source="lcsh">
<part localtype="topical">Poetry, Modern</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85147679"
source="lcsh">
<part localtype="topical">Women poets</part>
</subject>
<geogname source="local">
<part localtype="geographic">New England</part>
<part localtype="genre_form">Poetry</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Vermont</part>
<part localtype="genre_form">Poetry</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Journals (notebooks)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026451" source="aat">
<part localtype="genre_form">Poems</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Scrapbooks</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026430" source="aat">
<part localtype="genre_form">Sheet music</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Poets</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Abbe, George, 1911-1989</part>
</persname>
<persname>
<part localtype="agent_person">Frost, Frances, 1905-1959</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Larson, Earl Roland</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Edward MacDowell Association</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/588375"
id="ref11"
level="series">
<did>
<unittitle>Writings</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4.7</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">12 boxes</physdesc>
<unitdatestructured altrender="1928-63" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1963">1963</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_aa0324ebbcd999ebadb27cf586858829">
<head>Scope and Contents</head>
<p>Boxes 1-11 hold Series I, <title localtype="simple" render="italic">
<part>Writings</part>
</title>, divided into four sections, <title localtype="simple" render="italic">
<part>Children's Literature</part>
</title>, <title localtype="simple" render="italic">
<part>Novels</part>
</title>, <title localtype="simple" render="italic">
<part>Poetry</part>
</title>, and <title localtype="simple" render="italic">
<part>Shorter Works</part>
</title>. Each section is arranged by title and thereafter by the probable order of creation.</p>
</scopecontent>
<accessrestrict id="aspace_04c7960ddcc90b1c01240445456f88c4">
<head>Conditions Governing Access</head>
<p>Box 17 (audiotape reel): Restricted fragile. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/588376"
id="ref13"
level="subseries">
<did>
<unittitle>CHILDREN'S LITERATURE</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/588377"
id="ref14"
level="file">
<did>
<unittitle>Notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588378"
id="ref15"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Amahl and the Night Visitors</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/588379"
id="ref16"
level="file">
<did>
<unittitle>Notes</unittitle>
<unitdatestructured altrender="1951" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951">1951</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588380"
id="ref17"
level="file">
<did>
<unittitle>Typescript</unittitle>
<unitdatestructured altrender="1952 Mar 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1952-03-25">1952 Mar 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
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/588381"
id="ref18"
level="file">
<did>
<unittitle>"Final" typescript</unittitle>
<unitdatestructured altrender="1952 Apr 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1952-04-01">1952 Apr 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588382"
id="ref19"
level="file">
<did>
<unittitle>Typescript, variant fragment</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">5</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/588383"
id="ref20"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Cat That Went to College</part>
</title>
</unittitle>
</did>
<relatedmaterial id="aspace_004eb05ea5a78d25102e24c04c05f1df">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref270">See: Oversize, Box 15, folder 268</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/588384"
id="ref22"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Christmas is Shaped Like Stars</part>
</title>
</unittitle>
</did>
<relatedmaterial id="aspace_78db556e9a39e7f5bb2385b0945c7fd2">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref271">See: Oversize, Box 15, folder 269</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/588385"
id="ref24"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Fireworks for Windy Foot</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/588386"
id="ref25"
level="file">
<did>
<unittitle>Notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588387"
id="ref26"
level="file">
<did>
<unittitle>Early typescript, chapters 1-16</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">7-10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588388"
id="ref27"
level="file">
<did>
<unittitle>Typescript, chapters 1-3</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588389"
id="ref28"
level="file">
<did>
<unittitle>Reviews</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">12</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/588390"
id="ref29"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Legends of the United Nations</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/588391"
id="ref30"
level="file">
<did>
<unittitle>Typescripts of four stories</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588392"
id="ref31"
level="file">
<did>
<unittitle>Page proofs</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">14-16</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/588393"
id="ref32"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Little Donkey</part>
</title>: typescript and reviews</unittitle>
<unitdatestructured altrender="1959, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1959">1959, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588394"
id="ref33"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Little Fox</part>
</title>: illustrations by Morgan Dennis</unittitle>
<unitdatestructured altrender="1952 May 28" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1952-05-28">1952 May 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588395"
id="ref34"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Maple Sugar for Windy Foot</part>
</title>
</unittitle>
</did>
<relatedmaterial id="aspace_c209e01ecb3ebc370e9a190895700dda">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref273">See also: Oversize, Box 15, folders 270-73</ref>
</p>
</relatedmaterial>
<c altrender="/repositories/11/archival_objects/588396"
id="ref35"
level="file">
<did>
<unittitle>Typescript with printer's annotations, chapters 1-10</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71187 /locations/9"
containerid="39002075035841"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">19-21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588397"
id="ref36"
level="file">
<did>
<unittitle>Typescript with printer's annotations, chapters 11-14</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588398"
id="ref37"
level="file">
<did>
<unittitle>Mock-ups and page proofs for title page</unittitle>
<unitdatestructured altrender="1949 Nov" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1949-11">1949 Nov</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588399"
id="ref38"
level="file">
<did>
<unittitle>Advertisement</unittitle>
<unitdatestructured altrender="1950 spring" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950-03-20">1950 March 20</fromdate>
<todate standarddate="1950-06-21">1950 June 21</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">24</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/588400"
id="ref40"
level="file">
<did>
<unittitle>"Paddy Reilly"</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/588401"
id="ref41"
level="file">
<did>
<unittitle>Early typescript</unittitle>
<unitdatestructured altrender="1955" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1955">1955</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">25-26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588402"
id="ref42"
level="file">
<did>
<unittitle>Typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588403"
id="ref43"
level="file">
<did>
<unittitle>Typescript, carbon</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">28</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/588404"
id="ref44"
level="file">
<did>
<unittitle>"Paddy Reilly: Dog of New York": typescript, carbon</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588405"
id="ref45"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Sleigh Bells for Windy Foot</part>
</title>
</unittitle>
</did>
<relatedmaterial id="aspace_8e8f3080e56d91a644d283f33ece7501">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref277">See: Oversize, Box 16, folder 274</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/588406"
id="ref47"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Then Came Timothy</part>
</title>
</unittitle>
</did>
<relatedmaterial id="aspace_ab19529efe21cc73902da50d98cb7f42">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref279">See also: Oversize, Box 16, folders 275-76</ref>
</p>
</relatedmaterial>
<c altrender="/repositories/11/archival_objects/588407"
id="ref48"
level="file">
<did>
<unittitle>Typescript, "corrected copy"</unittitle>
<unitdatestructured altrender="1950" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">30-31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588408"
id="ref49"
level="file">
<did>
<unittitle>Typescript, "master copy"</unittitle>
<unitdatestructured altrender="1950" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">32-33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588409"
id="ref50"
level="file">
<did>
<unittitle>Typescript, carbon</unittitle>
<unitdatestructured altrender="1950" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">34-35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588410"
id="ref51"
level="file">
<did>
<unittitle>Typescript fragments</unittitle>
<unitdatestructured altrender="1950" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">36</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/588411"
id="ref53"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Windy Foot at the Country Fair</part>
</title>: typescript fragments</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71188 /locations/9"
containerid="39002075035858"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">37</container>
</did>
<relatedmaterial id="aspace_2647823d45d87a12ae35a1cef4264eb3">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref281">See also: Oversize, Box 16, folder 277</ref>
</p>
</relatedmaterial>
</c>
</c>
<c altrender="/repositories/11/archival_objects/588412"
id="ref55"
level="subseries">
<did>
<unittitle>NOVELS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/588413"
id="ref56"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Innocent Summer</part>
</title>: contract</unittitle>
<unitdatestructured altrender="1935 May 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935-05-09">1935 May 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71189 /locations/9"
containerid="39002075035866"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588414"
id="ref57"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Kate Trimingham</part>
</title>: contract</unittitle>
<unitdatestructured altrender="1939 Dec 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1939-12-21">1939 Dec 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71189 /locations/9"
containerid="39002075035866"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588415"
id="ref58"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Uncle Snowball</part>
</title>: synopses</unittitle>
<unitdatestructured altrender="1939 Dec 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1939-12-14">1939 Dec 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71189 /locations/9"
containerid="39002075035866"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588416"
id="ref59"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Village of Glass</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/588417"
id="ref60"
level="file">
<did>
<unittitle>Contract</unittitle>
<unitdatestructured altrender="1937 Jul 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937-07-08">1937 Jul 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71189 /locations/9"
containerid="39002075035866"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588418"
id="ref61"
level="file">
<did>
<unittitle>"Original" typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/71189 /locations/9"
containerid="39002075035866"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/588419"
id="ref62"
level="file">
<did>
<unittitle>Typescript with printer's marks</unittitle>
<unitdatestructured altrender="1942" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1942">1942</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/71189 /locations/9"
containerid="39002075035866"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">43-45</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/588420"