-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path669.xml
1848 lines (1848 loc) · 99.7 KB
/
669.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.southey">beinecke.southey</recordid>
<otherrecordid localtype="BIB">4122923</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Robert Southey Collection
</titleproper>
<titleproper localtype="filing">Southey (Robert) Collection</titleproper>
<author>by Beinecke Staff</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>July 1997</date>
<num>GEN MSS 298</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">4122923</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 1</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="2">2</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="58">58</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-08T23:29:28-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:29</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/669" level="collection">
<did>
<unittitle>Robert Southey collection</unittitle>
<unitid>GEN MSS 298</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>1.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1797-1837" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1797">1797</fromdate>
<todate standarddate="1837">1837</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_4c90e51777b1830523a14697f8fdc6d8">The collection consists of letters and writings by Southey. Included are letters to James Ballantyne, Samuel Taylor Coleridge, John May, James Montgomery, and Sir Thomas Noon Talfourd. Writings include manuscripts of Amadis de Gaula; The Curse of Kehama; Roderick, the Last of the Goths; and of Robin Hood, written with his wife, Caroline Southey.</abstract>
<physdesc id="aspace_d4fb242c99e9120a292fda749e14cc2a">Other Storage Formats: 6 volumes</physdesc>
<origination label="Creator">
<persname>
<part localtype="agent_person">Southey, Robert, 1774-1843</part>
</persname>
</origination>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Southey, Caroline Bowles, 1786-1854</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_8b2cfba1847ca9a7c4d5861d058bd16f">
<head>Immediate Source of Acquisition</head>
<p>Ongoing collection of documents acquired by gift and purchase from various sources. Type of accession (gift or purchase) and date of acquisition is noted in the box-and-folder list. For further information, consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_2ccacb27e8051a269a2098d08eb2cd74">
<head>Conditions Governing Use</head>
<p>The Robert Southey Collection is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_2273faad41a6e70751e300a4a579a01f">
<head>Preferred Citation</head>
<p>Robert Southey Collection, General Collection. Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_cdad28734699d3f181a3da9e6206b5ce">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_e3e9ae3b4432bf3f9f4d5061a440bbad">
<head>Processing Information</head>
<p>This finding aid was produced from previously existing cards in the Manuscripts Catalog, or from another inventory. All pertinent bibliographical information has been retained. If the collection also contains unlisted or unsorted material, it has been noted in the box-and-folder list.</p>
<p>This finding aid will be updated periodically to account for new materials that may be added to the collection. The date of the most recent update is noted on the title page. For information on material that may have been added since the last update, please consult the Public Service Desk.</p>
</processinfo>
<scopecontent id="aspace_6cda43e9139cf55a49ca50018839a0f3">
<head>Scope and Contents</head>
<p>This finding aid encompasses accessions of single manuscripts and small groups of manuscripts and other papers, by or pertaining to Robert Southey, which the library has chosen to group and list as an artificial collection. Materials incorporated into the collection prior to July 1997 have been organized into two series, <ref actuate="onrequest" show="replace" target="ref11">Correspondence</ref> and <ref actuate="onrequest" show="replace" target="ref123">Writings</ref>. Materials added to the collection since that time are located in Series III, Additions since July 1997, listed in the order in which they were added.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043937"
source="lcsh">
<part localtype="topical">English poetry</part>
<part localtype="temporal">19th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008111002"
source="lcsh">
<part localtype="topical">Romanticism</part>
<part localtype="geographic">England</part>
</subject>
<persname>
<part localtype="agent_person">Ballantyne, James, 1772-1833</part>
</persname>
<persname>
<part localtype="agent_person">Coleridge, Samuel Taylor, 1772-1834</part>
</persname>
<persname source="local">
<part localtype="agent_person">May, John, 1775-1856</part>
</persname>
<persname>
<part localtype="agent_person">Montgomery, James, 1771-1854</part>
</persname>
<persname>
<part localtype="agent_person">Southey, Robert, 1774-1843</part>
</persname>
<persname>
<part localtype="agent_person">Talfourd, Thomas Noon, 1795-1854</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/217297"
id="ref11"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<unitdate label="creation" unitdatetype="inclusive">[1809-10]</unitdate>
</did>
<c altrender="/repositories/11/archival_objects/217298"
id="ref12"
level="file">
<did>
<unittitle>ALS to James Ballantyne, [Keswick]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[1809-10]</unitdate>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">1</container>
</did>
<scopecontent id="aspace_f982c854d8dc1ac1478c3178704c2ae9">
<head>Scope and Contents</head>
<p>Concerning Southey's work on the Edinburgh Annual Review</p>
</scopecontent>
<scopecontent id="aspace_c0d8c3076cd20c06c1511d3754f4b5ab">
<head>Scope and Contents</head>
<p>Purchase, 1956</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217299"
id="ref15"
level="file">
<did>
<unittitle>2 ALS to Thomas Foster Barham, Keswick</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1816 Nov; 1817 Aug</unitdate>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">2</container>
</did>
<scopecontent id="aspace_f326c4d3f82f1ed95bbd8b96e3f3f929">
<head>Scope and Contents</head>
<p>Purchase, 1957</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217300"
id="ref17"
level="file">
<did>
<unittitle>ALS to Alfred Beesley, Keswick</unittitle>
<unitdatestructured altrender="1824 Mar 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1824-03-30">1824 Mar 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
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>
<scopecontent id="aspace_30ec8b107f791654085e137bc44c4325">
<head>Scope and Contents</head>
<p>Gift, 1945</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217301"
id="ref19"
level="file">
<did>
<unittitle>ALS to Mary Matilda Betham, Keswick</unittitle>
<unitdatestructured altrender="1808 Sep 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1808-09-19">1808 Sep 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">4</container>
</did>
<scopecontent id="aspace_948886c778f9cff2d279bc10b21a78c5">
<head>Scope and Contents</head>
<p>Purchase, 1988</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217302"
id="ref21"
level="file">
<did>
<unittitle>ALS to Joseph Bounden, Keswick</unittitle>
<unitdatestructured altrender="1824 Aug 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1824-08-22">1824 Aug 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">5</container>
</did>
<scopecontent id="aspace_ec6b35ec459878d0217ab87ea513a086">
<head>Scope and Contents</head>
<p>Accompanied by engraved portrait of Southey</p>
</scopecontent>
<scopecontent id="aspace_5415193a8ff183c406ba34a0fbe70ba4">
<head>Scope and Contents</head>
<p>Purchase, 1956</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217303"
id="ref24"
level="file">
<did>
<unittitle>ALS to Sir Egerton Brydges, Keswick</unittitle>
<unitdatestructured altrender="1830 Jun 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-06-16">1830 Jun 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">6</container>
</did>
<scopecontent id="aspace_410e32a132d48af0a6f3da293e165a54">
<head>Scope and Contents</head>
<p>Purchase, 1957</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217304"
id="ref26"
level="file">
<did>
<unittitle>ALS to S.T. Coleridge</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">7</container>
</did>
<scopecontent id="aspace_89a864acc29f9e367ceecf421330b35d">
<head>Scope and Contents</head>
<p>Purchase, 1970</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217305"
id="ref28"
level="file">
<did>
<unittitle>ALS to Joseph Cottle, Bristol</unittitle>
<unitdatestructured altrender="1799 Oct 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1799-10-12">1799 Oct 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">8</container>
</did>
<scopecontent id="aspace_43a0fda6a3bcf53456884bb89e6a8bc3">
<head>Scope and Contents</head>
<p>Purchase, 1970</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217306"
id="ref30"
level="file">
<did>
<unittitle>ALS to [Joseph] Cottle, Kingsdown</unittitle>
<unitdatestructured altrender="1802 Jun 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1802-06-24">1802 Jun 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">9</container>
</did>
<scopecontent id="aspace_a516f48c9abb2faf604f46644e6551f9">
<head>Scope and Contents</head>
<p>Gift, 1950</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217307"
id="ref32"
level="file">
<did>
<unittitle>ALS to Mr. Evans, Keswick</unittitle>
<unitdatestructured altrender="1814 Aug 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-08-19">1814 Aug 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">10</container>
</did>
<scopecontent id="aspace_3c7caae7c48846076d033be78c81eeea">
<head>Scope and Contents</head>
<p>Purchase, 1957</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217308"
id="ref34"
level="file">
<did>
<unittitle>ALS to William Gifford</unittitle>
<unitdatestructured altrender="1816 Feb 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1816-02-20">1816 Feb 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">11</container>
</did>
<scopecontent id="aspace_9bb695eef45cc4292347ecd13b05bf7c">
<head>Scope and Contents</head>
<p>Gift, 1949</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217309"
id="ref36"
level="file">
<did>
<unittitle>ALS to John Abraham Heraud, Keswick</unittitle>
<unitdatestructured altrender="1828 Dec 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1828-12-01">1828 Dec 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">12</container>
</did>
<scopecontent id="aspace_c5c84a07bbb052140645afd3c1a51816">
<head>Scope and Contents</head>
<p>Purchase, 1957</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217310"
id="ref38"
level="file">
<did>
<unittitle>ALS to John Kenyon, Keswick</unittitle>
<unitdatestructured altrender="1826 Jul 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-07-12">1826 Jul 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">13</container>
</did>
<scopecontent id="aspace_0756a6a82b563f74da3d4fe3df06f0ee">
<head>Scope and Contents</head>
<p>Gift, 1945</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217311"
id="ref40"
level="file">
<did>
<unittitle>8 ALS to John May</unittitle>
<unitdatestructured altrender="1799-1832" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1799">1799</fromdate>
<todate standarddate="1832">1832</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">14</container>
</did>
<scopecontent id="aspace_772ff0138a72a4477c8828216a9ba0f7">
<head>Scope and Contents</head>
<p>Purchase, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217312"
id="ref42"
level="file">
<did>
<unittitle>ALS to John May, Minehead</unittitle>
<unitdatestructured altrender="1799 Jul 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1799-07-29">1799 Jul 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">15</container>
</did>
<scopecontent id="aspace_06a76cac710cda1c51bbb8445de144ed">
<head>Scope and Contents</head>
<p>Purchase, 1956</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217313"
id="ref44"
level="file">
<did>
<unittitle>ALS to [John May]</unittitle>
<unitdatestructured altrender="1803 Aug 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1803-08-19">1803 Aug 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">16</container>
</did>
<scopecontent id="aspace_4341418f2f762170087926d59b23d779">
<head>Scope and Contents</head>
<p>Accompanied by typescript</p>
</scopecontent>
<scopecontent id="aspace_f815807fb008efe00f919bab31476146">
<head>Scope and Contents</head>
<p>Purchase, 1956</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217314"
id="ref47"
level="file">
<did>
<unittitle>ALS to John May, [Keswick]</unittitle>
<unitdatestructured altrender="1807 Dec 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1807-12-16">1807 Dec 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">17</container>
</did>
<scopecontent id="aspace_7cbc3f941bc2d56372c5788cc9e32e53">
<head>Scope and Contents</head>
<p>Gift, 1945</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217315"
id="ref49"
level="file">
<did>
<unittitle>ALS to [John May], Keswick</unittitle>
<unitdatestructured altrender="1830 Apr 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-04-29">1830 Apr 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/217316"
id="ref50"
level="file">
<did>
<unittitle>ALS to James Montgomery, Keswick</unittitle>
<unitdatestructured altrender="1812 Oct 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1812-10-07">1812 Oct 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">19</container>
</did>
<scopecontent id="aspace_406d437e81d292573541e45654502a68">
<head>Scope and Contents</head>
<p>Enclosed is a copy of Book II of his narrative poem <title localtype="simple" render="italic">
<part>Roderick, the Last of the Goths</part>
</title>
</p>
</scopecontent>
<scopecontent id="aspace_96719759f4afec7ad998b8a52acdc4fc">
<head>Scope and Contents</head>
<p>Gift, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217317"
id="ref53"
level="file">
<did>
<unittitle>ALS to James Montgomery</unittitle>
<unitdatestructured altrender="[1817?] Nov 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1817-11-07">[1817?] Nov 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">20</container>
</did>
<scopecontent id="aspace_a154dceb86674952c3a079205da7b981">
<head>Scope and Contents</head>
<p>Gift, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217318"
id="ref55"
level="file">
<did>
<unittitle>7 ALS to James Montgomery, Keswick</unittitle>
<unitdatestructured altrender="1811-30" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1811">1811</fromdate>
<todate standarddate="1830">1830</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">21</container>
</did>
<scopecontent id="aspace_add8396adb6eb3c6cbcf0834856c87cc">
<head>Scope and Contents</head>
<p>Gift, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217319"
id="ref57"
level="file">
<did>
<unittitle>AL (with signature clipped off) to Mrs. [Mary Brent] Morgan, Keswick</unittitle>
<unitdatestructured altrender="1826 Nov 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-11-30">1826 Nov 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">22</container>
</did>
<scopecontent id="aspace_94b93e34d3f5bb76b8700361dfba7a57">
<head>Scope and Contents</head>
<p>Purchase, 1957</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217320"
id="ref59"
level="file">
<did>
<unittitle>ALS to [John Murray]- concerning Washington Irving and a proposed life Jeremy Taylor, Keswick</unittitle>
<unitdatestructured altrender="1822 Jun 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1822-06-29">1822 Jun 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">23</container>
</did>
<scopecontent id="aspace_5e0e8472f7485fc6e6e2831bfb0eb21c">
<head>Scope and Contents</head>
<p>Signature cut out, and the name of Robert Southey has been inserted in another hand; at the top of the first leaf in the autograph of Washington Irving, is the note, "From Robert Southey to John Murray"</p>
</scopecontent>
<scopecontent id="aspace_a48795228bf12137970c49347f9bc880">
<head>Scope and Contents</head>
<p>Gift, 1925</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217321"
id="ref62"
level="file">
<did>
<unittitle>ALS to Richard Parkinson, Keswick</unittitle>
<unitdatestructured altrender="1833 Jul 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1833-07-10">1833 Jul 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">24</container>
</did>
<scopecontent id="aspace_1b3fc9dbb91fb1382a144a4747764aa8">
<head>Scope and Contents</head>
<p>Purchase, 1956</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217322"
id="ref64"
level="file">
<did>
<unittitle>2 ALS to Colonel Peachy, Keswick</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1810 Feb; 1810 Oct 22</unitdate>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">25</container>
</did>
<scopecontent id="aspace_770c4d2f10ba9b5c22c11ce55726e11b">
<head>Scope and Contents</head>
<p>Embodying an epitaph in memory of "Emma. . .", i.e. Emma (Chartres) Peachy</p>
</scopecontent>
<scopecontent id="aspace_5d2edc331f1de0ce1d2fd78338991be2">
<head>Scope and Contents</head>
<p>Purchase, 1939</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217323"
id="ref67"
level="file">
<did>
<unittitle>Fragment of a note to Edward Quillinan, Keswick</unittitle>
<unitdatestructured altrender="1830 Jun 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-06-06">1830 Jun 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref67_c2" localtype="folder" parent="aspace_ref67_c1">26</container>
</did>
<scopecontent id="aspace_5a52780a88b36bc1172fc0fd8f306430">
<head>Scope and Contents</head>
<p>Gift, 1961</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217324"
id="ref69"
level="file">
<did>
<unittitle>2 ALS to E.S. Rickman, Norwich, England</unittitle>
<unitdatestructured altrender="[1831] Jan 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831-01-27">[1831] Jan 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">27</container>
</did>
<scopecontent id="aspace_66887c76aa47fc5c477c1d94ca987a0b">
<head>Scope and Contents</head>
<p>Accompanied with typescript dated 1835 May 15</p>
</scopecontent>
<scopecontent id="aspace_527209a3ce325ce0e0ec502c66c8044a">
<head>Scope and Contents</head>
<p>Purchase, 1939</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217325"
id="ref72"
level="file">
<did>
<unittitle>ALS to Mr. Rumney, Newlands</unittitle>
<unitdatestructured altrender="1819 Dec 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1819-12-11">1819 Dec 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">28</container>
</did>
<scopecontent id="aspace_c8d7e33a610c0775f7a7ccbf48c44e08">
<head>Scope and Contents</head>
<p>Gift</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217326"
id="ref74"
level="file">
<did>
<unittitle>AL, signed with initials, to John Rumney, Keswick</unittitle>
<unitdatestructured altrender="1824 Feb 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1824-02-27">1824 Feb 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref74_c2" localtype="folder" parent="aspace_ref74_c1">29</container>
</did>
<scopecontent id="aspace_08e6200a98144896b00dab1bb11ddd74">
<head>Scope and Contents</head>
<p>Written on subscription advertisement for his, <title localtype="simple" render="italic">
<part>A Chronological History of the West Indies,</part>
</title> London, 1827</p>
</scopecontent>
<scopecontent id="aspace_4a89ddbd1fc8eb78d033f02241a45ccf">
<head>Scope and Contents</head>
<p>Purchase, 1956</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217327"
id="ref77"
level="file">
<did>
<unittitle>ALS to John Sheppard, Keswick</unittitle>
<unitdatestructured altrender="1835 Nov 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1835-11-16">1835 Nov 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref77_c2" localtype="folder" parent="aspace_ref77_c1">30</container>
</did>
<scopecontent id="aspace_a05cc31b99f8d39282f96a903d24f560">
<head>Scope and Contents</head>
<p>Purchase, 1957</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217328"
id="ref79"
level="file">
<did>
<unittitle>2 ALS to [Sir Thomas Noon Talfourd?], Keswick</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1834 Dec; 1835 Oct</unitdate>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref79_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref79_c2" localtype="folder" parent="aspace_ref79_c1">31</container>
</did>
<scopecontent id="aspace_6da0b8b0764e557120fdb89d27235867">
<head>Scope and Contents</head>
<p>Gift, 1949</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217329"
id="ref81"
level="file">
<did>
<unittitle>ALS to W.B. Thomas</unittitle>
<unitdatestructured altrender="1797 Nov 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1797-11-11">1797 Nov 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref81_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref81_c2" localtype="folder" parent="aspace_ref81_c1">32</container>
</did>
<scopecontent id="aspace_5e7aecb87be643fa5e4aafcbdc014f0d">
<head>Scope and Contents</head>
<p>Accompanied by a small piece of paper containing a note in Southey's hand on the words "Porrage or porridge, and pottage"</p>
</scopecontent>
<scopecontent id="aspace_106931a36f6a478e70b26871f7daedd9">
<head>Scope and Contents</head>
<p>Purchase, 1949</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217330"
id="ref84"
level="file">
<did>
<unittitle>ALS to [Charles Benjamin Tayler], Keswick</unittitle>
<unitdatestructured altrender="1833 Jul 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1833-07-08">1833 Jul 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref84_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref84_c2" localtype="folder" parent="aspace_ref84_c1">33</container>
</did>
<scopecontent id="aspace_ce1b2bf34a86194925ee550d9523858a">
<head>Scope and Contents</head>
<p>Gift, 1949</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217331"
id="ref86"
level="file">
<did>
<unittitle>ALS to H.T. [Henry Taylor?] in which is mentioned slavery and the growth of democracy in America, Keswick</unittitle>
<unitdatestructured altrender="1820 Aug 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1820-08-24">1820 Aug 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref86_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref86_c2" localtype="folder" parent="aspace_ref86_c1">34</container>
</did>
<scopecontent id="aspace_f82339d9ae63927576bcef69219e04d9">
<head>Scope and Contents</head>
<p>Signed "R.S."</p>
</scopecontent>
<scopecontent id="aspace_42148304b8c84f71ce6b95738ee39b70">
<head>Scope and Contents</head>
<p>Gift, 1941</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217332"
id="ref89"
level="file">
<did>
<unittitle>ALS to Richard Taylor, Keswick</unittitle>
<unitdatestructured altrender="1829 Nov 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1829-11-10">1829 Nov 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref89_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref89_c2" localtype="folder" parent="aspace_ref89_c1">35</container>
</did>
<scopecontent id="aspace_dfb6158b3dc8014566b28125d5271417">
<head>Scope and Contents</head>
<p>Gift, 1956</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217333"
id="ref91"
level="file">
<did>
<unittitle>AL to Edith (Southey) Warter, Streatham</unittitle>
<unitdatestructured altrender="1813 Sep 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1813-09-20">1813 Sep 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref91_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref91_c2" localtype="folder" parent="aspace_ref91_c1">36</container>
</did>
<scopecontent id="aspace_11a806b79ed528cd63bba7d88f62b9ee">
<head>Scope and Contents</head>
<p>Purchase, 1954</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217334"
id="ref93"
level="file">
<did>
<unittitle>ALS to S. Wilkins, Keswick</unittitle>
<unitdatestructured altrender="1831 Jun 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831-06-29">1831 Jun 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref93_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref93_c2" localtype="folder" parent="aspace_ref93_c1">37</container>
</did>
<scopecontent id="aspace_3e2234b339c2dc693d174f72daf83ccc">
<head>Scope and Contents</head>
<p>Accompanied with typescript</p>
</scopecontent>
<scopecontent id="aspace_92089182d1a71995ed3122274e0078a1">
<head>Scope and Contents</head>
<p>Purchase, 1939</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217335"
id="ref96"
level="file">
<did>
<unittitle>ALS to Charles Watkin Williams Wynn, Keswick</unittitle>
<unitdatestructured altrender="1837 Dec 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1837-12-09">1837 Dec 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref96_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref96_c2" localtype="folder" parent="aspace_ref96_c1">38</container>
</did>
<scopecontent id="aspace_e3dae193c22b2952cddc07f0ea759ea4">
<head>Scope and Contents</head>
<p>Accompanied by typescript</p>
</scopecontent>
<scopecontent id="aspace_fc6d4365090e4490bfbeb7584c096163">
<head>Scope and Contents</head>
<p>Gift, 1949</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/217336"
id="ref99"
level="file">
<did>
<unittitle>ALS to Henry B., West Tarring</unittitle>
<unitdatestructured altrender="1835 Mar 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1835-03-10">1835 Mar 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19495"
containerid="39002099287667"
id="aspace_ref99_c1"