-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path880.xml
2118 lines (2118 loc) · 114 KB
/
880.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.marnold">beinecke.marnold</recordid>
<otherrecordid localtype="BIB">11019377</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Matthew Arnold Collection
</titleproper>
<titleproper localtype="filing">Arnold (Matthew) 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 2012</date>
<num>GEN MSS 867</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">11019377</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-6</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:44:46-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:44</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/880" level="collection">
<did>
<unittitle>Matthew Arnold collection</unittitle>
<unitid>GEN MSS 867</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="fre">French</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>In English and French.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.29</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">6 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1825">1825</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1850">1850</fromdate>
<todate standarddate="1888">1888</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_eabaea5d353de5eadfd94d6bee82efd9">The Matthew Arnold Collection is a mixed-provenance collection of material by and related to Matthew Arnold, including family, personal and professional correspondence; diaries by Mary Penrose Arnold; letters from Frances Lucy Arnold to Arthur Galton; and a small quanitity of personal papers and manuscript items. Correspondents include Arthur Hugh Clough, James Thomas Knowles and George Smith.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Arnold, Matthew, 1822-1888</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_6fb5a3ca70eabf3f8a2a218015d1f4e8">
<head>Immediate Source of Acquisition</head>
<p>Acquired by gift and purchase from various sources between 1928 and 2005, as noted on individual folders or on the catalog cards included with the collection.</p>
</acqinfo>
<accessrestrict id="aspace_f6829f991d8223bfe1259c931ac4f3df">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_56555e4181697119aacedb9f4efe5920">
<head>Conditions Governing Use</head>
<p>The Matthew Arnold 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_9dcd72a4ae9ff2434b40b156f21360ce">
<head>Preferred Citation</head>
<p>Matthew Arnold Collection. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_90f97ea8db658c29d6f6a866170118af">
<head>Processing Information</head>
<p>The Matthew Arnold Collection is comprised of material formerly classed as MS Vault Shelves Arnold, Uncat MS Vault Shelves Arnold, Uncat MSS 358, and Uncat MSS 834.</p>
<p>This collection received a basic level of processing, including rehousing, in 2012.</p>
<p>The finding aid for this collection is largely compiled from individual catalog cards for each acquisition that were created at or around the time of receipt by the library. Information from the catalog cards was repurposed in the finding aid in accordance with current archival descriptive standards. Some catalog cards, filed with the collection, include more detailed descriptions of individual items and/or provenance notes. Descriptions for items not represented by catalog cards were derived from accession records, folder labels, or other available descriptive material. Some items are accompanied by transcripts or other explanatory material; this is not generally noted in the finding aid.</p>
</processinfo>
<bioghist id="aspace_8e57a3e61dcbbec9a6b12f7b4f78374d">
<head>Matthew Arnold (1822-1888)</head>
<p>Matthew Arnold (1822-1888), son of British educator Thomas Arnold, was a poet and critic who began his education at Rugby School, where his father was headmaster. In 1841, he entered Balliol College, Oxford, where he began his life-long friendship with the poet Arthur Hugh Clough, graduating in 1844. In 1851, through the patronage of Lord Lansdowne, he was appointed one of Her Majesty's Inspectors of Schools, a position he held until his retirement in 1883. He married Frances Lucy Wightman, Lord Lansdowne's daughter, in the same year. The Arnolds had six children, only three of whom survived to adulthood.</p>
<p>Much of Arnold's poetry was written by the time Arnold turned thirty. His major collections include <title localtype="simple" render="italic">
<part>The Strayed Reveller and Other Poems</part>
</title>(1849); <title localtype="simple" render="italic">
<part>Empedocles on Etna and other Poems</part>
</title> (1852); <title localtype="simple" render="italic">
<part>Poems by Matthew Arnold</part>
</title>(1853, 1854, 1857); and <title localtype="simple" render="italic">
<part>New Poems</part>
</title> (1867). He is perhaps best known today for the elegaic<title localtype="simple" render="italic">
<part>Dover Beach</part>
</title> and <title localtype="simple" render="italic">
<part>Stanzas from the Grande Chartreuse</part>
</title>. Arnold's literary and cultural criticism included the highly influential <title localtype="simple" render="italic">
<part>Culture and Anarchy</part>
</title> (1869) and other collections of critical essays, many of which first appeared in periodicals such as <title localtype="simple" render="italic">
<part>Cornhill Magazine</part>
</title> and <title localtype="simple" render="italic">
<part>The Athenaeum</part>
</title>. In addtion, he published two works on French and Continental schools.</p>
<p>Arnold retired from the civil service in 1883 on a pension secured for him by William Gladstone. He made two extensive lecture tours of the United States, in 1883 and 1886. Matthew Arnold died of a sudden heart attack in Liverpool on April 15, 1888, and was buried three days later beside his children at Laleham.</p>
</bioghist>
<scopecontent id="aspace_00a537077f2d92dea6f30c04b2683b08">
<head>Scope and Contents</head>
<p>The Matthew Arnold Collection is a mixed-provenance collection of material by and related to Matthew Arnold, including family, personal and professional correspondence; diaries by Mary Penrose Arnold; letters from Frances Lucy Arnold to Arthur Galton; and a small quanitity of personal papers and manuscript items.</p>
<p>Series I, Matthew Arnold Letters and Other Papers, contains letters by Matthew Arnold to family members, friends and professional colleagues. Major recipients include his close friend, the poet Arthur Hugh Clough; James Thomas Knowles, the editor first of the <title localtype="simple" render="italic">
<part>Contemporary Review</part>
</title> and then of <title localtype="simple" render="italic">
<part>The Nineteenth Century</part>
</title>; and George Smith, the founder of <title localtype="simple" render="italic">
<part>Cornhill Magazine</part>
</title>. An 1834 letter to Martha Buckland is written partially in verse. The series also contains an autograph manuscript of <title localtype="simple" render="italic">
<part>George Sand</part>
</title> and notes and documents relating to Arnold's career as an Inspector of Schools.</p>
<p>Series II, Mary Penrose Arnold Diaries, contains the personal diaries of Arnold's mother for the years 1825 to 1842, while Series III, Frances Lucy Arnold Correspondence, consists entirely of letters from Frances Arnold to the Reverend Arthur Galton.</p>
<p>Series IV, the Fred Whitridge Collection of Arnold Family Papers, consists almost entirely of correspondence inherited or gathered by Frederick Whitridge, a grandson of Matthew Arnold. Contents include several folders of letters from Arnold to his daughter Lucy Arnold Whitridge, as well as letters to his mother and his sister Fan; letters to Arnold from a variety of correspondents, including Benjamin Jowett, Sir Henry Irving, Thomas Henry Huxley, and John Henry, Cardinal Newman; and a notebook on theater and notes in Arnold's hand.</p>
</scopecontent>
<arrangement id="aspace_ca6c77ac46ae7d5dc57fd206baa630ad">
<head>Arrangement</head>
<p>Organized into four series: I. Matthew Arnold Letters and Other Papers, 1845-1888. II. Mary Penrose Arnold Diaries, 1825-1842. III. Frances Lucy Arnold Correspondence, 1885-1920. IV. Fred Whitridge Collection of Arnold Family Papers, 1849-1939.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2009116227"
source="lcsh">
<part localtype="topical">Authors and publishers</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, English</part>
<part localtype="temporal">19th century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043782"
source="lcsh">
<part localtype="topical">English literature</part>
<part localtype="temporal">19th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043937"
source="lcsh">
<part localtype="topical">English poetry</part>
<part localtype="temporal">19th century</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056856"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Intellectual life</part>
<part localtype="temporal">19th century</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Diaries</part>
<part localtype="geographic">Great Britain</part>
<part localtype="temporal">19th century</part>
</genreform>
<famname>
<part localtype="agent_family">Arnold family</part>
</famname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Arnold, Frances Lucy</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Arnold, Mary Penrose, 1791-1873</part>
</persname>
<persname>
<part localtype="agent_person">Arnold, Matthew, 1822-1888</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Arnold, Thomas, 1795-1842</part>
</persname>
<persname>
<part localtype="agent_person">Clough, Arthur Hugh, 1819-1861</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Galton, Arthur, 1852-1921</part>
</persname>
<persname>
<part localtype="agent_person">Knowles, James, Sir, 1831-1908</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Smith, George, 1824-1901</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/283720"
id="ref11"
level="series">
<did>
<unittitle>Matthew Arnold Letters and Other Papers</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.83</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1845-1888" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1845">1845</fromdate>
<todate standarddate="1888">1888</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_67b669755c0f437f7bee4d54c4762f0f">
<head>Arrangement</head>
<p>The series is alphabetically arranged.</p>
</arrangement>
<scopecontent id="aspace_fceaccb60d25c149e9d6e5e8a75b60a8">
<head>Scope and Contents</head>
<p>The series consists almost entirely of letters by Matthew Arnold. Major recipients include Arthur Hugh Clough, James Thomas Knowles, and George Smith. Also included are an autograph manuscript of <title localtype="simple" render="italic">
<part>George Sand</part>
</title> and autograph notes taken by Arnold as Inspector of Schools.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/283721"
id="ref13"
level="file">
<did>
<unittitle>Catalog cards</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283722"
id="ref15"
level="file">
<did>
<unittitle>Letter: to Mr. Aitchison</unittitle>
<unitdate label="creation" unitdatetype="inclusive">no year September 27</unitdate>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283723"
id="ref16"
level="file">
<did>
<unittitle>5 letters: to Charles Edward Cutts Birch Appleton</unittitle>
<unitdatestructured altrender="1872-1879" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872">1872</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283724"
id="ref17"
level="file">
<did>
<unittitle>2 letters: to Thomas Arnold (brother)</unittitle>
<unitdatestructured altrender="1860" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1860">1860</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1864" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1864">1864</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283725"
id="ref18"
level="file">
<did>
<unittitle>Letter: to William Thomas Arnold ("Willy")</unittitle>
<unitdatestructured altrender="1881 September 3"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1881-09-03">1881 September 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_b1aef5547440aec37c64372db38529bc">
<head>Scope and Contents</head>
<p>Tinker 122</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283726"
id="ref20"
level="file">
<did>
<unittitle>Letter: to Mr. Bourne</unittitle>
<unitdatestructured altrender="1874 May 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1874-05-05">1874 May 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283727"
id="ref21"
level="file">
<did>
<unittitle>Letter: to Martha Buckland</unittitle>
<unitdatestructured altrender="1836 May 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1836-05-14">1836 May 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_af811f0d091b7e114ddda60b4cad2e0f">
<head>Scope and Contents</head>
<p>The first page of the letter is in verse by Matthew Arnold.</p>
<p>Letter annotated by Thomas Arnold (father).</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283728"
id="ref23"
level="file">
<did>
<unittitle>Letter: to Mssrs. Burr of Hartford, Connecticut</unittitle>
<unitdatestructured altrender="[1883] November 15"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1883-11-15">[1883] November 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283729"
id="ref24"
level="file">
<did>
<unittitle>Letter: to Lord Carlingford</unittitle>
<unitdate label="creation" unitdatetype="inclusive">no year June 30</unitdate>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_033fa94406162b806530d20f58872a1b">
<head>Scope and Contents</head>
<p>Recipient is Chichester Samuel Parkinson-Fortescue, Baron Carlingford, 1823-1898.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283730"
id="ref26"
level="file">
<did>
<unittitle>54 letters: to Arthur Hugh Clough</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>62</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1845-1861" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1845">1845</fromdate>
<todate standarddate="1861">1861</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_4a28b178178c60969913ba1a6b558923">
<head>Scope and Contents</head>
<p>With: 5 letters to Mrs. Arthur Hugh Clough, 1861-1868; 1 letter from Charles T. Penrose to Matthew Arnold, 1861 March 25; a note in Arnold's hand, undated; and a copy of <title localtype="simple" render="italic">
<part>Arnold and Clough</part>
</title>, 1933 January 12.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283731"
id="ref29"
level="file">
<did>
<unittitle>Letter: to Mrs. Cumberledge</unittitle>
<unitdatestructured altrender="1888 February 27"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1888-02-27">1888 February 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_d70177ac9a6184702ff2a48669ac0de7">
<head>Scope and Contents</head>
<p>Tipped to dated autograph of Matthew Arnold.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283732"
id="ref31"
level="file">
<did>
<unittitle>Letter: to Mrs. Earle</unittitle>
<unitdate label="creation" unitdatetype="inclusive">no year July 27</unitdate>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283733"
id="ref32"
level="file">
<did>
<unittitle>Letter: to Julian Fane</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_8524444d8e6a547d3865172444c90ffc">
<head>Scope and Contents</head>
<p>Letter dated: "Easter Monday."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283734"
id="ref34"
level="file">
<did>
<unittitle>Letter: to Sir Joshua Fitch</unittitle>
<unitdatestructured altrender="1880 October 5"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1880-10-05">1880 October 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283735"
id="ref35"
level="file">
<did>
<unittitle>4 letters: to Mrs. Eduardo Nicolà Fusco</unittitle>
<unitdatestructured altrender="1874-1875, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1874">1874</fromdate>
<todate standarddate="1875">1875</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_9b3f6319a383f02be169ceb474c1b39f">
<head>Scope and Contents</head>
<p>3 letters in French.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283736"
id="ref37"
level="file">
<did>
<unittitle>5 letters: to Sir Arthur Helps</unittitle>
<unitdatestructured altrender="1868-1871, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1868">1868</fromdate>
<todate standarddate="1871">1871</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283737"
id="ref38"
level="file">
<did>
<unittitle>Letter: to E. Lloyd Jones</unittitle>
<unitdatestructured altrender="1883 January 26"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1883-01-26">1883 January 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283738"
id="ref39"
level="file">
<did>
<unittitle>Letter: to Sir James Kay-Shuttleworth</unittitle>
<unitdatestructured altrender="1867 March 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1867-03-19">1867 March 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_fe90331e91355b3b94261a0f155b92d7">
<head>Scope and Contents</head>
<p>Incomplete and damaged.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283739"
id="ref41"
level="file">
<did>
<unittitle>31 letters: to James Thomas Knowles</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1869-1879, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1869">1869</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25877 /locations/9"
containerid="39002091548223"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283740"
id="ref43"
level="file">
<did>
<unittitle>Letter: to Sir James Lacaita</unittitle>
<unitdatestructured altrender="1876 July 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1876-07-18">1876 July 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283741"
id="ref44"
level="file">
<did>
<unittitle>Letter: to Alexander Macmillan</unittitle>
<unitdatestructured altrender="1869 February 25"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1869-02-25">1869 February 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283742"
id="ref45"
level="file">
<did>
<unittitle>Letter: to Mrs. Bryant Morgan</unittitle>
<unitdatestructured altrender="1884 January 8"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1884-01-08">1884 January 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283743"
id="ref46"
level="file">
<did>
<unittitle>Letter (in the 3rd person): to John Murray</unittitle>
<unitdatestructured altrender="1871 April 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1871-04-20">1871 April 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283744"
id="ref47"
level="file">
<did>
<unittitle>3 letters: to Charles Myhill</unittitle>
<unitdatestructured altrender="1885" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1885">1885</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_32f9233d91dbfb3bfde4994e6c068bfd">
<head>Scope and Contents</head>
<p>Accompanied by: photograph of National Gallery portrait of Arnold</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283745"
id="ref49"
level="file">
<did>
<unittitle>Letter: to Mr. Ruault</unittitle>
<unitdate label="creation" unitdatetype="inclusive">no year February 17</unitdate>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283746"
id="ref50"
level="file">
<did>
<unittitle>Letter: to Miss St. John</unittitle>
<unitdatestructured altrender="1870 January 14"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1870-01-14">1870 January 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283747"
id="ref51"
level="file">
<did>
<unittitle>Letter: to Horace Seymour</unittitle>
<unitdatestructured altrender="[1881] September 25"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1881-09-25">[1881] September 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283748"
id="ref52"
level="file">
<did>
<unittitle>2 letters: to Mrs. Shand</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283749"
id="ref53"
level="file">
<did>
<unittitle>30 letters: to George Smith</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1865-1874" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1865">1865</fromdate>
<todate standarddate="1874">1874</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283750"
id="ref55"
level="file">
<did>
<unittitle>Letter: to Miss Smith</unittitle>
<unitdatestructured altrender="1867 June 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1867-06-10">1867 June 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283751"
id="ref56"
level="file">
<did>
<unittitle>5 letters: to Elizabeth Thompson</unittitle>
<unitdatestructured altrender="1886, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1886">1886, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283752"
id="ref57"
level="file">
<did>
<unittitle>4 letters: to Henry Yates Thompson</unittitle>
<unitdatestructured altrender="1884-1886, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1884">1884</fromdate>
<todate standarddate="1886">1886</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283753"
id="ref58"
level="file">
<did>
<unittitle>Letter: to James Toovey</unittitle>
<unitdatestructured altrender="1852 April 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1852-04-21">1852 April 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283754"
id="ref59"
level="file">
<did>
<unittitle>Letter: to Arthur Williams</unittitle>
<unitdatestructured altrender="1876 February 28"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1876-02-28">1876 February 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283755"
id="ref60"
level="file">
<did>
<unittitle>Letter: to James Yoxall</unittitle>
<unitdatestructured altrender="[1880] April 23"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1880-04-23">[1880] April 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283756"
id="ref61"
level="file">
<did>
<unittitle>Letter: to "Bernard"</unittitle>
<unitdatestructured altrender="1868 October 28"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1868-10-28">1868 October 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283757"
id="ref62"
level="file">
<did>
<unittitle>Letter: to "My dearest K"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">no year August 1</unitdate>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283758"
id="ref63"
level="file">
<did>
<unittitle>Letter: to unidentified recipient</unittitle>
<unitdatestructured altrender="1887 September 6"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1887-09-06">1887 September 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283759"
id="ref64"
level="file">
<did>
<unittitle>Letter: to an unidentified recipient</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/283760"
id="ref65"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>George Sand</part>
</title>: autograph manuscript, corrected, signed</unittitle>
<unitdatestructured altrender="[1877]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1877">[1877]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_62dbe5a76fe61502784e4a274910a5c4">
<head>Scope and Contents</head>
<p>Presentation inscription: from John Morley to the Earl of Rosebery.</p>
<p>Ex libris Earl of Rosebery.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/283761"
id="ref67"
level="file">
<did>
<unittitle>Notes made in Arnold's capacity as Inspector of Schools</unittitle>
<unitdatestructured altrender="1868-1871" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1868">1868</fromdate>
<todate standarddate="1871">1871</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/25878 /locations/9"
containerid="39002091548231"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>