-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path644.xml
1317 lines (1317 loc) · 72.9 KB
/
644.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.scott">beinecke.scott</recordid>
<otherrecordid localtype="BIB">4115764</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Sir Walter Scott Collection
</titleproper>
<titleproper localtype="filing">Scott (Sir Walter) 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 266</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1, Volume 1, 2 (Oversize), Volume 2-Volume 4</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="6">6</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="126">126</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>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:28:18-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>
<maintenanceevent>
<eventtype value="revised"/>
<eventdatetime>2022-09-12</eventdatetime>
<agenttype value="unknown"/>
<agent/>
<eventdescription>Material previously described twice was consolidated in the container listing so that the internal cross-reference links could be deleted, and both the Volumes and Oversize series were removed.</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/644" level="collection">
<did>
<unittitle>Sir Walter Scott collection</unittitle>
<unitid>GEN MSS 266</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</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes + 4 volumes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1803">1803</fromdate>
<todate standarddate="1831">1831</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_d225796fe220137041e04680fcd4994a">The collection consists primarily of letters from Scott to various correspondents, including James Ballantyne, John Wilson Croker, and Mary Ann (Watts) Hughes; and writings by Scott, including The House of Aspen and The Talisman.</abstract>
<physdesc id="aspace_dcc350515d610d383f5ac34585349d3f">Other Storage Formats: 4 volumes</physdesc>
<origination label="Creator">
<persname>
<part localtype="agent_person">Scott, Walter, 1771-1832</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_cc36af69a221ebb840debff7a65fe19f">
<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_efa0a3afd6350ffd5b9f62082e4742f0">
<head>Conditions Governing Use</head>
<p>The Sir Walter Scott 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_5a8cbfed3f4cdcb643bdde572e78defd">
<head>Preferred Citation</head>
<p>Sir Walter Scott Collection. General Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_ddc16a7d8cbcdaccac1447aa1b02c87b">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_67b0e86786256d3c3c920ad70b4ae517">
<head>Processing Information</head>
<p>This finding aid was produced from a previously existing card set in the Manuscripts Catalog, or from another inventory. All pertinent bibliographical information has been retained. If the collection also contains unlisted or unsorted material, this has been noted in the box-and-folder list. This finding aid will be updated once final folder numbering and labeling have been completed.</p>
</processinfo>
<scopecontent id="aspace_1d94edb9de1c1d6e6e741417f9df0d74">
<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 Sir Walter Scott, which the library has chosen to group and list as an artifical collection.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043782"
source="lcsh">
<part localtype="topical">English literature</part>
<part localtype="temporal">19th century</part>
</subject>
<persname>
<part localtype="agent_person">Ballantyne, James, 1772-1833</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Croker, John Wilson, 1780-1857</part>
</persname>
<persname>
<part localtype="agent_person">Hughes, Mary Ann Watts, 1770?-1853</part>
</persname>
<persname>
<part localtype="agent_person">Scott, Walter, 1771-1832</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/214859"
id="ref10"
level="series">
<did>
<unittitle>Letters by Sir Walter Scott</unittitle>
<unitid>Series I</unitid>
</did>
<c altrender="/repositories/11/archival_objects/214860"
id="ref11"
level="file">
<did>
<unittitle>ALS to James Ballantyne</unittitle>
<unitdatestructured altrender="1821 Sep 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1821-09-07">1821 Sep 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref11_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref11_c2" localtype="folder" parent="aspace_ref11_c1">1</container>
</did>
<scopecontent id="aspace_a3a1fde4d9d680fffce6eb06c00ba1d9">
<head>Scope and Contents</head>
<p>Accompanied by original agreement between James Ballantyne and Constable & Co. for <title localtype="simple" render="italic">
<part>Quentin Durward</part>
</title> dated 1821 Sep 3 and by engraving of Sir Walter Scott. Gift, 1973.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214861"
id="ref13"
level="file">
<did>
<unittitle>ALS to [Mr. Balmanno], Abbotsford</unittitle>
<unitdatestructured altrender="1827 Aug 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1827-08-02">1827 Aug 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">2</container>
</did>
<scopecontent id="aspace_929be48faef02bbcd286e35536f36bde">
<head>Scope and Contents</head>
<p>Accompanied by typescript. Robert Balmanno was secretary of the Artist's Fund, and publisher.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214862"
id="ref15"
level="file">
<did>
<unittitle>ALS to Mr. Blackwood, Abbotsford</unittitle>
<unitdatestructured altrender="[1824 May?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1824-05">[1824 May?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">3</container>
</did>
<scopecontent id="aspace_c5fced0b15e806c07741010476f34168">
<head>Scope and Contents</head>
<p>Purchase, 1952.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214863"
id="ref17"
level="file">
<did>
<unittitle>ALS to [Sir Egerton Brydges?]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">4</container>
</did>
<scopecontent id="aspace_4a3dc54d1be2f0c017af298432b4497b">
<head>Scope and Contents</head>
<p>Gift, 1953.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214864"
id="ref19"
level="file">
<did>
<unittitle>ALS to George Bullock</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Apr 1</unitdate>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">5</container>
</did>
<scopecontent id="aspace_7d1dca845b81d4d6f4f02ac406811857">
<head>Scope and Contents</head>
<p>Purchase, 1956.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214865"
id="ref21"
level="file">
<did>
<unittitle>ALS to Messrs. Cadell & Davis, Edinburgh</unittitle>
<unitdatestructured altrender="1801 Dec 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1801-12-26">1801 Dec 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">6</container>
</did>
<scopecontent id="aspace_b79ed0291dac1d2327ac0af74a2dad13">
<head>Scope and Contents</head>
<p>With 2 LS with initials C & D, London, 1801 Dec 29, 1802 Feb 23 on p. 2 and 3, with portrait. Purchase, 1959.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214866"
id="ref23"
level="file">
<did>
<unittitle>2 ALS to John Clarke-Whitfield, Edinburgh</unittitle>
<unitdatestructured altrender="1811" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1811">1811</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1816" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1816">1816</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">7</container>
</did>
<scopecontent id="aspace_c4b4a3a9f4b0061c892bb5e17d0fb997">
<head>Scope and Contents</head>
<p>Accompanied by a manuscript transcript of both letters. Gift, 1943.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214867"
id="ref25"
level="file">
<did>
<unittitle>ALS to [Messrs. R & J] Cockburn, Castle Street</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Jun 28</unitdate>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">8</container>
</did>
<scopecontent id="aspace_bcab279f6fc090ae4e78874ec108298b">
<head>Scope and Contents</head>
<p>Gift, 1944</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214868"
id="ref27"
level="file">
<did>
<unittitle>30 ALS to John Wilson Croker</unittitle>
<unitdatestructured altrender="1810-1831" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1810">1810</fromdate>
<todate standarddate="1831">1831</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19381 /locations/9"
containerid="39002098923379"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">48</container>
</did>
<scopecontent id="aspace_447e363d1edc1b1dcbb55f7e2a8f5908">
<head>Scope and Contents</head>
<p>Bound by Wallis in green full morocco. Accompanied by portrait and printed memoir.</p>
</scopecontent>
<acqinfo id="aspace_332077e8d496a931adabd287b2a6bf25">
<head>Immediate Source of Acquisition</head>
<p>Gift, 1927.</p>
</acqinfo>
</c>
<c altrender="/repositories/11/archival_objects/214871"
id="ref30"
level="file">
<did>
<unittitle>ALS to William J. East</unittitle>
<unitdatestructured altrender="1820 Jan" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1820-01">1820 Jan</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
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_8f25937f8a6f0b4fc1bf75245cd49f99">
<head>Scope and Contents</head>
<p>Gift, 1943.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214872"
id="ref32"
level="file">
<did>
<unittitle>ALS to James Ellis, Edinburgh</unittitle>
<unitdatestructured altrender="1814 Dec 15" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-12-15">1814 Dec 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
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_a5442dd4fc02e604e7dc46ac2db28a7c">
<head>Scope and Contents</head>
<p>Describing his northern tour, and inquiring for the author of the <title localtype="simple" render="italic">
<part>Reedwater minstrel</part>
</title>. The author of the <title localtype="simple" render="italic">
<part>Reedwater Minstrel</part>
</title> was Rob Roxby. Gift, 1941.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214873"
id="ref34"
level="file">
<did>
<unittitle>ALS to William Erskine, Abbotsford</unittitle>
<unitdatestructured altrender="1821 Sep 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1821-09-29">1821 Sep 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
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_9d63bf30e112c808182b5d0eb45d6182">
<head>Scope and Contents</head>
<p>Gift, 1926</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214874"
id="ref36"
level="file">
<did>
<unittitle>ALS to [John Gibson?], Abbotsford</unittitle>
<unitdatestructured altrender="1826 Apr 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-04-20">1826 Apr 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
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_c039ed9a70bbed329dfd0df3fb72b2e6">
<head>Scope and Contents</head>
<p>One of Scott's three trustees, concerning publication and financial matters. Purchase, 1942.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214875"
id="ref38"
level="file">
<did>
<unittitle>Letter to Lady Katherine Halket, Edinburgh</unittitle>
<unitdatestructured altrender="1819 Jun" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1819-06">1819 Jun</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
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_86057c6489e68f57bb86de97616c3d4c">
<head>Scope and Contents</head>
<p>Purchase, 1958.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214876"
id="ref40"
level="file">
<did>
<unittitle>ALS to [Matthew Weld] Hartstonge, Abbotsford</unittitle>
<unitdatestructured altrender="1814 Jul 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-07-18">1814 Jul 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
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_15a795636239c95c278dcc9ad2851097">
<head>Scope and Contents</head>
<p>Accompanied by a carbon typescript. From the William Harris Arnold collection. Gift, 1944.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214877"
id="ref42"
level="file">
<did>
<unittitle>AL to Miss Hayman, Edinburgh</unittitle>
<unitdatestructured altrender="[1807] Nov 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1807-11-10">[1807] Nov 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
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/131459">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2054610"
identifier="oid:2054610"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1231533/full/!150,150/0/default.jpg"
identifier="oid:2054610"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2054610"
identifier="oid:2054610"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>AL to Miss Hayman, Edinburgh</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_8f470a266baef9110ececd3de1719f1e">
<head>Scope and Contents</head>
<p>Signature cut off. Purchase, 1952.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214878"
id="ref44"
level="file">
<did>
<unittitle>4 ALS to Richard Heber, Edinburgh</unittitle>
<unitdatestructured altrender="1805-13" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1805">1805</fromdate>
<todate standarddate="1813">1813</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
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_d6c4da110d4fda7c5589cf945ec14732">
<head>Scope and Contents</head>
<p>Purchase, 1965.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214879"
id="ref46"
level="file">
<did>
<unittitle>AL, signed with initials, to [James] Hogg</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">17</container>
</did>
<scopecontent id="aspace_e7ac887a0285b0c57ac9e6e2fe73f8fa">
<head>Scope and Contents</head>
<p>Removed from James Hogg's <title localtype="simple" render="italic">
<part>Poetic Mirror</part>
</title>, London, 1816 Purchase, 1930.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214880"
id="ref48"
level="file">
<did>
<unittitle>ALS to Thomas Hood (Bookseller)</unittitle>
<unitdatestructured altrender="1828 Sep 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1828-09-26">1828 Sep 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">18</container>
<daoset altrender="/repositories/11/digital_objects/131694">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16495579"
identifier="oid:16495579"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16572318/full/!150,150/0/default.jpg"
identifier="oid:16495579"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16495579"
identifier="oid:16495579"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>ALS to Thomas Hood (Bookseller)</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_dbfb056dfdfab5c62247b4bbadb6dd91">
<head>Scope and Contents</head>
<p>Gift, 1954.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214881"
id="ref50"
level="file">
<did>
<unittitle>42 ALS and 2 AL to Mrs. Mary Ann (Watts) Hughes, various places</unittitle>
<unitdatestructured altrender="[1807?]-31" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1807">1807</fromdate>
<todate standarddate="1831">1831</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">19-25</container>
</did>
<scopecontent id="aspace_9c48e13a6ff136899027184414b5ad66">
<head>Scope and Contents</head>
<p>Accompanied by a typewritten copy of "Extracts etc. not printed in <title localtype="simple" render="italic">
<part>Letters and recollections of Sir Walter Scott</part>
</title>" Purchase, 1952.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214882"
id="ref52"
level="file">
<did>
<unittitle>ALS to [William] Millar, the bookseller, [Edinburgh?]</unittitle>
<unitdatestructured altrender="1808 Mar 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1808-03-25">1808 Mar 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">26</container>
</did>
<scopecontent id="aspace_1a1c4129064a0edeef2525dff8069787">
<head>Scope and Contents</head>
<p>Gift, 1936.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214883"
id="ref54"
level="file">
<did>
<unittitle>ALS to Sir Woodbine Parish, Edinburgh</unittitle>
<unitdatestructured altrender="[1803?] Dec 14"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1803-12-14">[1803?] Dec 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">27</container>
</did>
<scopecontent id="aspace_f20d00ed6e56b4b28167ae3c5a77076b">
<head>Scope and Contents</head>
<p>Purchase, 1955.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214884"
id="ref56"
level="file">
<did>
<unittitle>ALS to Robert Pitcairn, Abbotsford</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">28</container>
</did>
<scopecontent id="aspace_ef619d639811458563ce427e74191617">
<head>Scope and Contents</head>
<p>Gift, 1926.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214885"
id="ref58"
level="file">
<did>
<unittitle>ALS to Henry Raeburn</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. May 8</unitdate>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">29</container>
</did>
<scopecontent id="aspace_c94b775ab196b4f932484cccc656d09d">
<head>Scope and Contents</head>
<p>Gift, 1957.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214886"
id="ref60"
level="file">
<did>
<unittitle>ALS to Owen Rees, the publisher, Edinburgh</unittitle>
<unitdatestructured altrender="[1808] Jun 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1808-06-09">[1808] Jun 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">30</container>
</did>
<scopecontent id="aspace_92e62aa4ca0d59d5f1d4a8a5754ffe68">
<head>Scope and Contents</head>
<p>Gift, 1926.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214887"
id="ref62"
level="file">
<did>
<unittitle>ALS to John Richardson, Abbotsford</unittitle>
<unitdatestructured altrender="[1817] Sep 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1817-09-22">[1817] Sep 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">31</container>
</did>
<scopecontent id="aspace_de37ecba110f83b75dcfdf396713101b">
<head>Scope and Contents</head>
<p>Mentions a visit from Washington Irving. Accompanied by typewritten transcript. Purchase, 1938.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214911"
id="ref112"
level="file">
<did>
<unittitle>Letter to Spottiswood & Robertson, Solicitors, with a fragment in Scott's hand</unittitle>
<unitdatestructured altrender="1812 Jul 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1812-07-02">1812 Jul 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19377 /locations/9"
containerid="39002099284102"
id="aspace_ref112_c1"
label="Mixed Materials"
localtype="box">Volume 1</container>
</did>
<scopecontent id="aspace_2d1fd1e4133cf7716dfcb63d7fc7140e">
<head>Scope and Contents</head>
<p>Inserted in Scott's personal copy of the British Bankruptcy and Jury Acts, published in 1814 and 1815. The Acts are bound together, with blank leaves between, with manuscript forms of Interlocutors in Sequestration, not in Scott's hand, but with corrections by Scott.</p>
</scopecontent>
<acqinfo id="aspace_7d0a2a45016df5d2b97c4a94e5645a48">
<head>Immediate Source of Acquisition</head>
<p>Gift, 1926.</p>
</acqinfo>
</c>
<c altrender="/repositories/11/archival_objects/214889"
id="ref68"
level="file">
<did>
<unittitle>ALS to Richard [Robert] Surtees, Abbotsford</unittitle>
<unitdatestructured altrender="[1828] Apr 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1828-04-01">[1828] Apr 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">32</container>
</did>
<scopecontent id="aspace_a5e48b2437c0baf90abaf13089f1fc54">
<head>Scope and Contents</head>
<p>"Diccon the Reaver" mentioned in this letter refers to Surtees' poem "The reever's penance." Gift, 1926.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214890"
id="ref70"
level="file">
<did>
<unittitle>ALS to Mr. John Williams, Jermyn Street</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Mar 24</unitdate>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">33</container>
</did>
<scopecontent id="aspace_bc9fef7e8772ed8fdb2ccc0079f130be">
<head>Scope and Contents</head>
<p>With manuscript notes on Scott and Williams. Purchase, 1956.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214891"
id="ref72"
level="file">
<did>
<unittitle>ALS to "Sir", Abbotsford</unittitle>
<unitdatestructured altrender="1821 Nov 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1821-11-03">1821 Nov 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">34</container>
</did>
<scopecontent id="aspace_7ffec30fdca9a22d28f12ca77c186b16">
<head>Scope and Contents</head>
<p>With typewritten transcript, engraved portrait and clipped signature. Gift, 1955.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214892"
id="ref74"
level="file">
<did>
<unittitle>ALS to an unnamed correspondent, Edinburgh</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Dec 4</unitdate>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref74_c2" localtype="folder" parent="aspace_ref74_c1">35</container>
</did>
<scopecontent id="aspace_7519d31319fa4ff8f3fc7a9d42f49e25">
<head>Scope and Contents</head>
<p>Purchase, 1960.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214893"
id="ref76"
level="file">
<did>
<unittitle>ALS to unidentified recipient, Abbotsford</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">36</container>
</did>
<scopecontent id="aspace_fdfe5fc6a02d008bdb3430dcc0afe11a">
<head>Scope and Contents</head>
<p>Gift, 1950.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214894"
id="ref78"
level="file">
<did>
<unittitle>Letter in the third person in an unidentified hand extending a dinner invitation to Mr. Sharpe.</unittitle>
<unitdatestructured altrender="[1817?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1817">[1817?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19376 /locations/9"
containerid="39002099284094"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">37</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/214895"
id="ref79"
level="series">
<did>
<unittitle>Writings by Sir Walter Scott</unittitle>
<unitid>Series II</unitid>
</did>
<c altrender="/repositories/11/archival_objects/214912"
id="ref114"
level="file">
<did>
<unittitle>
<title render="italic">
<part>The House of Aspen, a tragedy founded upon a German Story</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/214913"
id="ref115"
level="file">
<did>
<unittitle>The original manuscript on paper</unittitle>
<unitdatestructured altrender="circa 1799" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1795">1795</fromdate>
<todate standarddate="1800">1800</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_547962abc745eb51ff396cd6263ee81c">Bound in red morocco, by Orrock, with the Marquess of Lothian's arms.</physdesc>
<container altrender="/repositories/11/top_containers/19378 /locations/9"
containerid="39002099284110"
id="aspace_ref115_c1"
label="Mixed Materials"
localtype="box">Volume 2</container>
<daoset altrender="/repositories/11/digital_objects/131574">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/15485345"
identifier="oid:15485345"
linktitle="113 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/15485764/full/!150,150/0/default.jpg"
identifier="oid:15485345"
linktitle="[Front cover]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/15485345"
identifier="oid:15485345"
linktitle="[Front cover]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>The original manuscript on paper</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_782ae5fd66c3cdd37d976506bc25ddb9">
<head>Scope and Contents</head>
<p>Written in the hand of an amenuensis, but with numerous corrections in the author's autograph. The whole of the fifth act is in Walter Scott's hand.</p>
</scopecontent>
<acqinfo id="aspace_04224fb513e3f551b00b20026db584a0">
<head>Immediate Source of Acquisition</head>
<p>Purchase, 1932.</p>
</acqinfo>
</c>
<c altrender="/repositories/11/archival_objects/214914"
id="ref117"
level="file">
<did>
<unittitle>Manuscript in an unidentified hand, with a few corrections by Scott.</unittitle>
<unitdatestructured altrender="circa 1799" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1799">1799</fromdate>
<todate standarddate="1800">1800</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_a31d1085adda11f1d4f62f3883e3c007">Paper watermarked 1799. Bound in brown calf.</physdesc>
<container altrender="/repositories/11/top_containers/19379 /locations/9"
containerid="39002099284128"
id="aspace_ref117_c1"
label="Mixed Materials"
localtype="box">Volume 3</container>
<daoset altrender="/repositories/11/digital_objects/131578">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/15536012"
identifier="oid:15536012"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"