-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1058.xml
2211 lines (2211 loc) · 116 KB
/
1058.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.lekeux">beinecke.lekeux</recordid>
<otherrecordid localtype="BIB">3942313</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Le Keux Correspondence
</titleproper>
<titleproper localtype="filing">Le Keux Correspondence</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 1996</date>
<num>OSB MSS 27</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">3942313</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 1</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>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:06:55-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:06</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1058" level="collection">
<did>
<unittitle>Le Keux correspondence</unittitle>
<unitid>OSB MSS 27</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>0.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1811-1879" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1811">1811</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_f3622bf7b8f1f72761bf43a73a34dc96">The collection consists of professional correspondence of John, Henry and John Henry Le Keux, including letters from publishers, artists, fellow engravers, patrons, and prospective students. Among the correspondents are Robert Batty, Edwin Guest, Augustus Charles Pugin, and Dawson Turner. A letter by George Doo encloses a copy of the Associated Society of Engravers' plan for publishing their National Gallery collection.</abstract>
</did>
<acqinfo id="aspace_9d0cf2b2db8e60ad1fbe999075e1a2af">
<head>Immediate Source of Acquisition</head>
<p>Gift of James Marshall and Marie-Louise Osborn. For further information, consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_46e1ae654e205fb297e1cb3b270146e9">
<head>Conditions Governing Use</head>
<p>The Le Keux Correspondence 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_93f5de6a044b1982fa41db33e996277b">
<head>Preferred Citation</head>
<p>Le Keux Correspondence. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_698f5b0801e666a018666106ae9754f1">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_b859909dcd2daa83b9837076ffd54eed">
<head>Processing Information</head>
<p>This finding aid was produced from a previously existing card set in the Manuscripts Catalog. All pertinent bibliographic information has been retained.</p>
</processinfo>
<relatedmaterial id="aspace_48a5375021d8f3ab10cba08d00e466c9">
<head>Associated Materials</head>
<p>.[Insert text here]</p>
</relatedmaterial>
<bioghist id="aspace_17f22d24f24e4e87ca173628da4ed587">
<head>LE KEUX FAMILY</head>
<p>John Le Keux (1783-1846) and his younger brother Henry Le Keux (1787-1868) were apprenticed to the architectural engraver James Basire, and both produced a wide variety of architectural and views engravings for various publications, including works by Neale, Pugin, and J. M. W. Turner. Henry Le Keux abandoned engraving work for the crape manufacturing business in 1838, but John continued to execute commissions until shortly before his death in 1846. John's eldest son, John Henry Le Keux (1812-1896), also became an architectural engraver; his works include plates in Ruskin's <title localtype="simple" render="italic">
<part>Stones of Venice</part>
</title> (1851) and <title localtype="simple" render="italic">
<part>Modern Painters</part>
</title> (1888).</p>
</bioghist>
<scopecontent id="aspace_f887d78cb9bc59b4d318549a9d4a7d6f">
<head>Scope and Contents</head>
<p>The<ref actuate="onrequest" show="replace" target="ref12">Le Keux Correspondence</ref> consists of business letters addressed to John, Henry, and John Henry Le Keux, along with a few letters by each. The papers span the dates 1811-1879 and have been arranged alphabetically by correspondent in a single series.</p>
<p>The letters' authors include fellow engravers, prospective students, artists, publishers, and patrons of works to which the Le Keux contributed. Authors include Robert Batty, A. C. Pugin, Dawson Turner, and Alaric Alexander Watts.</p>
</scopecontent>
<controlaccess>
<subject source="local_ycba_rbm">
<part localtype="topical">Engravers</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject source="local">
<part localtype="topical">Engraving</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject source="local">
<part localtype="topical">Publishers and publishing</part>
<part localtype="geographic">Great Britain</part>
</subject>
<occupation source="local">
<part localtype="occupation">Engravers</part>
<part localtype="geographic">Great Britain</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Batty, Robert, 1788 or 1789-1848</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Bliss, Philip, 1787-1857</part>
</persname>
<persname>
<part localtype="agent_person">Bridgewater, Francis Henry Egerton, Earl of, 1756-1829</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Cooke, George, 1781-1834</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Doo, George Thomas, 1800-1886</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Finden, W. (William), 1787-1852</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Guest, Edwin, 1800-1880</part>
</persname>
<persname>
<part localtype="agent_person">Le Keux, Henry, 1787-1868</part>
</persname>
<persname>
<part localtype="agent_person">Le Keux, John Henry, 1812-1896</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Le Keux, John, 1783-1846</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Nichols, John Gough, 1806-1873</part>
</persname>
<persname>
<part localtype="agent_person">Pugin, Augustus, 1762-1832</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Turner, Dawson, 1775-1858</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Wyatt, M. Digby, Sir (Matthew Digby), 1820-1877</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/386765"
id="ref12"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
</did>
<c altrender="/repositories/11/archival_objects/386766"
id="ref13"
level="subseries">
<did>
<unittitle>ACKERMANN, RUDOLPH, 1764-1834</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386767"
id="ref14"
level="file">
<did>
<unittitle>AL to Henry Le Keux, Strand</unittitle>
<unitdatestructured altrender="1825 Apr 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-04-07">1825 Apr 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386768"
id="ref15"
level="subseries">
<did>
<unittitle>ACKERMANN, RUDOLPH, D. 1868</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386769"
id="ref16"
level="file">
<did>
<unittitle>AL to J. H. Le Keux, S. A.</unittitle>
<unitdatestructured altrender="1854 May 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1854-05-16">1854 May 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">2</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386770"
id="ref17"
level="subseries">
<did>
<unittitle>ARCH, JOHN ARTHUR</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386771"
id="ref18"
level="file">
<did>
<unittitle>ALS to Henry Le Keux, London</unittitle>
<unitdatestructured altrender="1830 Dec 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-12-29">1830 Dec 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">3</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386772"
id="ref19"
level="subseries">
<did>
<unittitle>BATTY, ROBERT, 1788-1848</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386773"
id="ref20"
level="file">
<did>
<unittitle>ALS to Henry Le Keux, Connaught Square</unittitle>
<unitdatestructured altrender="1830 Sep 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-09-16">1830 Sep 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">4</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386774"
id="ref21"
level="subseries">
<did>
<unittitle>BELL, J. A.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386775"
id="ref22"
level="file">
<did>
<unittitle>Receipt (holograph, signed) for payment for drawings supplied to John Le Keux, London</unittitle>
<unitdatestructured altrender="1863 Jul 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1863-07-19">1863 Jul 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">5</container>
</did>
<scopecontent id="aspace_0974fe76f5e397ef5308e985ff741528">
<head>Scope and Contents</head>
<p>Eight drawings of Cambridge buildings.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386776"
id="ref24"
level="subseries">
<did>
<unittitle>BLISS, PHILIP, 1787-1857</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386777"
id="ref25"
level="file">
<did>
<unittitle>3 ALS to J. H. Le Keux, Oxford, Brighton</unittitle>
<unitdatestructured altrender="1855" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1855">1855</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1856" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">6</container>
</did>
<scopecontent id="aspace_1b81809c82d28f7250086ece862db7bb">
<head>Scope and Contents</head>
<p>Oxford engravings.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386778"
id="ref27"
level="subseries">
<did>
<unittitle>BLORE, EDWARD, 1787-1879</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386779"
id="ref28"
level="file">
<did>
<unittitle>ALS to Henry Le Keux, Welbeck Street</unittitle>
<unitdatestructured altrender="1838 May 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1838-05-05">1838 May 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">7</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386780"
id="ref29"
level="subseries">
<did>
<unittitle>BOONE, THOMAS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386781"
id="ref30"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Bond Street</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.y.] Feb 1</unitdate>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">8</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386782"
id="ref31"
level="subseries">
<did>
<unittitle>BRIDGEWATER, FRANCIS HENRY EGERTON,</unittitle>
</did>
<scopecontent id="aspace_776c913e5c7e1f390703e938bbfd49ed">
<head>Scope and Contents</head>
<p>[8TH EARL OF, 1756-1829]</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/386783"
id="ref32"
level="file">
<did>
<unittitle>ALS to Henry Le Keux, Bridgewater</unittitle>
<unitdatestructured altrender="1820 Mar 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1820-03-30">1820 Mar 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">9</container>
<daoset altrender="/repositories/11/digital_objects/185051">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/31902428"
identifier="oid:31902428"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/31902429/full/!150,150/0/default.jpg"
identifier="oid:31902428"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/31902428"
identifier="oid:31902428"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>ALS to Henry Le Keux, Bridgewater</p>
</descriptivenote>
</daoset>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386784"
id="ref34"
level="subseries">
<did>
<unittitle>CLARKE, JOSEPH</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386785"
id="ref35"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Saffron Walden</unittitle>
<unitdatestructured altrender="1856 Jan 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856-01-11">1856 Jan 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">10</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386786"
id="ref36"
level="subseries">
<did>
<unittitle>CLUTTERBUCK, ROBERT, 1772-1831</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386787"
id="ref37"
level="file">
<did>
<unittitle>ALS to Henry Le Keux, London</unittitle>
<unitdatestructured altrender="1815 Nov 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1815-11-14">1815 Nov 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">11</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386788"
id="ref38"
level="subseries">
<did>
<unittitle>COOKE, EDWARD WILLIAM, 1811-1880</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386789"
id="ref39"
level="file">
<did>
<unittitle>ALS to John Henry Le Keux, Kensington</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.y.] Jan 22</unitdate>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">12</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386790"
id="ref40"
level="subseries">
<did>
<unittitle>COOKE, GEORGE, 1781-1834</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386791"
id="ref41"
level="file">
<did>
<unittitle>2 ALS to Henry Le Keux, [n.p.]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[1816?], 1821</unitdate>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">13</container>
</did>
<scopecontent id="aspace_9a4679f100e7d18f89a3d5191c929460">
<head>Scope and Contents</head>
<p>Engravings in hand.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386792"
id="ref43"
level="subseries">
<did>
<unittitle>COXE, HENRY OCTAVIUS, 1811-1881</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386793"
id="ref44"
level="file">
<did>
<unittitle>ALS to John Henry Le Keux, Bodleian Library</unittitle>
<unitdatestructured altrender="1866 Apr 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1866-04-04">1866 Apr 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">14</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386794"
id="ref45"
level="subseries">
<did>
<unittitle>CURTIS, E. J.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386795"
id="ref46"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Barnsbury Park</unittitle>
<unitdatestructured altrender="1857 Dec 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1857-12-30">1857 Dec 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">15</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386796"
id="ref47"
level="subseries">
<did>
<unittitle>DAVIDSON, C.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386797"
id="ref48"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Reigate</unittitle>
<unitdatestructured altrender="[1861]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861">[1861]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">16</container>
</did>
<scopecontent id="aspace_37547c048f315af5b84ff2b8b9a7a09b">
<head>Scope and Contents</head>
<p>Sent a drawing for Dr. Magoon.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386798"
id="ref50"
level="subseries">
<did>
<unittitle>DE LA MOTTE, PHILIP H.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386799"
id="ref51"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Kings College, London</unittitle>
<unitdatestructured altrender="1861 Oct 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-10-10">1861 Oct 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">17</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386800"
id="ref52"
level="subseries">
<did>
<unittitle>DOO, GEORGE T., 1800-1886</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386801"
id="ref53"
level="file">
<did>
<unittitle>Memorandum of draft resolution by the Associated Society of Engravers, [London]</unittitle>
<unitdatestructured altrender="1827 Jan 15" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1827-01-15">1827 Jan 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">18</container>
</did>
<scopecontent id="aspace_4e929075b31e092e4371e06bf9570887">
<head>Scope and Contents</head>
<p>Meeting at John Le Keux's.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386802"
id="ref55"
level="subseries">
<did>
<unittitle>DUNCAN, EDWARD, 1804-1882</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386803"
id="ref56"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Mornington Place</unittitle>
<unitdatestructured altrender="1846 Mar 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1846-03-06">1846 Mar 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">19</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386804"
id="ref57"
level="subseries">
<did>
<unittitle>DUNCOMBE, G.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386805"
id="ref58"
level="file">
<did>
<unittitle>Memorandum to J. H. Le Keux from the Board of Trade</unittitle>
<unitdatestructured altrender="1855 Feb 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1855-02-02">1855 Feb 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">20</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386806"
id="ref59"
level="subseries">
<did>
<unittitle>FINDEN, WILLIAM, 1787-1852</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386807"
id="ref60"
level="file">
<did>
<unittitle>ALS to Henry Le Keux, London</unittitle>
<unitdatestructured altrender="1831 May 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831-05-01">1831 May 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">21</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386808"
id="ref61"
level="subseries">
<did>
<unittitle>FRASER, JAMES, D. 1841</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386809"
id="ref62"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Regent Street</unittitle>
<unitdatestructured altrender="1839 Dec 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1839-12-04">1839 Dec 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">22</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386810"
id="ref63"
level="subseries">
<did>
<unittitle>GOODALL, EDWARD, 1795-1870</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386811"
id="ref64"
level="file">
<did>
<unittitle>ALS to John Le Keux, Mornington Crescent</unittitle>
<unitdatestructured altrender="1845 May 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845-05-13">1845 May 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">23</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386812"
id="ref65"
level="subseries">
<did>
<unittitle>GORHAM, GEORGE, CORNELIUS, 1787-1857</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386813"
id="ref66"
level="file">
<did>
<unittitle>2 ALS and 2 notes, unsigned, to J. H. Le Keux, Brampford Speke</unittitle>
<unitdatestructured altrender="1856-57" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1856">1856</fromdate>
<todate standarddate="1857">1857</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">24</container>
</did>
<scopecontent id="aspace_39e545e90a6a811a8ed2f35f55d2ef0a">
<head>Scope and Contents</head>
<p>Illustrations for Reformation Gleanings [?].</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386814"
id="ref68"
level="subseries">
<did>
<unittitle>GREENWELL, DORA, 1821-1882</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386815"
id="ref69"
level="file">
<did>
<unittitle>ALS to Mrs. J. H. Le Keux, [n.p.]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.y.] Dec 29</unitdate>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">25</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386816"
id="ref70"
level="subseries">
<did>
<unittitle>GUEST, EDWIN, 1800-1880</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386817"
id="ref71"
level="file">
<did>
<unittitle>AL to J. H. Le Keux, Sandford Park</unittitle>
<unitdatestructured altrender="1861 Aug 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-08-19">1861 Aug 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">26</container>
</did>
<scopecontent id="aspace_0eafec8a1a770dd1b178abd1db5df2aa">
<head>Scope and Contents</head>
<p>Regarding map received from Mr. C. C. Babington.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/386818"
id="ref73"
level="file">
<did>
<unittitle>2 ALS to J. H. Le Keux, Oxon</unittitle>
<unitdatestructured altrender="1862 Sep-Dec" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1862-09">1862 September</fromdate>
<todate standarddate="1862-12">1862 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">27</container>
</did>
<scopecontent id="aspace_99fd9bcaf0c8ac16f790bd7bd43373ed">
<head>Scope and Contents</head>
<p>Map of western England.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386819"
id="ref75"
level="subseries">
<did>
<unittitle>HARPER, THOMAS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386820"
id="ref76"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Camden Rd., N. W.</unittitle>
<unitdatestructured altrender="1862 Dec 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1862-12-13">1862 Dec 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">28</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386821"
id="ref77"
level="subseries">
<did>
<unittitle>HEATON, CHARLES WILSON, 1817-1881</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386822"
id="ref78"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Jesus College, Oxford</unittitle>
<unitdatestructured altrender="1862 Dec 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1862-12-04">1862 Dec 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">29</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386823"
id="ref79"
level="subseries">
<did>
<unittitle>HOWELL, JOHN, 1788-1863</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386824"
id="ref80"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, [n.p.]</unittitle>
<unitdatestructured altrender="1855 Aug 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1855-08-03">1855 Aug 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref80_c2" localtype="folder" parent="aspace_ref80_c1">30</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386825"
id="ref81"
level="subseries">
<did>
<unittitle>HUGO, THOMAS, 1820-1876</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/386826"
id="ref82"
level="file">
<did>
<unittitle>ALS to J. H. Le Keux, Bishopsgate St. Within</unittitle>
<unitdatestructured altrender="1855 Feb 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1855-02-19">1855 Feb 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38453 /locations/4051"
containerid="39002099370539"
id="aspace_ref82_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref82_c2" localtype="folder" parent="aspace_ref82_c1">31</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/386827"
id="ref83"
level="subseries">
<did>
<unittitle>JONES, WILLIAM BASIL TICKELL, BP. OF</unittitle>
</did>
<scopecontent id="aspace_1e0a6d4408f69d79dc6fe66395a3dd05">
<head>Scope and Contents</head>
<p>[ST. DAVIDS, 1822-1897]</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/386828"
id="ref84"
level="file">
<did>