-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1021.xml
4697 lines (4697 loc) · 311 KB
/
1021.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.osbmss">beinecke.osbmss</recordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Manuscripts Bound in Printed Books in the Osborn Collection
</titleproper>
<titleproper localtype="filing">Osborn Collection, Manuscripts Bound in Printed Books in the</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>February 1995</date>
<num>OSB MSS</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., does not have a MARC record in Yale's ILS.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: fpe 3, fpe 8</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>2024-11-28T00:19:22-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday November 28, 2024 at 00:19</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1021" level="collection">
<did>
<unittitle>Manuscripts Bound in Printed Books in the Osborn Collection</unittitle>
<unitid>OSB MSS</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdesc/>
<physdesc localtype="container_summary">Ongoing</physdesc>
<unitdatestructured altrender="18th - 20th century"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1719">1719</fromdate>
<todate standarddate="1929">1929</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_733b35af89da99c8437fb3a8a7143692">This list contains descriptions of and locator information for single manuscripts bound with books in the Osborn Collection.</abstract>
<physdesc id="aspace_6b6c7c8bb54fbcd9942310777d13caa0">Total Extent: ongoing</physdesc>
</did>
<acqinfo id="aspace_8ae4f3cac09b8ac4db4021671e7f4874">
<head>Immediate Source of Acquisition</head>
<p>Provenance varies with the volume.</p>
</acqinfo>
<userestrict id="aspace_9166013cb51f8de0f658d6065f99ddfe">
<head>Conditions Governing Use</head>
<p>The Manuscripts Bound in Printed Books in the Osborn Collection are 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_d9ccac3c13e4486c3cfb289901cf16de">
<head>Preferred Citation</head>
<p>Manuscripts Bound in Printed Books in the Osborn Collection. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_b501ec9d9112e4e96c3dc9a0ddd05c36">
<head>Conditions Governing Access</head>
<p>The volumes are available for research.</p>
</accessrestrict>
<scopecontent id="aspace_eb4823e57aa1967da8ef704f1b55f3d0">
<head>Scope and Contents</head>
<p>This list contains descriptions of and locator information for single manuscripts bound with books in the Osborn Collection. The items are listed in alphabetical order by author. The shelf mark and volume number for each item is noted beside the descriptive entry.</p>
</scopecontent>
<dsc>
<c altrender="/repositories/11/archival_objects/373206"
id="ref8"
level="series">
<did>
<unittitle>Documents</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/373207"
id="ref9"
level="file">
<did>
<unittitle>Adams, Joseph Quincy, 1881-1946 ALS to Walter Wilson Greg, Cornell U, Ithaca, NY</unittitle>
<unitdatestructured altrender="1929 Aug 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929-08-10">1929 Aug 10</datesingle>
</unitdatestructured>
<physloc id="aspace_3b859dd52d1d7de431a54db28ce239c2">Stored in: <ref href="http://hdl.handle.net/10079/bibid/599068">Osborn fpe12</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_2175ef54fddfdb03bf25847268b0c9d4">
<head>Scope and Contents</head>
<p>2 p. ; 27 x 20 cm. <lb/> Thanks for review of Tannenbaum's book; <lb/> gives description of Tannenbaum's <lb/> temper and poor receptivity to <lb/> criticism.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373208"
id="ref11"
level="file">
<did>
<unittitle>Alexander, Peter, 1893- ALS to Walter Wilson Greg, The University, Glasgow</unittitle>
<unitdatestructured altrender="1929 Sep 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929-09-18">1929 Sep 18</datesingle>
</unitdatestructured>
<physloc id="aspace_8118a1faa3bed3ba60fdcd9afe23b055">Stored in: <ref href="http://hdl.handle.net/10079/bibid/599048">Osborn pe213</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_0cb89c8c9089e42c9e5af0682c03b87c">
<head>Scope and Contents</head>
<p>1 p. ; 18 x 12 cm. <lb/> Thanks for loan of Tucker Brooke's <lb/> paper on <title localtype="simple" render="italic">
<part>Henry VI</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373209"
id="ref13"
level="file">
<did>
<unittitle>Alexander, Peter Christmas card, [recipient unknown]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_779b033bb2103dc50a7024105b191391">Stored in: <ref href="http://hdl.handle.net/10079/bibid/2762843">Osborn pe291</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_a53d823e9393a2551515d7608168e74e">
<head>Scope and Contents</head>
<p>1 p. ; 18 x 13 cm. <lb/> [Some textual notes concerning <title localtype="simple" render="italic">
<part>Richard II</part>
</title> on reverse.]</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373210"
id="ref15"
level="file">
<did>
<unittitle>Allen, Heather LS to Alvaro F. V. Ribeiro</unittitle>
<unitdatestructured altrender="1980 May 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980-05-06">1980 May 6</datesingle>
</unitdatestructured>
<physloc id="aspace_9fea6ca12fe40480d5554ebb5528ab50">Stored in: <ref href="http://hdl.handle.net/10079/bibid/584590">Osborn fpe13</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_e92b0d59edb459e73fe10604c1b9d6a6">
<head>Scope and Contents</head>
<p>1 p. ; 30 x 21 cm. [photostatic copy] <lb/> Grants exception from 100,000-word <lb/> limit on Oxford D.Phil. thesis; <lb/> asks for selections that the <lb/> examiners may read to avoid reading <lb/> the work in its entirety.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373211"
id="ref17"
level="file">
<did>
<unittitle>Ames, Joseph, 1689-1759 ALS to Morris Johnson</unittitle>
<unitdatestructured altrender="1740 Jun 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1740-06-20">1740 Jun 20</datesingle>
</unitdatestructured>
<physloc id="aspace_e5b03ea692382a538deb1246d94254eb">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3163705">Osborn fpc27</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_37d4791a365702e579f8b7639f2e830f">
<head>Scope and Contents</head>
<p>2 p. ; 28 x 23 cm. <lb/> Thanks for notes on his list of English <lb/> printers before 1600; comments on his <lb/> current interest in cataloging <lb/> printed works.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373212"
id="ref19"
level="file">
<did>
<unittitle>Ault, Norman, 1880-1950 ALS to Percy Simpson, Oxford</unittitle>
<unitdatestructured altrender="1920 Oct 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920-10-22">1920 Oct 22</datesingle>
</unitdatestructured>
<physloc id="aspace_993b22122959c7b9630598d4c051b4fe">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598836">Osborn pe378</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_4766f0447c8651e05603dac8d27b7163">
<head>Scope and Contents</head>
<p>1 p. ; 18 x 11 cm. <lb/> Presents book.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373213"
id="ref21"
level="file">
<did>
<unittitle>Austin, Alfred, 1835-1913 2 ALS to John Charles Earle, Ashford, Kent</unittitle>
<unitdatestructured altrender="1873 Apr 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1873-04-17">1873 Apr 17</datesingle>
</unitdatestructured>
<physloc id="aspace_afa4f976e98b75b1eedab30ff7ae6807">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3146088">Osborn pd139</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_3d5d87e8d27e3acd27c789c6ec282df0">
<head>Scope and Contents</head>
<p>6p. ; 18 x 11 cm. <lb/> About the reception of Madonna's <lb/> Child; no reviews; Earle to review.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373214"
id="ref23"
level="file">
<did>
<unittitle>Baldwin, Thomas Whitfield, 1890- LS to Walter Wilson Greg, London</unittitle>
<unitdatestructured altrender="1931 Oct 31" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1931-10-31">1931 Oct 31</datesingle>
</unitdatestructured>
<physloc id="aspace_30d34c6a6e59c8d65b13c579e6738025">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598591">Osborn pe231</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_d9d18e56bfe39c59a9af5c38dc763d33">
<head>Scope and Contents</head>
<p>1 p. ; 15 x 21 cm. <lb/> Reports that Prof. Hillebrand, after <lb/> examining mss. of Percy plays, has <lb/> determined that the stage directions <lb/> did not show "actual acting <lb/> conditions."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373215"
id="ref25"
level="file">
<did>
<unittitle>Bartholomew, Robert G. LS to Heathcote William Garrod, Edinburgh</unittitle>
<unitdatestructured altrender="1957 Dec 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1957-12-18">1957 Dec 18</datesingle>
</unitdatestructured>
<physloc id="aspace_01b04ee65f6a92d0071e1800252683c5">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3148377">Osborn pe49 v1</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_655d7a2aee17eb63da4bb400952394db">
<head>Scope and Contents</head>
<p>1 p. ; 26 x 21 cm. <lb/> Confirms existence of two places in <lb/> Scotland, TOPER NA FUOSICH and <lb/> DALLUNGART. (encloses hand tracing <lb/> of DALANLUNCART from John Thompson's <lb/> 1832 <title localtype="simple" render="italic">
<part>Atlas of Scotland</part>
</title>.)</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373216"
id="ref27"
level="file">
<did>
<unittitle>Bartlett, Henrietta Collins, 1873-1963 ALS to Walter Wilson Greg, Old Lyme, CT</unittitle>
<unitdatestructured altrender="1946 Sep 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1946-09-17">1946 Sep 17</datesingle>
</unitdatestructured>
<physloc id="aspace_34447b21631fe5e477fd742ba3208479">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598612">Osborn pe234</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_1ac39e016efa3dc142d21ea1f5d1dbb3">
<head>Scope and Contents</head>
<p>2 p. ; 26 x 18 cm. <lb/> Expresses pleasure that Greg will be <lb/> able to continue bibliographic <lb/> project.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373217"
id="ref29"
level="file">
<did>
<unittitle>Bayfield, Matthew Albert, 1852-1922 ALS to Percy Simpson, Hertingfordbury, Hertford</unittitle>
<unitdatestructured altrender="1917 May 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1917-05-20">1917 May 20</datesingle>
</unitdatestructured>
<physdesc id="aspace_5afacee36bfddeb008043bc1487a68a0">4 p. ; 20 x 13 cm.</physdesc>
<physloc id="aspace_69818116c8c95439cbf6ba11b9325514">Stored in: <ref href="http://hdl.handle.net/10079/bibid/586477">Osborn pe404</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_03d3537695330b9314ef2b348dc33359">
<head>Scope and Contents</head>
<p>Seeks correction of Ben Johnson's spellings; talks about forthcoming book, <title render="italic">
<part>A Study of Shakespeare's Versification</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373220"
id="ref32"
level="file">
<did>
<unittitle>Bayfield, Matthew Albert, 1852-1922 ALS to Percy Simpson, Hertingfordbury, Hertford</unittitle>
<unitdatestructured altrender="1922 Mar 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1922-03-25">1922 Mar 25</datesingle>
</unitdatestructured>
<physdesc id="aspace_094246f78a5283f5ea048e8c0cf004ef">2 p. ; 26 x 20 cm.</physdesc>
<physloc id="aspace_12ee7261c1f491584b8b142f869a7ad2">Stored in: <ref href="http://hdl.handle.net/10079/bibid/586477">Osborn pe404</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_63d36f46572f3ec65079a2387fcb0a08">
<head>Scope and Contents</head>
<p>Offers notes; discusses orthography in Milton and Spencer; mentions cancer.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373223"
id="ref35"
level="file">
<did>
<unittitle>Bentley, Gerald Eades, 1901- LS to Walter Wilson Greg, U of Chicago, Chicago, IL</unittitle>
<unitdatestructured altrender="1941 Sep 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1941-09-01">1941 Sep 1</datesingle>
</unitdatestructured>
<physloc id="aspace_132a0321f519189a77517834b6eb60b5">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598607">Osborn pe324 v1</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_03904eff45885801ebcc8db3ca1067b5">
<head>Scope and Contents</head>
<p>1 p. ; 26 x 21 cm. <lb/> Offers help with Greg's bibliographic <lb/> work.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373224"
id="ref37"
level="file">
<did>
<unittitle>Bliss, Philip, 1787-1857 Letter in 3rd person to Henry Wellesley, St. John's College</unittitle>
<unitdatestructured altrender="1819 Sep 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1819-09-07">1819 Sep 7</datesingle>
</unitdatestructured>
<physloc id="aspace_1cce1a9164b3036df9d7df061d0732a8">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3124808">Osborn pc29</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_14d5215dcb3c95d4773374caca1878c2">
<head>Scope and Contents</head>
<p>1 p. ; 11 x 10 cm. <lb/> Returns the book and apologizes for <lb/> delay.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373225"
id="ref39"
level="file">
<did>
<unittitle>Bone, Muirhead, 1876-1953 ALS to Percy Simpson, Oxford</unittitle>
<unitdatestructured altrender="1944 Jun 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1944-06-25">1944 Jun 25</datesingle>
</unitdatestructured>
<physloc id="aspace_d0215d2403f4115dcdbf1cf2135b9f81">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598832">Osborn pe385</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_5f7d936206f4a8a51b933826f7133ce5">
<head>Scope and Contents</head>
<p>2 p. ; 11 x 9 cm. <lb/> Thanks for kind letter; presents book <lb/> by his late son, Gavin.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373226"
id="ref41"
level="file">
<did>
<unittitle>Bradley, Henry, 1845-1923 ALS to Walter Wilson Greg, Oxford</unittitle>
<unitdatestructured altrender="1910 Aug 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1910-08-29">1910 Aug 29</datesingle>
</unitdatestructured>
<physloc id="aspace_5c7c78ae7e349804ee547ded35d7fe76">Stored in: <ref href="http://hdl.handle.net/10079/bibid/599045">Osborn pd187</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_6f0d4a47c2654ad9673f61b4d17056a5">
<head>Scope and Contents</head>
<p>1 p. ; 18 x 11 cm. <lb/> Discusses orthography of 15th c. <lb/> English mss.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373227"
id="ref43"
level="file">
<did>
<unittitle>[Bradley, Henry] AL to Walter Wilson Greg, Oxford</unittitle>
<unitdatestructured altrender="1910 Nov 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1910-11-12">1910 Nov 12</datesingle>
</unitdatestructured>
<physloc id="aspace_4dc5734de45959a9791fcc8299e718ba">Stored in: <ref href="http://hdl.handle.net/10079/bibid/599045">Osborn pd187</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_49c11c9b06177aac9a80d4312faee38d">
<head>Scope and Contents</head>
<p>1 p. ; 9 x 14 cm. <lb/> Refutes theory that "x" represents <lb/> "sh" in old English mss.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373228"
id="ref45"
level="file">
<did>
<unittitle>Briggs, Grace M. ALS to P. J. Dobell, Bodleian Library, Oxford</unittitle>
<unitdatestructured altrender="1946 May 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1946-05-13">1946 May 13</datesingle>
</unitdatestructured>
<physloc id="aspace_0db54a2e54708580e0958e34a3c7bf42">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3164676">Osborn fpc29</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_8110506a569d674f882227e9f192857f">
<head>Scope and Contents</head>
<p>2 p. ; 23 x 18 cm. <lb/> Returning <title localtype="simple" render="italic">
<part>Advertisements from</part>
<part> </part>
<part>Parnassus</part>
</title> (London, 1674), since the <lb/> ms. notes cannot be authenticated; <lb/> the Bodleian therefore will not <lb/> purchase the book.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373229"
id="ref47"
level="file">
<did>
<unittitle>Broadbent, Henry ALS to Walter Wilson Greg, Eton</unittitle>
<unitdatestructured altrender="1923 Feb 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923-02-06">1923 Feb 6</datesingle>
</unitdatestructured>
<physloc id="aspace_7d08b8720423e4d838cccf90687fba2e">Stored in: <ref href="http://hdl.handle.net/10079/bibid/600268">Osborn pe242</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_886b35d144b4adbe9bc5f0f75e33c559">
<head>Scope and Contents</head>
<p>4 p. ; 15 x 10 cm. <lb/> Offers corrected reading of second <lb/> folio copies in the Eton library.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373230"
id="ref49"
level="file">
<did>
<unittitle>Broadbent, Henry ALS to Walter Wilson Greg, Eton</unittitle>
<unitdatestructured altrender="1927 Aug 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927-08-03">1927 Aug 3</datesingle>
</unitdatestructured>
<physloc id="aspace_68962ba585c1526b5fc0094c787c7f72">Stored in: <ref href="http://hdl.handle.net/10079/bibid/600268">Osborn pe242</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_d8e36641d25312223c9faa3d5a297aa1">
<head>Scope and Contents</head>
<p>4 p. ; 15 x 10 cm. <lb/> Encloses another letter for Greg's <lb/> amusement; gives corrections in <lb/> the order of the second folio.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373231"
id="ref51"
level="file">
<did>
<unittitle>Brooke, Charles Frederick Tucker, 1883- 1946 ALS to Walter Wilson Greg, Yale U, New Haven, CT</unittitle>
<unitdatestructured altrender="1933 Oct 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1933-10-27">1933 Oct 27</datesingle>
</unitdatestructured>
<physloc id="aspace_e6b68e824ddcb7730cdf42d69db25cac">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598592">Osborn pe268</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_af2e7d906dac46551484880ce926fe32">
<head>Scope and Contents</head>
<p>1 p. ; 28 x 22 cm. <lb/> Apologizes for late reply; cannot <lb/> find source for attribution of <title localtype="simple" render="italic">
<part>Mucedorus</part>
</title> to Collier in 1842.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373232"
id="ref53"
level="file">
<did>
<unittitle>Broome, William, 1689-1745 ALS to [unknown recipient], n.p.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_067714e7bb4018bdec0da892983a14ae">Stored in: <ref href="http://hdl.handle.net/10079/bibid/42454">Osborn pc215</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_f654bd7f4adb24c58d5ebd2fb939b176">
<head>Scope and Contents</head>
<p>2 p. ; 19 x 12 cm. <lb/> Expresses sorrow at Fenton's death; <lb/> encloses an epitaph by Pope.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373233"
id="ref55"
level="file">
<did>
<unittitle>Brown, Sally M. LS to C. T. Campbell, British Library, London</unittitle>
<unitdatestructured altrender="1978 May 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1978-05-12">1978 May 12</datesingle>
</unitdatestructured>
<physloc id="aspace_bb0462683e19423899d43b581697a7a3">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3271740">Osborn pd235</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_8671396961fa093f1163616865288c3f">
<head>Scope and Contents</head>
<p>1 p. ; 20 x 21 cm. <lb/> Confirms that a photostat of Edward <lb/> Fitzgerald's signature is authentic.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373234"
id="ref57"
level="file">
<did>
<unittitle>Buchanan, Robert Williams, 1841-1901 ALS to Walter Hamilton, Boulogne-sur-Mer, France</unittitle>
<unitdatestructured altrender="1882 Jul 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1882-07-08">1882 Jul 8</datesingle>
</unitdatestructured>
<physloc id="aspace_cefbf6d85a15eb4c6985e8b0dc7ef845">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3146162">Osborn pd142</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_d29edb58e22efe175c1739cd9e878b05">
<head>Scope and Contents</head>
<p>2 p. ; 18 x 11 cm. <lb/> Responds to Hamilton's prospectus for <lb/> a pamphlet entitled "Aesthetic <lb/> Movement."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373235"
id="ref59"
level="file">
<did>
<unittitle>Buchanan, Robert Williams, 1841-1901 ALS to Walter Hamilton, Boulogne-sur-Mer, France</unittitle>
<unitdatestructured altrender="1882 Jul 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1882-07-10">1882 Jul 10</datesingle>
</unitdatestructured>
<physloc id="aspace_7d0bd867f3e09ec15d62f9c0fe369f4d">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3146162">Osborn pd142</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_5108cf2f03ab54564239da44518ac584">
<head>Scope and Contents</head>
<p>3 p. ; 18 x 11 cm. <lb/> Responds to Hamilton's prospectus for <lb/> a pamphlet entitled "Aesthetic <lb/> Movement."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373236"
id="ref61"
level="file">
<did>
<unittitle>Bullen, Arthur Henry, 1857-1920 ALS to George Thorn-Drury, Medina Pl, London</unittitle>
<unitdatestructured altrender="1901 Mar 31" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1901-03-31">1901 Mar 31</datesingle>
</unitdatestructured>
<physloc id="aspace_00102c47f7bc5136130b38258e933340">Stored in: <ref href="http://hdl.handle.net/10079/bibid/586429">Osborn pe401 v3</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_cd8f17eb6d41dff56a004efb97e7abfa">
<head>Scope and Contents</head>
<p>2 p. ; 15 x 10 cm.; <lb/> Sends sheets (enclosures wanting) <lb/> of Beaumont & Fletcher; goes to <lb/> press with Walker soon; planning <lb/> to reprint Marvell, Donne, <lb/> Blake; new office in Charing Cross.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373237"
id="ref63"
level="file">
<did>
<unittitle>Burney, Charles, 1757-1817 ALS to William Wyndham Grenville, Baron Grenville, Greenwich</unittitle>
<unitdatestructured altrender="1810 Feb 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1810-02-03">1810 Feb 3</datesingle>
</unitdatestructured>
<physloc id="aspace_9b9a18a0780c21e47d876ccb2dfe6c8c">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3141666">Osborn fpd5</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_2eeb5412dab5fa02830dbad05cbabe64">
<head>Scope and Contents</head>
<p>2 p. ; 23 x 19 cm. <lb/> Offers copy of <title localtype="simple" render="italic">
<part>Bentley's Letters</part>
</title>, <lb/> edited by Burney.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373238"
id="ref65"
level="file">
<did>
<unittitle>Cadell, Thomas, 1773-1836, and William Davies, d. 1820 Letter in third person to Hannah More [Strand, London]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<physloc id="aspace_792636e2edb406270c80d1ae3dfdd964">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3446808">Osborn pd248 v1</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_a7deb2e152013e6ebd0dacec15e1bc1d">
<head>Scope and Contents</head>
<p>1 p. ; 23 x 19 cm. <lb/> Amount due is £676/14/4; eight <lb/> volumes will be ready in Feb.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373239"
id="ref67"
level="file">
<did>
<unittitle>Case, Robert Hope, 1857- ALS to Percy Simpson, Liverpool</unittitle>
<unitdatestructured altrender="1932 Feb 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1932-02-29">1932 Feb 29</datesingle>
</unitdatestructured>
<physloc id="aspace_732389c7616432f6d5e8515f7c49c757">Stored in: <ref href="http://hdl.handle.net/10079/bibid/599244">Osborn pe383</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_1f84a35c4c748167c3f030bdf0e99c26">
<head>Scope and Contents</head>
<p>2 p. ; 18 x 11 cm. <lb/> Discusses pseudonymity; hopes to <lb/> visit.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373240"
id="ref69"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to Heathcote William Garrod, Beer, Devon</unittitle>
<unitdatestructured altrender="1909 Oct 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1909-10-05">1909 Oct 5</datesingle>
</unitdatestructured>
<physloc id="aspace_f6b092cdf7a964b44d0b728481b408e9">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3148354">Osborn pe44</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_1667fa3f306076428a118399ceac0c34">
<head>Scope and Contents</head>
<p>2 p. ; 18 x 12 cm. <lb/> Disputes passage in Garrod's book <lb/> on Keats.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373241"
id="ref71"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to Heathcote William Garrod, Beer, Devon</unittitle>
<unitdatestructured altrender="1947 Apr 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1947-04-10">1947 Apr 10</datesingle>
</unitdatestructured>
<physloc id="aspace_6b59614f18893ca1dc478f04f9d6c07e">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3148354">Osborn pe44</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_b5dbe62a759de2d42d29e1b6c8676f96">
<head>Scope and Contents</head>
<p>2 p. ; 23 x 18 cm. <lb/> Asks about location of the "city" <lb/> mentioned in preamble of the <title localtype="simple" render="italic">
<part>Prelude</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373242"
id="ref73"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to Heathcote William Garrod, Beer, Devon</unittitle>
<unitdatestructured altrender="1947 Apr 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1947-04-13">1947 Apr 13</datesingle>
</unitdatestructured>
<physloc id="aspace_ae99eec11e91009dc452d4549d2d51fb">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3148354">Osborn pe44</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_f7b2f6ede821d474cbd5e674a91943ea">
<head>Scope and Contents</head>
<p>2 p. ; 23 x 18 cm. <lb/> Seeks information about groupings from <lb/> 1815 edition of Wordsworth's poems.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373243"
id="ref75"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to Heathcote William Garrod, Beer, Devon</unittitle>
<unitdatestructured altrender="1947 Sep 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1947-09-08">1947 Sep 8</datesingle>
</unitdatestructured>
<physloc id="aspace_7f7464c3d52e71985a0d9df8e885ecfe">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3148354">Osborn pe44</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_36924673d8f66aaeaf806fcc6f56f583">
<head>Scope and Contents</head>
<p>4 p. ; 18 x 13 cm. <lb/> Concerns date of "Prospectus"; asserts <lb/> that "the city" in the preamble is <lb/> London.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373244"
id="ref77"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to Heathcote William Garrod, Beer, Devon</unittitle>
<unitdatestructured altrender="1947 Sep 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1947-09-11">1947 Sep 11</datesingle>
</unitdatestructured>
<physloc id="aspace_0281771ce63b6d5dcc772c7092e64b4a">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3148354">Osborn pe44</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_52fda969f9f249fd054c718172d1ccb0">
<head>Scope and Contents</head>
<p>2 p. ; 18 x 13 cm. <lb/> Concerns dating of several Wordsworth <lb/> poems.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373245"
id="ref79"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to Heathcote William Garrod, Beer, Devon</unittitle>
<unitdatestructured altrender="1947 Sep 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1947-09-20">1947 Sep 20</datesingle>
</unitdatestructured>
<physloc id="aspace_f1267467cf87b2b746c7f73e628b8695">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3148354">Osborn pe44</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_ec03df4568608dcfb459c83e227bf077">
<head>Scope and Contents</head>
<p>2 p. ; 18 x 13 cm. <lb/> Concerns dating of several Wordsworth <lb/> poems.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373246"
id="ref81"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to Walter Wilson Greg, Gerrard's Cross</unittitle>
<unitdatestructured altrender="1910 Jan 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1910-01-02">1910 Jan 2</datesingle>
</unitdatestructured>
<physloc id="aspace_c9e14a4daa682ba804787a94b6388dbc">Stored in: <ref href="http://hdl.handle.net/10079/bibid/584708">Osborn pd192 v1c2</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_7bec825ce5958770ff8fc28af104d41a">
<head>Scope and Contents</head>
<p>2 p. ; 18 x 11 cm. <lb/> Tells of a 1581 anonymous work that <lb/> deals with theater. [There is also <lb/> a ms. note, in Greg's hand, <lb/> presumably to Percy Simpson.]</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373247"
id="ref83"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to Walter Wilson Greg, Dorset</unittitle>
<unitdatestructured altrender="1929 Sep 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929-09-17">1929 Sep 17</datesingle>
</unitdatestructured>
<physloc id="aspace_3d27ba500794b418894f8181eddc608c">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598591">Osborn pe231</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_0e35f8bf89a96b0f236cd6699854ac32">
<head>Scope and Contents</head>
<p>1 p. ; 23 x 18 cm. <lb/> Disagrees with Baldwin's views on <lb/> Jones's income; notes that <lb/> Tannenbaum will write a "scathing" <lb/> reply to Greg's review.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373248"
id="ref85"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to Walter Wilson Greg, Oxford</unittitle>
<unitdatestructured altrender="1938 Jan 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938-01-16">1938 Jan 16</datesingle>
</unitdatestructured>
<physloc id="aspace_069a396a6331952e6cc2a0835334191a">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598321">Osborn pd188</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_0d9ee2e50e7388b3de900cb2f52663ab">
<head>Scope and Contents</head>
<p>4 p. ; 18 x 12 cm. <lb/> Proposes printing Canterbury <lb/> Resurrection text; suggests that <lb/> Towneley plays belong to Wakefield.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373249"
id="ref87"
level="file">
<did>
<unittitle>Chambers, Edmund Kerchever, 1866-1954 ALS to [unknown recipient], Eynsham</unittitle>
<unitdatestructured altrender="1933 Jul 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1933-07-19">1933 Jul 19</datesingle>
</unitdatestructured>
<physloc id="aspace_a871f0499e5ad439e97d49e4ecb40b95">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598332">Osborn pe390</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_e3cb7ea44113ef4b428720b94d4560bc">
<head>Scope and Contents</head>
<p>1 p. ; 14 x 9 cm. <lb/> Corrects a student's reading of <title localtype="simple" render="italic">
<part>Faustus</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373250"
id="ref89"
level="file">
<did>
<unittitle>Chambers, Raymond Wilson, 1874-1942. ALS to James M. Osborn, Oxford</unittitle>
<unitdatestructured altrender="1936 Jun 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1936-06-26">1936 Jun 26</datesingle>
</unitdatestructured>
<physloc id="aspace_5a79729472dba64f0aeb4d9e4a14f9e3">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3149222">Osborn pe90</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_e8a8b0d47e4f2146832019c3be2b90f3">
<head>Scope and Contents</head>
<p>1 p. ; 26 x 21 cm. <lb/> Presents book.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373252"
id="ref92"
level="file">
<did>
<unittitle>Chambers, Raymond Wilson, 1874-1942 ALS to Walter Wilson Greg, Southgate</unittitle>
<unitdatestructured altrender="1937 Apr 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937-04-13">1937 Apr 13</datesingle>
</unitdatestructured>
<physloc id="aspace_2bb99c4a1a7108e3f3e9ed82c4f99799">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598305">Osborn pe226</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_8ac8b64acaabe09e95f148ceedbbe052">
<head>Scope and Contents</head>
<p>2 p. ; 9 x 11 cm. <lb/> Thanks for taking chair at Chambers' <lb/> upcoming lecture.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373253"
id="ref94"
level="file">
<did>
<unittitle>Chaplin, Lord. ALS to T. Wright, Holles St.</unittitle>
<unitdatestructured altrender="[1833]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1833">[1833]</datesingle>
</unitdatestructured>
<physloc id="aspace_536a1541cc09759db3d6fbc4bf646d3c">Stored in: <ref href="http://hdl.handle.net/10079/bibid/14103">Osborn pd69</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_c0904f4dde8fb81ca9e13c1c3a77803a">
<head>Scope and Contents</head>
<p>1 p. ; 22 x 19 cm. <lb/> Reports on health of "our poor <lb/> invalid." <lb/> [Ms. notes in Wright's hand on <lb/> reverse.]</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373255"
id="ref97"
level="file">
<did>
<unittitle>Chapman, Guy LS to Percy Simpson, Whitby, Yorkshire</unittitle>
<unitdatestructured altrender="1929 Dec 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929-12-10">1929 Dec 10</datesingle>
</unitdatestructured>
<physloc id="aspace_b9e98fd8f5a63772a9013f14589eb994">Stored in: <ref href="http://hdl.handle.net/10079/bibid/2411424">Osborn pe406</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_2c7297a50ebe801878d56a7b37a9ea83">
<head>Scope and Contents</head>
<p>1 p. ; 25 x 20 cm. <lb/> Will write to <title localtype="simple" render="italic">
<part>The Times</part>
</title> to correct <lb/> mistake in announcement of <title localtype="simple" render="italic">
<part>The</part>
<part> </part>
<part>Masque</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373256"
id="ref99"
level="file">
<did>
<unittitle>Chapman, Guy LS to Percy Simpson, Whitby, Yorkshire</unittitle>
<unitdatestructured altrender="1930 Feb 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1930-02-04">1930 Feb 4</datesingle>
</unitdatestructured>
<physloc id="aspace_09d42070675b1b9cf2def9f4d34ef0f8">Stored in: <ref href="http://hdl.handle.net/10079/bibid/2411424">Osborn pe406</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_2972736361697ce713decef81baba5b0">
<head>Scope and Contents</head>
<p>1 p. ; 20 x 13 cm. <lb/> Thanks for help; book will be ready in <lb/> May; trying to find music of <lb/> Ferrabosco.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373257"
id="ref101"
level="file">
<did>
<unittitle>Clark, Arthur Melville, 1895- ALS to Percy Simpson, Edinburgh</unittitle>
<unitdatestructured altrender="1931 Jun 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1931-06-07">1931 Jun 7</datesingle>
</unitdatestructured>
<physloc id="aspace_76aa48d21540d98880ead71211a6e78d">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598308">Osborn pe381</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_30de0342e9381e1863a6809000508866">
<head>Scope and Contents</head>
<p>2 p. ; 20 x 13 cm. <lb/> Comments on several plays; discusses <lb/> sales of <title localtype="simple" render="italic">
<part>Thomas Heywood</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373258"
id="ref103"
level="file">
<did>
<unittitle>Clark, Elias ALS to William K. Wimsatt, Silliman Clg, Yale U, New Haven, CT</unittitle>
<unitdatestructured altrender="[1972] Sep 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1972-09-19">[1972] Sep 19</datesingle>
</unitdatestructured>
<physloc id="aspace_d15594572d6ba4d4eab0614bffb158d4">Stored in: <ref href="http://hdl.handle.net/10079/bibid/3149601">Osborn pe429</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_778d513b0d8890112fd3c28aef2b297d">
<head>Scope and Contents</head>
<p>2 p. ; 22 x 14 cm. <lb/> Thanks for giving chess talk.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373259"
id="ref105"
level="file">
<did>
<unittitle>Clarke, William Kemp Lowther, 1879-1968 ALS to Evelyn Mary Simpson, Chichester Cathedral, Chichester, Sussex</unittitle>
<unitdatestructured altrender="1946 Oct 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1946-10-17">1946 Oct 17</datesingle>
</unitdatestructured>
<physloc id="aspace_a50d20c3668e8ce52ffa02e0e0102ea5">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598785">Osborn pe398</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_64fcd76036d1ed27ebf349e95db8b829">
<head>Scope and Contents</head>
<p>2 p. ; 21 x 13 cm. <lb/> Responds on behalf of bishop of <lb/> Chichester; explains paucity of <lb/> Donne mss. in cathedral library.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373260"
id="ref107"
level="file">
<did>
<unittitle>Clay, Charles Travis, 1885-1978 ALS to Henrietta Tayler, House of Lords, London</unittitle>
<unitdatestructured altrender="1946 Jul 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1946-07-02">1946 Jul 2</datesingle>
</unitdatestructured>
<physloc id="aspace_3ae34d922295c2f8f6e5bc863d0b68be">Stored in: <ref href="http://hdl.handle.net/10079/bibid/586221">Osborn pe361</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_d70618f98e9722eb433a7063b5cab718">
<head>Scope and Contents</head>
<p>2 p. ; 19 x 12 cm. <lb/> Thanks for book.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373261"
id="ref109"
level="file">
<did>
<unittitle>Clayton, John R. ALS to Walter Begley, Fairfax Road</unittitle>
<unitdatestructured altrender="1903 Apr 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1903-04-03">1903 Apr 3</datesingle>
</unitdatestructured>
<physloc id="aspace_a176d72cf5f52a1539e2b2200ebd935d">Stored in: <ref href="http://hdl.handle.net/10079/bibid/599136">Osborn pe407</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_9ee0501a53176d43f0a006ab1f9138ed">
<head>Scope and Contents</head>
<p>3 p. ; 19 x 12 cm. <lb/> Surprised by citation of his work <lb/> without proper acknowledgment.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373262"
id="ref111"
level="file">
<did>
<unittitle>Cole, George Watson, 1850-1939 ALS to Percy Simpson, Pasadena, CA</unittitle>
<unitdatestructured altrender="1929 Feb 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929-02-16">1929 Feb 16</datesingle>
</unitdatestructured>
<physloc id="aspace_a7ea5dd1d801fdfd9b3066a730ed971c">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598775">Osborn pe394</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_a4dd7a045d4c749bd135ec7713474c7c">
<head>Scope and Contents</head>
<p>2 p. ; 26 x 20 cm. <lb/> Discusses variances in copies of <lb/> Jonson's <title localtype="simple" render="italic">
<part>Masque of the Gypsies</part>
</title>; <lb/> hopes to find uncancelled copy.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373263"
id="ref113"
level="file">
<did>
<unittitle>Cole, George Watson ALS to Percy Simpson, Waldorf Hotel, Aldwych, London</unittitle>
<unitdatestructured altrender="1929 Jul 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929-07-22">1929 Jul 22</datesingle>
</unitdatestructured>
<physloc id="aspace_c2679ba4d73eb0cdb5607737be55766f">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598775">Osborn pe394</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_b52c314d7a21fe794a2627b2337591f9">
<head>Scope and Contents</head>
<p>2 p. ; 18 x 11 cm. <lb/> Details discovery of previously unknown <lb/> copies of Jonson's translation of <lb/> Horace's <title localtype="simple" render="italic">
<part>Art of Poetry</part>
</title>; thanks for <lb/> hospitality.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373264"
id="ref115"
level="file">
<did>
<unittitle>Collingridge, J. R. ALS to Miss Byone, Public Records Office, [London]</unittitle>
<unitdatestructured altrender="1945 Sep 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1945-09-17">1945 Sep 17</datesingle>
</unitdatestructured>
<physloc id="aspace_2765207cee3759efaba50452dbd6dc2d">Stored in: <ref href="http://hdl.handle.net/10079/bibid/585376">Osborn pe244</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_143c66a1efd99be18c4f56a677eaa751">
<head>Scope and Contents</head>
<p>2 p. ; 11 x 18 cm. <lb/> Returns Greg's notes on Elizabethan <lb/> printers' patents; includes attached <lb/> notes on the patents taken by the <lb/> public records office [4 p. ; 33 x <lb/> 20 cm.].</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373265"
id="ref117"
level="file">
<did>
<unittitle>Crofton, Margaret ALS to C. H. Wilkinson, Brockenhurst, Hants.</unittitle>
<unitdatestructured altrender="1958 Nov 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1958-11-16">1958 Nov 16</datesingle>
</unitdatestructured>
<physloc id="aspace_610873101c62f60683b6a9b564f03dad">Stored in: <ref href="http://hdl.handle.net/10079/bibid/26456">Osborn pd157</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_6ec90cea60a460c93b5bd3dde9889b8e">
<head>Scope and Contents</head>
<p>2 p. ; 18 x 13 cm. <lb/> Thanks for loan of book.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373266"
id="ref119"
level="file">
<did>
<unittitle>Crow, John ALS to Walter Wilson Greg, King's College, London</unittitle>
<unitdatestructured altrender="1956 May 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1956-05-07">1956 May 7</datesingle>
</unitdatestructured>
<physloc id="aspace_21e4e979178ced12ab08897ab82fc39f">Stored in: <ref href="http://hdl.handle.net/10079/bibid/2762841">Osborn pe289</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_0227c8e4a82f7e9f8429eec5efefd299">
<head>Scope and Contents</head>
<p>2 p. ; 8 x 14 cm. <lb/> Provides correction to footnote in <lb/> Greg's bibliography; criticizes <lb/> M. W. Black.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373267"
id="ref121"
level="file">
<did>
<unittitle>Crow, John ALS to Walter Wilson Greg, King's College, London</unittitle>
<unitdatestructured altrender="1956 May 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1956-05-23">1956 May 23</datesingle>
</unitdatestructured>
<physloc id="aspace_39ec012b76ac807897c2c7553375a79a">Stored in: <ref href="http://hdl.handle.net/10079/bibid/598967">Osborn pe261</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_36a3cac7964ec6727721be219525cf4d">
<head>Scope and Contents</head>
<p>2 p. ; 20 x 17 cm. <lb/> Comments on textual variants in <title localtype="simple" render="italic">
<part>Richard II</part>
</title>; criticizes Matthew <lb/> Black, Fredson Bowers, and John <lb/> Dover Wilson</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/373268"
id="ref123"
level="file">
<did>
<unittitle>Cruickshank, A. H. ALS to Percy Simpson, n.p.</unittitle>
<unitdatestructured altrender="1921 Oct 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921-10-30">1921 Oct 30</datesingle>
</unitdatestructured>
<physloc id="aspace_cf795988dcffe25dbe3936fafb4e59d0">Stored in: <ref href="http://hdl.handle.net/10079/bibid/584708">Osborn pd192 v1c2</ref>. Request this material through Orbis, the library's online catalog.</physloc>
</did>
<scopecontent id="aspace_fc6b1fcf7d9ca69e2f1bffb5f6fb713e">
<head>Scope and Contents</head>
<p>3 p. ; 18 x 12 cm. <lb/> Concerns questions of Shakespearian <lb/> authorship of <title localtype="simple" render="italic">