-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1039.xml
8047 lines (8047 loc) · 429 KB
/
1039.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.steadwf">beinecke.steadwf</recordid>
<otherrecordid localtype="BIB">9410629</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the William Force Stead Papers
</titleproper>
<titleproper localtype="filing">Stead (William Force) Papers</titleproper>
<author>by Diane J Ducharme and Thanh Tran</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>June 2010</date>
<num>OSB MSS 158</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">9410629</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-22, 24-75</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="9">9</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="315">315</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>dacs</abbr>
<citation>Describing Archives: A Content Standard</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:04:53-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 00:04</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1039" level="collection">
<did>
<unittitle>William Force Stead papers</unittitle>
<unitid>OSB MSS 158</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>32.83</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">75 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1859">1859</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1900">1900</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_e12ef6eba91eade7df1dac126e85b2c1">The William Force Stead Papers document the literary career and aspects of the personal life of poet, clergyman and scholar William Force Stead. The papers include personal and professional correspondence; writings; notebooks, personal papers and photographs; printed material; and documents relating to Stead's work as Honorary Secretary of the Keats-Shelley Memorial Association. The letters document aspects of Stead's literary and religious careers as well as his family relationships. Literary correspondents include Edmund Blunden, T. S. Eliot, William Golding, Frank Morley, Lady Ottoline Morrell, and W. B.Yeats. There are also letters by English composer Henry Vere Fitzroy Somerset. The collection contains drafts, manuscripts and typescripts of many works by Stead, including drafts of what appears to be an unpublished memoir. Personal papers include diaries from between 1896 and 1928; records of Stead's marriage and of his work for the U. S. Consular Service; and family photographs.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Stead, William Force, 1884-1967</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_3ce2d7307e1370f18ae397eafdd2c2ec">
<head>Immediate Source of Acquisition</head>
<p>Series I-VI purchased from Dom Julian Stead, and purchased from Wesleyan University Library, 1969; Series VII gift of Dom Julian Stead, 1974; Series VIII transferred from the Manuscript Department, University of Virginia Library, 1975; Series IX purchased from Frank Shivers, 1978; Series X gift of Dom Julian Stead, 1978.</p>
<p>T. S. Eliot letter to W. F. Stead, 1930 December 2, purchased from Gotham Book Mart, 1969.</p>
</acqinfo>
<accessrestrict id="aspace_c22c2a998fb41c3b78edb5f0562e9ea1">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 68 (film reel): ‡a Restricted fragile material. For further information consult the appropriate curator.</p>
</accessrestrict>
<userestrict id="aspace_0b70892f7a177ab25e8f2f7a4e5e1c85">
<head>Conditions Governing Use</head>
<p>The William Force Stead 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_a1ba1e7904cae7ef9b4ef6183be46bb7">
<head>Preferred Citation</head>
<p>William Force Stead Papers. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_eb7b017af6a76255cdce92daf21605c1">
<head>Processing Information</head>
<p>This collection was initially sorted and partially arranged and listed by library staff in the 1970s. The three 1969 purchases were merged before arrangement and listing and roughly grouped by type of material. The subsequent additions were not interfiled; each of these is described separately in the contents list below, titled according to month and year of acquisition. The volumes in Series XI, Printed Materials, were apparently acquired at various times during the 1970s, and have been left at the end of the collection where they were originally placed.</p>
<p>As a rule, descriptive information found in the Collection Contents section is drawn in large part from information supplied with the collection, acknowledgement lists created by library staff, and from an initial survey of the contents. Folder titles appearing in the contents list below are largely based on those provided by the creator or by library staff in the 1970s. Titles have not been verified against the contents of the folders. Some folder titles are apparently original; other folder titles were supplied by staff during the initial processing and in 2010.</p>
</processinfo>
<bioghist id="aspace_06698320ad0086a8930c27f407d95148">
<head>William Force Stead, 1884-1967</head>
<p>William Force Stead was born in Washington DC in 1884. He attended the University of Virginia for several years, and in 1908 joined the United States Consular Service. From 1908 until 1915 he was a Vice-Consul in England, first in Nottingham and then in Liverpool. In 1911 he married Anne Frances Goldsborough in Baltimore, Maryland; the couple's first child, Philip, was born two years later. Their second son Peter was born in 1926.</p>
<p>Stead was ordained a minister in the Church of England in 1916, and served for two years as a curate at Ross-on-Wye. He received his B.A. in theology from Queen's College, Oxford in 1921, following which he was appointed Assistant Chaplain of the English Church in Florence, Italy. In 1926 Stead received an M.A. from Queen's College, and thereafter served as Chaplain of Worcester College, Oxford from 1926 to 1933. It was during this time that he baptized his friend, the American-born poet T. S. Eliot, into the Church of England. Stead's other literary friends included W. B. Yeats, Edmund Blunden, Richard Cobden-Sanderson, C. S. Lewis, and Robert Sencourt.</p>
<p>Between 1911 and 1933 Stead published seven volumes of poetry, including <title localtype="simple" render="italic">
<part>Windflowers</part>
</title> (1911), <title localtype="simple" render="italic">
<part>Festival in Tuscany</part>
</title>(1927), and <title localtype="simple" render="italic">
<part>Uriel: A Hymn in Praise of Divine Immanence</part>
</title>(1933).</p>
<p>In August of 1933 Stead was received into the Roman Catholic Church by the English Dominican Bede Jarrett. Anne Stead had become a Catholic three years earlier, and spent much of her time in a convent in Birmingham. As a result of his conversion, Stead resigned from the Worcester College chaplaincy; he moved to the nearby village of Clifton Hampden. During the 1930s, Stead published anthololgies, magazine articles and reviews; wrote a B.Litt thesis on the works of the Jesuit poet Robert Southwell; and published the first edition of Christopher Smart's <title localtype="simple" render="italic">
<part>Jubiliate Agno</part>
</title>.</p>
<p>Stead and his son Peter sailed for the United States on August 12, 1939 to visit relatives in Baltimore. World War II broke out before they could return to England, and their passports were canceled. Anne Stead remained in England throughout the war, choosing to remain close to their oldest child, Philip, who had proved to be mentally handicapped and was institutionalized.</p>
<p>Stead never lived in England again, although he visited several times after the war. From 1943 through 1958 he was Professor of English at Trinity College in Washington, DC, a Roman Catholic school for girls. In Baltimore, Stead met Nancy Howard DeFord Venable, a widow and literary hostess, and eventually shared her homes in Baltimore and St. Mâlo, France with her. The pair traveled frequently and entertained literary friends, including T. S. Eliot, W. H. Auden, William Golding, Vere Somerset, and Tennessee Williams. Stead's health and memory began to fail in the final years of his life, and he died in Nancy Venable's Baltimore home on March 8, 1967.</p>
</bioghist>
<scopecontent id="aspace_81ca358bd64f265780263d2125224996">
<head>Scope and Contents</head>
<p>The William Force Stead Papers document the literary career, personal life, and religious vocation of poet, clergyman and scholar William Force Stead. The papers include personal and professional correspondence; writings; notebooks, personal papers and photographs; printed material; and documents relating to Stead's work as Honorary Secretary of the Keats-Shelley Memorial Association.</p>
<p>Series I through Series VI contain material acquired in 1969 and organized shortly thereafter into six series, while Series VII through X contain post-1969 acquisitions in order of acquisition, and Series XI contains printed material acquired at various times during the 1970s. For some types of material, therefore, it is necessary to consult several series.Correspondence is located in Series I, Correspondence, as well as in Series VII through Series X, while Stead's writings are located in Series II, Series III, and Series VII and Series X. Many of the items in Series XI, <title localtype="simple" render="italic">
<part>Printed Materials</part>
</title>, are also works by Stead.</p>
<p>Correspondence includes extensive and detailed family correspondence with Stead's father, brother, and wife, Anne Frances Goldsborough Stead; letters from a number of English literary figures, including Edmund Blunden, T. S. Eliot, Frank Morley, Lady Ottoline Morrell, and W. B.Yeats, and English composer Henry Vere Fitzroy Somerset; and letters from a variety of scholarly and religious colleagues on personal and professional subjects. The Stead Papers also contain notes, drafts, and manuscripts and typescripts for many of Stead's works, particularly his poetry and his religious meditations; folders with titles beginning with "Stead" in Series II appear to contain draft chapters of an unpublished memoir. Other material of biographical interest includes several boxes of diaries; papers relating to Stead's consular service; and school notebooks, found in Series IV, as well as additional personal and family documentation in Series VII through Series X.</p>
</scopecontent>
<arrangement id="aspace_38517a49d500d572000929b67a944c82">
<head>Arrangement</head>
<p>Organized into 11 series: I. Correspondence, 1900-1972. II. Writings, 1899-1963. III. Notebooks, 1876-1955. IV. Personal Papers, 1891-1967. V. Photographs, 1910-1935. VI. Keats-Shelley Memorial Association Papers, 1906-1950. VII. November 1974 Acquisition, 1848-1968. VIII. October 1975 Acquisition, 1978, undated. IX. May 1978 Acquisition, 1922-1948. X. December 1978 Acquisition, 1859-1960. XI. Printed Materials, 1900-1960.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004387"
source="lcsh">
<part localtype="topical">American poetry</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009858"
source="lcsh">
<part localtype="topical">Authors, English</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85031711"
source="lcsh">
<part localtype="topical">Catholic converts</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85025095"
source="lcsh">
<part localtype="topical">Christian life</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85026944"
source="lcsh">
<part localtype="topical">Clergy</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043783"
source="lcsh">
<part localtype="topical">English literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043938"
source="lcsh">
<part localtype="topical">English poetry</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85112702"
source="lcsh">
<part localtype="topical">Religious poetry</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056857"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Intellectual life</part>
<part localtype="temporal">20th Century</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300028045" source="aat">
<part localtype="genre_form">Audiovisual materials</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Diaries</part>
<part localtype="geographic">Great Britain</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Diaries</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300136900" source="aat">
<part localtype="genre_form">Motion pictures (visual works)</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Photographs</part>
<part localtype="geographic">Great Britain</part>
<part localtype="temporal">20th Century</part>
</genreform>
<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/sh85026944"
source="lcsh">
<part localtype="topical">Clergy</part>
</subject>
<persname>
<part localtype="agent_person">Blunden, Edmund, 1896-1974</part>
</persname>
<persname>
<part localtype="agent_person">Eliot, T. S. (Thomas Stearns), 1888-1965</part>
</persname>
<persname>
<part localtype="agent_person">Golding, William, 1911-1993</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Morley, Frank, 1860-1937</part>
</persname>
<persname>
<part localtype="agent_person">Morrell, Ottoline Violet Anne Cavendish-Bentinck, Lady, 1873-1938</part>
</persname>
<persname source="local">
<part localtype="agent_person">Stead, Anne Frances Goldsborough</part>
</persname>
<famname>
<part localtype="agent_family">Stead family</part>
</famname>
<persname>
<part localtype="agent_person">Stead, William Force, 1884-1967</part>
</persname>
<persname>
<part localtype="agent_person">Yeats, W. B. (William Butler), 1865-1939</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Church of England (Clergy)</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Keats-Shelley Memorial Association</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/383150"
id="ref314"
level="series">
<did>
<unittitle>Notebooks</unittitle>
<unitid>Series III</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3.75</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">9 boxes</physdesc>
<unitdatestructured altrender="1876-1935, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876">1876</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_1d099aaa88e5017911c38149ca5949ca">
<head>Arrangement</head>
<p>
<title localtype="simple" render="italic">
<part>Notebooks</part>
</title> is arranged in three loosely defined subseries: <title localtype="simple" render="italic">
<part>Notes on Lectures and Other Topics</part>
</title>; <title localtype="simple" render="italic">
<part>Notes on Religious Subjects</part>
</title>; and <title localtype="simple" render="italic">
<part>Essays, Poems and Verses</part>
</title>. Each subseries is further arranged alphabetically by folder title.</p>
</arrangement>
<scopecontent id="aspace_2ea169854dba593c4f3f55c01a8820c3">
<head>Scope and Contents</head>
<p>The series consists of notebooks containing Stead's notes on a variety of subjects, including English literature; interpretations of the Bible; and the role of religion in modern England. <title localtype="simple" render="italic">
<part>Essays, Poems and Verses</part>
</title> holds notebooks apparently containing drafts and draft copies of works by Stead, mainly untitled verses and verse fragments.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/382886"
id="ref13"
level="subseries">
<did>
<unittitle>Literary Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/382887"
id="ref14"
level="file">
<did>
<unittitle>Abbott, Charles David, 1900-</unittitle>
<unitdatestructured altrender="1938 February-March"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938-02">1938 February</fromdate>
<todate standarddate="1938-03">1938 March</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382888"
id="ref15"
level="file">
<did>
<unittitle>Addison, Lewis Percy</unittitle>
<unitdatestructured altrender="1933 April 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1933-04-04">1933 April 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382889"
id="ref16"
level="file">
<did>
<unittitle>Ainsworth, Edward Gay, 1902-1940</unittitle>
<unitdatestructured altrender="1938 July-August"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938-07">1938 July</fromdate>
<todate standarddate="1938-08">1938 August</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382890"
id="ref17"
level="file">
<did>
<unittitle>Aldenham, Alban George Henry Gibbs, 2nd baron, 1846-1936</unittitle>
<unitdatestructured altrender="1935 May 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935-05-26">1935 May 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382891"
id="ref18"
level="file">
<did>
<unittitle>Aldenham, Lillie Caroline (Houldsworth) Gibbs, baroness, d. 1950</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382892"
id="ref19"
level="file">
<did>
<unittitle>Aldington, Richard, 1892-1962</unittitle>
<unitdatestructured altrender="1924 June" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1924-06">1924 June</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382893"
id="ref20"
level="file">
<did>
<unittitle>Alexander, Archibald, 1874-1942</unittitle>
<unitdatestructured altrender="1933 April-May"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933-04">1933 April</fromdate>
<todate standarddate="1933-05">1933 May</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382894"
id="ref21"
level="file">
<did>
<unittitle>Bangay, (Miss) Evelyn D.</unittitle>
<unitdatestructured altrender="1938 March" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938-03">1938 March</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382895"
id="ref22"
level="file">
<did>
<unittitle>Bardin, James Cook, 1887-</unittitle>
<unitdatestructured altrender="1909-1938" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1909">1909</fromdate>
<todate standarddate="1938">1938</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382896"
id="ref23"
level="file">
<did>
<unittitle>Bardsley, Cyril Charles Bowman, bp. of Peterborough, 1870-1940</unittitle>
<unitdatestructured altrender="1926 January" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1926-01">1926 January</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382897"
id="ref24"
level="file">
<did>
<unittitle>Baring-Gould, Harry</unittitle>
<unitdatestructured altrender="1912 May" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1912-05">1912 May</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382898"
id="ref25"
level="file">
<did>
<unittitle>Beddoes, Vaughan Roscoe Minton</unittitle>
<unitdatestructured altrender="1931 December" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1931-12">1931 December</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382899"
id="ref26"
level="file">
<did>
<unittitle>Bennett, Joan (Frankau), 1896-</unittitle>
<unitdatestructured altrender="1935 November" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935-11">1935 November</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382900"
id="ref27"
level="file">
<did>
<unittitle>Benson, Arthur Christopher, 1862-1925</unittitle>
<unitdatestructured altrender="1916-1917" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1916">1916</fromdate>
<todate standarddate="1917">1917</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382901"
id="ref28"
level="file">
<did>
<unittitle>Bethune-Baker, James Franklin, 1861-1951</unittitle>
<unitdatestructured altrender="1921 February" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921-02">1921 February</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382902"
id="ref29"
level="file">
<did>
<unittitle>Blunden, Edmund Charles, 1896-</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1920-1940" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/278559">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16830016"
identifier="oid:16830016"
linktitle="165 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16830023/full/!150,150/0/default.jpg"
identifier="oid:16830016"
linktitle="165 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16830016"
identifier="oid:16830016"
linktitle="165 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Blunden, Edmund Charles, 1896-</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382903"
id="ref31"
level="file">
<did>
<unittitle>Blunden, Mary</unittitle>
<unitdatestructured altrender="1927 February 18"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1927-02-18">1927 February 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382904"
id="ref32"
level="file">
<did>
<unittitle>Boissevain, Eugen</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382905"
id="ref33"
level="file">
<did>
<unittitle>Bosanquet, Theodora, 1880-1961</unittitle>
<unitdatestructured altrender="1933 February" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1933-02">1933 February</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382906"
id="ref34"
level="file">
<did>
<unittitle>Brain & Brain, solicitors</unittitle>
<unitdatestructured altrender="1930 August 13"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1930-08-13">1930 August 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382907"
id="ref35"
level="file">
<did>
<unittitle>Bridges, Robert Seymour, 1844-1930</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1911 January, 1910 November</unitdate>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382908"
id="ref36"
level="file">
<did>
<unittitle>Brittain, Robert Edward, 1908-</unittitle>
<unitdatestructured altrender="1938 October-December"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938-10">1938 October</fromdate>
<todate standarddate="1938-12">1938 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382909"
id="ref37"
level="file">
<did>
<unittitle>Brooke, Charles Frederick Tucker, 1883-1946</unittitle>
<unitdatestructured altrender="1939 December" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1939-12">1939 December</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382910"
id="ref38"
level="file">
<did>
<unittitle>Brooks, Eric St. John, 1883-1955</unittitle>
<unitdatestructured altrender="1928 June- 1937 December"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928-06">1928 June</fromdate>
<todate standarddate="1937-12">1937 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382911"
id="ref39"
level="file">
<did>
<unittitle>Bryant, Arthur, 1899-</unittitle>
<unitdatestructured altrender="1938 August" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938-08">1938 August</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382912"
id="ref40"
level="file">
<did>
<unittitle>Camps, William Anthony</unittitle>
<unitdatestructured altrender="1938-1939" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938">1938</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382913"
id="ref41"
level="file">
<did>
<unittitle>Carpenter, Harry James, bp. of Oxford, 1901-</unittitle>
<unitdate label="creation" unitdatetype="inclusive">no year August 7</unitdate>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382914"
id="ref42"
level="file">
<did>
<unittitle>Carpenter, Joseph Estlin, 1844-1927</unittitle>
<unitdatestructured altrender="1926 August" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1926-08">1926 August</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382915"
id="ref43"
level="file">
<did>
<unittitle>Carwardine Probert, William Geoffrey, 1864-1938</unittitle>
<unitdatestructured altrender="July 1937- November 1939"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-07">1937 July</fromdate>
<todate standarddate="1939-11">1939 November</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382916"
id="ref44"
level="file">
<did>
<unittitle>Castley, Roger Cuthbert</unittitle>
<unitdate label="creation" unitdatetype="inclusive">no year June 5</unitdate>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382917"
id="ref45"
level="file">
<did>
<unittitle>Champion, George James</unittitle>
<unitdate label="creation" unitdatetype="inclusive">no year September</unitdate>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382918"
id="ref46"
level="file">
<did>
<unittitle>Chapman, Robert William, 1881-1960</unittitle>
<unitdatestructured altrender="1938 February" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938-02">1938 February</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382919"
id="ref47"
level="file">
<did>
<unittitle>Church, Richard Thomas, 1893-</unittitle>
<unitdatestructured altrender="1933 January" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1933-01">1933 January</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3170775"
id="aspace_6ae22dc30d8fbeab58282f7519c3b4a3"
level="file">
<did>
<unittitle>Cobden-Sanderson, Richard</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1922">1922</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_6ae22dc30d8fbeab58282f7519c3b4a3_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/278558">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16836418"
identifier="oid:16836418"
linktitle="23 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16836419/full/!150,150/0/default.jpg"
identifier="oid:16836418"
linktitle="23 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16836418"
identifier="oid:16836418"
linktitle="23 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Cobden-Sanderson, Richard</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382920"
id="ref48"
level="file">
<did>
<unittitle>Coghill, Neville, 1899-</unittitle>
<unitdatestructured altrender="1938 May" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938-05">1938 May</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382921"
id="ref49"
level="file">
<did>
<unittitle>Coldstream, F M</unittitle>
<unitdatestructured altrender="1937 March-1941"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-03">1937 March</fromdate>
<todate standarddate="1941-12">1941 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382922"
id="ref50"
level="file">
<did>
<unittitle>Coppard, Alfred Edgar, 1878-1957</unittitle>
<unitdatestructured altrender="1930 October" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1930-10">1930 October</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382923"
id="ref51"
level="file">
<did>
<unittitle>Crewe, Robert Offley Ashburton Crew-Milnes, 1st marquis of, 1858-1945</unittitle>
<unitdatestructured altrender="1939 April-August"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939-04">1939 April</fromdate>
<todate standarddate="1939-08">1939 August</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38061 /locations/4051"
containerid="39002091592247"
id="aspace_ref51_c1"