-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path638.xml
1195 lines (1195 loc) · 67.7 KB
/
638.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.wlandor">beinecke.wlandor</recordid>
<otherrecordid localtype="BIB">4110459</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Walter Savage Landor Collection
</titleproper>
<titleproper localtype="filing">Landor (Walter Savage) 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>June 1997</date>
<num>GEN MSS 255</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">4110459</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-6</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 7, bsd, folder 45</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="1">1</num> published digital object. And that object are comprised of <num localtype="files" altrender="3">3</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:28:02-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:28</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/638" level="collection">
<did>
<unittitle>Walter Savage Landor collection</unittitle>
<unitid>GEN MSS 255</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>2.4</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">7 boxes + 1 broadside folder</physdesc>
<unitdatestructured altrender="1775-1864" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1775">1775</fromdate>
<todate standarddate="1864">1864</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_3c09fc5e605a05770e03a131d54d0e13">Correspondence, writings, printed material, and artwork by or relating to Walter Savage Landor. Correspondence includes 12 ALS to William Allingham, an open letter to Ralph Waldo Emerson, and 2 ALS to Frances Milton Trollope. The writings include three sets of proof-sheets for Dry Sticks, a printed copy of Gebir, Count Julian, and other poems, with copious ms. corrections, excisions, etc. Accompanying material includes three pencil portraits of Landor by William Wetmore Story.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Landor, Walter Savage, 1775-1864</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_362e862adb1023800caf4b8f3bb90422">
<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_3638f2d0bb22966546bd628dffb80984">
<head>Conditions Governing Use</head>
<p>The Walter Savage Landor 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_bbbc3752d2ae6c4b9c0a23f76394e893">
<head>Preferred Citation</head>
<p>Walter Savage Landor Collection. General Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_971211ee46e707cd2419879d251ee0c4">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>
<title localtype="simple" render="italic">
<part>Restricted Fragile Papers</part>
</title> in the broadside folder may only be consulted with permission of the appropriate curator. Preservation photocopies for reference use have been substituted in the main files.</p>
</accessrestrict>
<processinfo id="aspace_a11b8ff6b3879d61b74bdf017b723d95">
<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. 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_df5e0d8c0ad6d8c04dbbc65b0d73e4cf">
<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 Walter Savage Landor, which the library has chosen to group and list as an artificial collection. Materials given by George Arents are organized into the first series. Materials given by Ray L. Murphy are organized into the second series. Additional materials comprise the third series.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009861"
source="lcsh">
<part localtype="topical">Authors, English</part>
<part localtype="genre_form">Archives</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300033973" source="aat">
<part localtype="genre_form">Drawings (visual works)</part>
</genreform>
<title source="local">
<part localtype="uniform_title">Dry sticks</part>
</title>
<title source="local">
<part localtype="uniform_title">Gebir, Count Julian, and other poems</part>
</title>
<persname>
<part localtype="agent_person">Allingham, William, 1824-1889</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Emerson, Ralph Waldo, 1803-1882</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Landor, Walter Savage, 1775-1864</part>
</persname>
<persname>
<part localtype="agent_person">Story, William Wetmore, 1819-1895</part>
</persname>
<persname>
<part localtype="agent_person">Trollope, Frances Milton, 1780-1863</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/214403"
id="ref11"
level="series">
<did>
<unittitle>Gift of George Arents</unittitle>
<unitid>Series I</unitid>
</did>
<scopecontent id="aspace_bbab22b691cd00e343b0ba86ff7af631">
<head>Scope and Contents</head>
<p>Gift of George Arents, 1952</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/214404"
id="ref12"
level="subseries">
<did>
<unittitle>Letters from Walter Savage Landor</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/214405"
id="ref13"
level="file">
<did>
<unittitle>Copy (in an unidentified hand) of a letter from Landor to W. J. Birch, no place</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214406"
id="ref14"
level="file">
<did>
<unittitle>AL to Mr. Colburn, Florence</unittitle>
<unitdatestructured altrender="1825 Oct 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-10-18">1825 Oct 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">2</container>
</did>
<scopecontent id="aspace_f1d4e2026ac12ea778305130cb21b4b1">
<head>Scope and Contents</head>
<p>Contained on the same leaf is an ALS to [Julius] Hare</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214407"
id="ref16"
level="file">
<did>
<unittitle>ALS to [Julius] Hare</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<relatedmaterial id="aspace_68d29a86dff23ad20157a5b31ae03bf5">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref14">See: Box 1, folder 2</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/214408"
id="ref18"
level="file">
<did>
<unittitle>ANS to Newby</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<relatedmaterial id="aspace_9ff9582b47d8201c55f043a91b972513">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref25">See: Box 1, folder 4</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/214409"
id="ref20"
level="file">
<did>
<unittitle>ALS to an unidentified recipient</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">3</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/214410"
id="ref21"
level="subseries">
<did>
<unittitle>Writings by Walter Savage Landor</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/214411"
id="ref22"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Imaginary Conversation of King Carlo- Alberto and the Duchess Belgioioso on the Affairs and Prospects of Italy,</part>
</title> autograph manuscript of pages [3]-9 of the printed text</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<scopecontent id="aspace_dec08b8c734ea5c90cab15e3e820ec95">
<head>Scope and Contents</head>
<p>Accompanied by ANS to his publisher, Newby, asking that copies of his last volume be sent to Mr. Forster and Mr. Browning</p>
</scopecontent>
<relatedmaterial id="aspace_846592d52b7187f34e971819ec7e47f0">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref109">See: Oversize, box 7, folder 44</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/214412"
id="ref25"
level="file">
<did>
<unittitle>AN concerning the story of "The Rose and Nightingale"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214413"
id="ref26"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Original Dedication to the First Edition of Landor's Writings,</part>
</title> printed copy</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">5</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/214414"
id="ref28"
level="series">
<did>
<unittitle>Bequest of Ray L. Murphy</unittitle>
<unitid>Series II</unitid>
</did>
<scopecontent id="aspace_0d2ee1ba6968c1d6c293ba5a6ea957fb">
<head>Scope and Contents</head>
<p>Bequest of Ray L. Murphy, 1954</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/214415"
id="ref29"
level="subseries">
<did>
<unittitle>Letters by Walter Savage Landor</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/214416"
id="ref30"
level="file">
<did>
<unittitle>12 ALS to William Allingham, Bath</unittitle>
<unitdatestructured altrender="1850-54" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1854">1854</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">6</container>
</did>
<scopecontent id="aspace_7181c76b1b8b321500375668f3233ffd">
<head>Scope and Contents</head>
<p>According to a note by Allingham, the first part of the letter of 27 Apr 1853 was destroyed at Landor's request; the letter of 28 July 1853 contains a draft of a letter from Landor to Monckton Milnes</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214417"
id="ref32"
level="file">
<did>
<unittitle>ALS to Mr. Colburn, Florence</unittitle>
<unitdatestructured altrender="1825 Nov 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-11-24">1825 Nov 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214418"
id="ref33"
level="file">
<did>
<unittitle>AL to [Ralph Waldo Emerson], Florence</unittitle>
<unitdatestructured altrender="[1856 Aug 27]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856-08-27">[1856 Aug 27]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">8</container>
</did>
<scopecontent id="aspace_55c06b3b043389a4acafd68cae3d38c3">
<head>Scope and Contents</head>
<p>This open letter was printed in pamphlet form shortly after it was written</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214419"
id="ref35"
level="file">
<did>
<unittitle>2 ALS to G. J. Holyoake, Florence</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214420"
id="ref36"
level="file">
<did>
<unittitle>Draft of a letter to Monckton Milnes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<relatedmaterial id="aspace_333b42416c306006817249e8c1957dbd">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref32">See: Box 1, folder 7</ref>
</p>
</relatedmaterial>
</c>
</c>
<c altrender="/repositories/11/archival_objects/214421"
id="ref38"
level="subseries">
<did>
<unittitle>Writings by Walter Savage Landor</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/214422"
id="ref39"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Dry Sticks.</part>
</title> Three sets of proof-sheets, and five additional signatures</unittitle>
<unitdatestructured altrender="1858" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1858">1858</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">10-13</container>
</did>
<scopecontent id="aspace_da52451d2faecea0f59414da796d55f7">
<head>Scope and Contents</head>
<p>With copious ms. corrections, many in Landor's hand</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214423"
id="ref41"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>On the Fast Appointed for K. Charles's Martyrdom,</part>
</title> autograph ms., signed</unittitle>
<unitdatestructured altrender="1854 Jan 15" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1854-01-15">1854 Jan 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214424"
id="ref42"
level="file">
<did>
<unittitle>"Life of Walter Savage Landor," ms. biography written in an unidentified hand</unittitle>
<unitdatestructured altrender="1888 Apr" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1888-04">1888 Apr</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19338 /locations/9"
containerid="39002099281140"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">15</container>
<daoset altrender="/repositories/11/digital_objects/131452">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2041240"
identifier="oid:2041240"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1168713/full/!150,150/0/default.jpg"
identifier="oid:2041240"
linktitle="p. 1"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2041240"
identifier="oid:2041240"
linktitle="p. 1"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"Life of Walter Savage Landor," ms. biography written in an unidentified hand</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_2b19025a16011efb103ce96b672acf3b">
<head>Scope and Contents</head>
<p>Bound volume</p>
</scopecontent>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/214425"
id="ref45"
level="series">
<did>
<unittitle>Additional Materials</unittitle>
<unitid>Series III</unitid>
</did>
<scopecontent id="aspace_cbeb2eadb249abb3dd886314bb4e17e9">
<head>Scope and Contents</head>
<p>Other materials received from various sources</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/214427"
id="ref47"
level="subseries">
<did>
<unittitle>Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/214428"
id="ref48"
level="file">
<did>
<unittitle>ALS to Marguerite Blessington, Countess of</unittitle>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">16</container>
</did>
<scopecontent id="aspace_f59aad89eae3727e61462acb6c2359f5">
<head>Scope and Contents</head>
<p>Purchase, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214429"
id="ref50"
level="file">
<did>
<unittitle>ALS to Mrs. Borough</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Dec 26</unitdate>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">17</container>
</did>
<scopecontent id="aspace_f5583888748d3d065f0a6c68fcf1b3da">
<head>Scope and Contents</head>
<p>Gift, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214430"
id="ref52"
level="file">
<did>
<unittitle>ALS (fragment) to "Elizabeth"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">18</container>
</did>
<scopecontent id="aspace_745578a1f3805ca23190f6aa08a26781">
<head>Scope and Contents</head>
<p>Gift, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214431"
id="ref54"
level="file">
<did>
<unittitle>3 ALS to J. Garrow</unittitle>
<unitdatestructured altrender="[1838]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1838">[1838]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">19</container>
</did>
<scopecontent id="aspace_980e179aa08e3051d542a642e68dbca6">
<head>Scope and Contents</head>
<p>Purchase, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214432"
id="ref56"
level="file">
<did>
<unittitle>2 ALS to Miss Garrow</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[1840, 1846]</unitdate>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">20</container>
</did>
<scopecontent id="aspace_7ff235aec826675f082f1cc0a7d2035c">
<head>Scope and Contents</head>
<p>Purchase, 1960</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214433"
id="ref58"
level="file">
<did>
<unittitle>ALS to [James Jackson Jarves], [Florence]</unittitle>
<unitdatestructured altrender="[1859? Nov 14]"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1859-11-14">[1859? Nov 14]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">21</container>
</did>
<scopecontent id="aspace_bcf2df810ea03082a4f7fe9ebf344fa4">
<head>Scope and Contents</head>
<p>Purchase, 1946</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214434"
id="ref60"
level="file">
<did>
<unittitle>ALS to Rosina Bulwer Lytton, Baroness</unittitle>
<unitdatestructured altrender="[1838?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1838">[1838?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">22</container>
</did>
<scopecontent id="aspace_633a5c7c4bcd41f23d713d4289f4da5b">
<head>Scope and Contents</head>
<p>Purchase, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214435"
id="ref62"
level="file">
<did>
<unittitle>ALS to Henry Stephens, Bath</unittitle>
<unitdatestructured altrender="[1850] Feb 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1850-02-05">[1850] Feb 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">23</container>
</did>
<scopecontent id="aspace_255d7b730c75d8ba532361724976d5e7">
<head>Scope and Contents</head>
<p>Mounted on sheet of paper are the letter, the envelope, the autograph ms. of and a printed copy of his <title localtype="simple" render="italic">
<part>Proper Lesson for Charles's Martyrdom</part>
</title>
</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214436"
id="ref64"
level="file">
<did>
<unittitle>ALS to Mrs. Story</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">24</container>
</did>
<scopecontent id="aspace_278c485b483326d4e4e70a943b4fc748">
<head>Scope and Contents</head>
<p>Gift, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214437"
id="ref66"
level="file">
<did>
<unittitle>Copy of ALS to Henry Taylor, Bath</unittitle>
<unitdatestructured altrender="[1843?] May 13"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1843-05-13">[1843?] May 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">25</container>
</did>
<scopecontent id="aspace_88b502e4652630f1a4c5bbad65488535">
<head>Scope and Contents</head>
<p>The letter is concerned with a monument to the memory of Robert Southey</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214438"
id="ref68"
level="file">
<did>
<unittitle>ALS to Messrs. Taylor & Co., Florence</unittitle>
<unitdatestructured altrender="1823 May 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1823-05-29">1823 May 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">26</container>
</did>
<scopecontent id="aspace_26ecd1ff103c630753219edbd9246629">
<head>Scope and Contents</head>
<p>Purchase, 1954</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214439"
id="ref70"
level="file">
<did>
<unittitle>2 ALS to [Frances Milton] Trollope</unittitle>
<unitdatestructured altrender="[1849], n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1849">[1849], n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">27</container>
</did>
<scopecontent id="aspace_fb405afa9ebcba501b21e25af57406f9">
<head>Scope and Contents</head>
<p>Purchase, 1960</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214440"
id="ref72"
level="file">
<did>
<unittitle>ALS to [John Warter], Bath</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Nov 11</unitdate>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">28</container>
</did>
<scopecontent id="aspace_0a6a97f756269f079b509f4af56abbaa">
<head>Scope and Contents</head>
<p>Purchase, 1983</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214441"
id="ref74"
level="file">
<did>
<unittitle>2 ALS to unidentified recipients</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref74_c2" localtype="folder" parent="aspace_ref74_c1">29</container>
</did>
<scopecontent id="aspace_bddb25b5aeab24c7eaeaa90c60841c1f">
<head>Scope and Contents</head>
<p>Gift, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214442"
id="ref76"
level="file">
<did>
<unittitle>6 ALS to unidentified recipients</unittitle>
<unitdatestructured altrender="[1849], n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1849">[1849], n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">30</container>
</did>
<scopecontent id="aspace_882fbe5a7d17b4a31d14e78df0b202f9">
<head>Scope and Contents</head>
<p>Purchase, 1960</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214443"
id="ref78"
level="file">
<did>
<unittitle>ALS to unidentified recipient</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">31</container>
</did>
<scopecontent id="aspace_2d9642b34afb64186f355c9d61b3b286">
<head>Scope and Contents</head>
<p>Miss Mitford encouraged the unidentified recipient to send his verses to Landor for criticism Purchase, 1953</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/214444"
id="ref80"
level="subseries">
<did>
<unittitle>Writings by Walter Savage Landor</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/214445"
id="ref81"
level="file">
<did>
<unittitle>"Ad Garibaldum," AMs poem, signed</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref81_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref81_c2" localtype="folder" parent="aspace_ref81_c1">32</container>
</did>
<scopecontent id="aspace_5326271886157c1adc6a21537a496d17">
<head>Scope and Contents</head>
<p>Purchase, 1962</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214446"
id="ref83"
level="file">
<did>
<unittitle>"Babbo e Figliola," autograph ms. verse dialogue, written in Italian</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref83_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref83_c2" localtype="folder" parent="aspace_ref83_c1">33</container>
</did>
<scopecontent id="aspace_94fc4637be03cef50d16fac0f93d465c">
<head>Scope and Contents</head>
<p>Purchase, 1952</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214447"
id="ref85"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Gebir, Count Julian, and other poems</part>
</title>, with copious ms. corrections, excisions, etc. in Landor's hand</unittitle>
<unitdatestructured altrender="1831" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831">1831</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19340 /locations/9"
containerid="39002099281165"
id="aspace_ref85_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref85_c2" localtype="folder" parent="aspace_ref85_c1">40</container>
</did>
<scopecontent id="aspace_46af9df16e59cff55f1c0a07f9bfb0b9">
<head>Scope and Contents</head>
<p>In ms. inside front cover: "WS Landor to RB [i.e. Robert Browning]", original boards, printed label on spine wanting</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214448"
id="ref87"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Imaginary Conversation; Emma and Her Parents,</part>
</title> autograph ms. signed "W. S. Landor"</unittitle>
<unitdatestructured altrender="[1860?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1860">[1860?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19339 /locations/9"
containerid="39002099281157"
id="aspace_ref87_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref87_c2" localtype="folder" parent="aspace_ref87_c1">34</container>
</did>
<scopecontent id="aspace_9767ea1e6119c5421f6c2edae8ace715">
<head>Scope and Contents</head>
<p>Accompanied by an envelope addressed to G. H. Holyoake, Esq. Purchase, 1942</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214449"
id="ref89"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Imaginary Conversations of Literary Men and Statesmen....</part>
</title> Vol. 1. London: Printed for Taylor and Hessey</unittitle>
<unitdatestructured altrender="1824" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1824">1824</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19341 /locations/9"
containerid="39002099281173"
id="aspace_ref89_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref89_c2" localtype="folder" parent="aspace_ref89_c1">41</container>
</did>
<scopecontent id="aspace_b84f78526c6fba78668603b617b2878f">
<head>Scope and Contents</head>
<p>Landor's copy, with his book-plate, and with copious ms. corrections, additions, and excisions, in his hand, imperfect: v.3 and 5 wanting</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214450"
id="ref91"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Imaginary Conversations of Literary Men and Statesmen....</part>
</title> Vol. 2. London: Printed for Taylor and Hessey</unittitle>
<unitdatestructured altrender="1824" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1824">1824</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19342 /locations/9"
containerid="39002099281181"
id="aspace_ref91_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref91_c2" localtype="folder" parent="aspace_ref91_c1">42</container>
</did>
<scopecontent id="aspace_cf46b6da0a2456073867c5d1e207b853">
<head>Scope and Contents</head>
<p>Landor's copy, with his book-plate, and with copious ms. corrections, additions, and excisions, in his hand, imperfect: v.3 and 5 wanting</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214451"
id="ref93"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">