-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1038.xml
2103 lines (2103 loc) · 119 KB
/
1038.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.wilson">beinecke.wilson</recordid>
<otherrecordid localtype="BIB">3476019</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Frank Percy Wilson Papers
</titleproper>
<titleproper localtype="filing">Wilson (Frank Percy) Papers</titleproper>
<author>by Hugh Kennedy and 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>1990</date>
<num>OSB MSS 157</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">3476019</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-27</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:04:50-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:04</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1038" level="collection">
<did>
<unittitle>Frank Percy Wilson Papers</unittitle>
<unitid>OSB MSS 157</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>13.13</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">28 boxes</physdesc>
<unitdatestructured altrender="1912-1961" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_5f2a36f1b2ee83029c1e3829fc1a50b7">The Frank Percy Wilson Papers contain correspondence, research files, and notes for articles and projected longer works, including an edition of <title localtype="simple" render="italic">
<part>Tabacco</part>
</title>; the British Academy biography of E. K. Chambers; and works on Elizabethan vocabulary and proverbs.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Wilson, F. P. (Frank Percy), 1889-1963</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_f61ae569b6f28f9389d09adc6560e5a6">
<head>Immediate Source of Acquisition</head>
<p>Purchased by James Marshall Osborn from Mrs. Frank Percy Wilson, 1963; bequest of James Marshall Osborn, 1976.</p>
</acqinfo>
<userestrict id="aspace_61317a71fbe0a55a4d8cede0019e63f7">
<head>Conditions Governing Use</head>
<p>The Frank Percy Wilson Papers 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_08836d7fbed38995eb7bc1007ffa55a9">
<head>Preferred Citation</head>
<p>Frank Percy Wilson Papers. James Marshall and Marie-Louise Osborn Collection. Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_c37124b8cd652822e1a8944212cdb20e">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_cfe89d53421861bc9bf48abbe5b28686">
<head>Processing Information</head>
<p>Boxes 1-10 of the Frank Percy Wilson Papers were housed, arranged and listed by a curatorial assistant in the 1980s, and this list has been preserved in this finding aid. Boxes 11-28 received a basic level of processing, including rehousing and minimal organization, in 2010. The arrangement of the material reflects the order of the files as they were acquired by the library.</p>
</processinfo>
<bioghist id="aspace_5f3074a801d6625948951c540a22ea0c">
<head>Frank Percy Wilson (1889-1963)</head>
<p>Frank Percy Wilson was born in Birmingham, England, the youngest of nine children. He took a first class in English (1911) and an M.A.(1912) at the University of Birmingham, and a B.Litt from Lincoln College, Oxford in the following year. Wilson's thesis was on Thomas Dekker. He volunteered for the Army in September 1914, and was badly wounded at the battle of the Somme in July 1916, spending over a year in the hospital and enduring repeated surgeries. After brief service as the Minister of Food, he returned to his scholarly career. Wilson was appointed as a university lecturer at Oxford in 1923, and as reader in 1927. He was subsequently professor of English at the University of Leeds (1929-1936); Hildred Carlisle Professor of English Literature at Bedford College, London (1936-1947); and finally Merton Professor of English Literature at Oxford (1947-1957).</p>
<p>Wilson's academic specialty was Elizabethan language and literature, and he published many papers and articles on the subject during his lifetime, including<title localtype="simple" render="italic">
<part>Illustrations of Social Life</part>
</title>, <title localtype="simple" render="italic">
<part>Shakespeare and the New English Bibliography</part>
</title>, <title localtype="simple" render="italic">
<part>The Jestbooks of the Sixteenth and Early Seventeenth Centuries</part>
</title>, <title localtype="simple" render="italic">
<part>Shakespeare and the Diction of Common Life</part>
</title>, and <title localtype="simple" render="italic">
<part>Shakespeare and the New Bibliography</part>
</title>. From 1935 on he served, with Bonamy Dobrée, as general editor of the <title localtype="simple" render="italic">
<part>Oxford History of English Literature</part>
</title>. His own volume in the series, <title localtype="simple" render="italic">
<part>English Drama 1485-1585</part>
</title>, appeared posthumously in 1969, edited by G. K. Hunter. He also served as general editor of the Malone Society from 1948 until 1960.</p>
<p>Wilson married Joanna Perry-Keene, one of his Oxford students, in 1924; the couple had four children. Joanna Wilson shared his interest in Elizabethan proverbs and sayings, and worked with him for many years to prepare the third edition of the <title localtype="simple" render="italic">
<part>Oxford Dictionary of Proverbs</part>
</title> (1970), which was published after Wilson's death with her introduction.</p>
</bioghist>
<scopecontent id="aspace_25bdcbca78e014377a2449160aaa6c08">
<head>Scope and Contents</head>
<p>The Frank Percy Wilson Papers document part of Wilson's scholarly career and include research correspondence and subject files, particularly for articles and papers on Shakespearean topics and on the book <title localtype="simple" render="italic">
<part>Tabacco</part>
</title>. Also included are a large alphabetical file of notes for various publication projects; research material for the<title localtype="simple" render="italic">
<part>Facsimile of the Shakespeare First Folio</part>
</title> and the British Academy biography of Sir E. K. Chambers; papers relating to the estate of fellow Shakespearean Walter Wilson Greg; and seventeen boxes of note cards and note slips on Elizabethan words and word usage.</p>
</scopecontent>
<arrangement id="aspace_d0096623cb84a719b1b1a7f515aca069">
<head>Arrangement</head>
<p>Organized into five series: I. Correspondence and Research Notes, 1912-1961. II. W. W. Greg's Publications and Estate, 1924-1961. III. Miscellanous Notes, undated. IV. Research Cards, undated. V. Research Slips, undated.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85013849"
source="lcsh">
<part localtype="topical">Early printed books</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008119521"
source="lcsh">
<part localtype="topical">English drama</part>
<part localtype="genre_form">Bibliography</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043340"
source="lcsh">
<part localtype="topical">English drama</part>
<part localtype="temporal">Early modern and Elizabethan, 1500-1600</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043792"
source="lcsh">
<part localtype="topical">English literature</part>
<part localtype="genre_form">Bibliography</part>
</subject>
<subject source="local">
<part localtype="topical">Publishers and publishing</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85118236"
source="lcsh">
<part localtype="topical">Scholars</part>
</subject>
<persname rules="aacr">
<part localtype="agent_person">Chambers, E. K. (Edmund Kerchever), 1866-1954</part>
</persname>
<persname>
<part localtype="agent_person">Chapman, R. W. (Robert William), 1881-1960</part>
</persname>
<persname>
<part localtype="agent_person">Davin, Dan, 1913-1990</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Ferguson, F. S. (Frederic Sutherland), 1878-1967</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Greg, W. W. (Walter Wilson), 1875-1959</part>
</persname>
<persname>
<part localtype="agent_person">McManaway, James Gilmer, 1899-1980</part>
</persname>
<persname>
<part localtype="agent_person">Shakespeare, William, 1564-1616 (Bibliography)</part>
</persname>
<persname>
<part localtype="agent_person">Shipton, Clifford Kenyon, 1902-1973</part>
</persname>
<persname>
<part localtype="agent_person">Smith, David Nichol, 1875-1962</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Wilson, F. P. (Frank Percy), 1889-1963</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Wilson, John Dover, 1881-1969</part>
</persname>
<persname source="local">
<part localtype="agent_person">Knapp-Fisher, James S.</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Bibliographical Society (Great Britain)</part>
</corpname>
<corpname rules="aacr" source="local">
<part localtype="agent_corporate_entity">Janson, Cobb, Pearson and Co</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/382769"
id="ref11"
level="series">
<did>
<unittitle>Correspondence and Research Notes</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3.13</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">9 boxes</physdesc>
<unitdatestructured altrender="1912-1961" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
<todate standarddate="1961">1961</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_67c5a2ef16a767fc54e19239db8958b2">
<head>Scope and Contents</head>
<p>Series I contains extensive correspondence and notes on the articles<title localtype="simple" render="italic">
<part>Illustrations of Social Life</part>
</title>, <title localtype="simple" render="italic">
<part>Shakespeare and the New English Bibliography</part>
</title>, <title localtype="simple" render="italic">
<part>The Jestbooks of the Sixteenth and Early Seventeenth Centuries</part>
</title>, and on the book<title localtype="simple" render="italic">
<part>Tabacco</part>
</title>. Also included are a large file of notes for various projects, and research material for the <title localtype="simple" render="italic">
<part>Facsimile of the Shakespeare First Folio</part>
</title> and the British Academy biography of Sir E. K. Chambers.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/382770"
id="ref13"
level="subseries">
<did>
<unittitle>General</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/382771"
id="ref14"
level="file">
<did>
<unittitle>Notes and correspondence relating to "Illustrations of Social Life," The Plague in Shakespeare's London; notes on Shakespeare, Spenser, Donne and ms. plays</unittitle>
<unitdatestructured altrender="1912-1960" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
<todate standarddate="1960">1960</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38034 /locations/9"
containerid="39002091546417"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1-5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382772"
id="ref15"
level="file">
<did>
<unittitle>Photostats and facsimiles, printed articles and reviews, correspondence and notes on almanacs, prognostication, and miscellaneous projects</unittitle>
<unitdatestructured altrender="1912-1960" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
<todate standarddate="1960">1960</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38035 /locations/9"
containerid="39002091546425"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">1-4</container>
</did>
<c altrender="/repositories/11/archival_objects/382773"
id="ref16"
level="file">
<did>
<unittitle>A-C</unittitle>
<container altrender="/repositories/11/top_containers/38036 /locations/9"
containerid="39002091546433"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">1-4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382774"
id="ref17"
level="file">
<did>
<unittitle>D-G</unittitle>
<container altrender="/repositories/11/top_containers/38037 /locations/9"
containerid="39002091546441"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">1-4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382775"
id="ref18"
level="file">
<did>
<unittitle>H-M</unittitle>
<container altrender="/repositories/11/top_containers/38038 /locations/9"
containerid="39002091546458"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">1-4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382776"
id="ref19"
level="file">
<did>
<unittitle>N-R</unittitle>
<container altrender="/repositories/11/top_containers/38039 /locations/9"
containerid="39002091546466"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">1-4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382777"
id="ref20"
level="file">
<did>
<unittitle>S-Z</unittitle>
<container altrender="/repositories/11/top_containers/38040 /locations/9"
containerid="39002091546474"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">7</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">1-4</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/382778"
id="ref21"
level="subseries">
<did>
<unittitle>"Shakespeare and the New Bibliography"</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/382779"
id="ref22"
level="file">
<did>
<unittitle>Misc MS notes for article (few typed)</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382780"
id="ref23"
level="file">
<did>
<unittitle>Greg, Sir Walter Wilson</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">1</container>
</did>
<scopecontent id="aspace_00dd7554d10145930d39a2688abff6c9">
<head>Scope and Contents</head>
<p>ALS to F. D. Wilson <lb/> 1942 June 15, Petworth, Sussex <lb/> 2 p. 23 x 18 cm <lb/> Approves piece in present form (criticism attached)</p>
</scopecontent>
<scopecontent id="aspace_505579f3e858a56310bc89ea89a1b0f9">
<head>Scope and Contents</head>
<p>1942 June 22 <lb/> 2 pp. 25 x 20 cm Petworth, Sussex <lb/> General remarks about early Shakespeare critics, <lb/> texts, editors</p>
</scopecontent>
<scopecontent id="aspace_61fd72870b212df1b330a9cd7ece7ae7">
<head>Scope and Contents</head>
<p>1942 July 7, Petworth, Sussex <lb/> 12 p. 25 x 20 cm Petworth, Sussex <lb/> General remarks on Shakespeare texts</p>
</scopecontent>
<scopecontent id="aspace_3f0c880fd7c94b49de3fe5c492e4de32">
<head>Scope and Contents</head>
<p>1942 Sept 6, Petworth, Sussex <lb/> 2 p. 23 x 18 cm <lb/> Queries about imprints; returns typescript (not <lb/> included)</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382781"
id="ref28"
level="file">
<did>
<unittitle>Ferguson, Frederick Sutherland</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">1</container>
</did>
<scopecontent id="aspace_03b3d5fac1b88fffcdc2dd42e68dba68">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1942 June 30, London <lb/> 2 p. 26 x 20 cm <lb/> Remarks on chapters 2 and 3; question on Richard <lb/> Jones as painter</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382782"
id="ref30"
level="file">
<did>
<unittitle>Pollard, Graham</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">1</container>
</did>
<scopecontent id="aspace_0c5a0f64cc9036e201e7ffa129fd32a2">
<head>Scope and Contents</head>
<p>ALS to F. P. Wilson <lb/> 1942 May 30, Oxford <lb/> 1 p 26 x 20 cm <lb/> Offers criticisms on piece</p>
</scopecontent>
<scopecontent id="aspace_1fc0d0a74dcdfaca0f26c341978fad55">
<head>Scope and Contents</head>
<p>1942 June 12, N/P <lb/> 4 p. 26 x 20 cm <lb/> Reacts to several of Wilson's comments</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382783"
id="ref33"
level="file">
<did>
<unittitle>Smith, David Nichol</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">1</container>
</did>
<scopecontent id="aspace_dd4052b69dfeec6e93fa7275990de963">
<head>Scope and Contents</head>
<p>1942 June 21, Oxford <lb/> 20 p. 21 x 13 cm <lb/> Detailed criticisms of piece</p>
</scopecontent>
<scopecontent id="aspace_2708325a4019e2bdbc4e61be860581f2">
<head>Scope and Contents</head>
<p>1942 July 7, Oxford <lb/> 16 p. 21 x 13 cm <lb/> Detailed criticisms of paper</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382784"
id="ref36"
level="file">
<did>
<unittitle>Wilson, Frank Percy</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">1</container>
</did>
<scopecontent id="aspace_f250d72702226cfd273642b5523ebd6a">
<head>Scope and Contents</head>
<p>ALS to David Nichol Smith <lb/> 2 p. 26 x 20 cm <lb/> Asks for criticisms of sections 2, 3 of piece <lb/> (typescript wanting)</p>
</scopecontent>
<scopecontent id="aspace_967692ce4c82b5c52402a9ff39fc1a97">
<head>Scope and Contents</head>
<p>1942 July 5, Cambridge <lb/> 3 p. 26 x 20 and 21 x 13 cm <lb/> Enclosed (wanting) part 6 of piece for criticisms</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/382785"
id="ref39"
level="subseries">
<did>
<unittitle>"The English Jestbooks . . ."</unittitle>
</did>
<scopecontent id="aspace_073fc5ec2a881555be00ad998d4759fe">
<head>Scope and Contents</head>
<p>Full citation for this article is: "The English <lb/> Jestbooks of the Sixteenth and Early Seventeenth <lb/> Century" HLQ ii, 121-158</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/382786"
id="ref40"
level="file">
<did>
<unittitle>Misc. MS notes (few typed) relating to Compilations for article</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382787"
id="ref41"
level="file">
<did>
<unittitle>9 misc. bookseller catalog pages</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382788"
id="ref42"
level="file">
<did>
<unittitle>Davis, Godfrey</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">2</container>
</did>
<scopecontent id="aspace_10cd2284676b29ee494de059aa96ebc5">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1938 Oct 4, San Marino <lb/> 1 p. 26 x 21 cm</p>
</scopecontent>
<scopecontent id="aspace_a4c52ebac6cd75787e69442d52b0da3d">
<head>Scope and Contents</head>
<p>1938 Oct 27, San Marino <lb/> 4 p. 26 x 21 cm (with enclosures)</p>
</scopecontent>
<scopecontent id="aspace_9b6ea027e77e25bd49cc44f1ef3555e6">
<head>Scope and Contents</head>
<p>1938 Nov 16, San Marino <lb/> 1 p. 26 x 21 cm</p>
</scopecontent>
<scopecontent id="aspace_1e522c704494672e9b3648783432fd3a">
<head>Scope and Contents</head>
<p>1938 Dec 16, San Marino <lb/> 2 p. 26 x 21 cm</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382789"
id="ref47"
level="file">
<did>
<unittitle>Hamilton, George L.</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">2</container>
</did>
<scopecontent id="aspace_b82f5eba3edc6f39d53754d724795017">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1938 Sept 1, Cambridge, Mass. <lb/> 1 p. 26 x 21 cm <lb/> Remarks on Madmen of Gotham (1619)</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382790"
id="ref49"
level="file">
<did>
<unittitle>McManaway, James Gilmer</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">2</container>
</did>
<scopecontent id="aspace_95d955d8807e77593609ea1a50c31554">
<head>Scope and Contents</head>
<p>ALS to F. P. Wilson <lb/> 1938 June 20, Washington <lb/> 3 p., 26 x 21 cm <lb/> Answers queries on English jest books; asks for <lb/> information on Mother Shipton</p>
</scopecontent>
<scopecontent id="aspace_761c9ffd3262274278cbcb4a567e686f">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1938 Aug 17, Washington <lb/> 2 p. 26 x 21 cm</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382791"
id="ref52"
level="file">
<did>
<unittitle>Nicholon, [Frank Carr?]</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">2</container>
</did>
<scopecontent id="aspace_f9e38ad831f72773b4c19de85ab13a47">
<head>Scope and Contents</head>
<p>ALS to F. P. Wilson <lb/> 1938 Jan 6, Edinburgh <lb/> 1 p. 18 x 13 cm <lb/> Answers Wilson's query on "A Foole upon Foole"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382792"
id="ref54"
level="file">
<did>
<unittitle>Wright, Lyle Henry</unittitle>
<container altrender="/repositories/11/top_containers/38041 /locations/9"
containerid="39002091546482"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">2</container>
</did>
<scopecontent id="aspace_2c1987ac4885a883f4e4194ae05bf32f">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1938 June 28, San Marino <lb/> 1 p. 26 x 21 cm <lb/> Is unable to aid him in request</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/382793"
id="ref57"
level="subseries">
<did>
<unittitle>Tabacco</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/382794"
id="ref58"
level="file">
<did>
<unittitle>Wilson, F. P. ed., Tabacco, Oxford; Basil Blackwell & Mott, Ltd, 1961 [An annotated proof copy]</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382795"
id="ref59"
level="file">
<did>
<unittitle>Shipton, Clifford K.</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">1</container>
</did>
<scopecontent id="aspace_cb7e94f07cfd8bee2a957e17612683c8">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1958, Sept 5, Worcester, MA <lb/> 1 p. 22 x 14 cm <lb/> Reports that 1595 Tabacco was sold to Rosenbach Co., <lb/> which sold it to Arents Collection</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382796"
id="ref61"
level="file">
<did>
<unittitle>Jackson, William Alexander</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">1</container>
</did>
<scopecontent id="aspace_a413888338bbcd4546908a4a3685e0d7">
<head>Scope and Contents</head>
<p>ALS to F. P. Wilson <lb/> 1961, Feb 18, Cambridge, MA <lb/> 1 p. 31 x 19 cm <lb/> Speculates on Huntington copy of Chute's Tabacco</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382797"
id="ref63"
level="file">
<did>
<unittitle>Dickson, Sarah Augusta</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref63_c2" localtype="folder" parent="aspace_ref63_c1">1</container>
</did>
<scopecontent id="aspace_3bf7398f4f8f07718d1d680f48ed62a9">
<head>Scope and Contents</head>
<p>ALS to F. P. Wilson <lb/> 1960 Nov 9, New York <lb/> 3 p., 21 x 14 cm <lb/> Remarks on Arents copy of Tabacco and related works</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382798"
id="ref65"
level="file">
<did>
<unittitle>Blackwell, Basil</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref65_c2" localtype="folder" parent="aspace_ref65_c1">1</container>
</did>
<scopecontent id="aspace_7f1a8fad424eb69ef689a32b2582b999">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1960 Feb 16, Oxford <lb/> 1 p. 26 x 21 cm</p>
</scopecontent>
<scopecontent id="aspace_aed2a8976d475224392ded4815b5ae44">
<head>Scope and Contents</head>
<p>1960 Nov 9, Oxford <lb/> 2 p. 26 x 21 cm</p>
</scopecontent>
<scopecontent id="aspace_f2e097f6d079fe5be8a5550505217958">
<head>Scope and Contents</head>
<p>1960 Nov 16, Oxford <lb/> 1 p. 25 x 21 cm</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382799"
id="ref69"
level="file">
<did>
<unittitle>Fry, Mary Isabel</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">1</container>
</did>
<scopecontent id="aspace_884e9c70307c96dee7b493b1140d560e">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1960 Oct 15, San Marino <lb/> 1 p. 26 x 21 cm <lb/> Gives details of Huntington copy of Tabacco</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382800"
id="ref71"
level="file">
<did>
<unittitle>Halliday, Eleanor</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">1</container>
</did>
<scopecontent id="aspace_860936718af0b19fc643176c9d5f0761">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1960 Sept 20, Oxford <lb/> 1 p. 20 x 13 cm</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382801"
id="ref73"
level="file">
<did>
<unittitle>British American Tobacco Company Limited, Report & Accounts 1960 [issued Feb 27, 1961]</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382802"
id="ref74"
level="file">
<did>
<unittitle>66 pages of MS notes for Tabacco and concerning aspects of tobacco</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref74_c2" localtype="folder" parent="aspace_ref74_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382803"
id="ref75"
level="file">
<did>
<unittitle>5 pages of photostatic reproductions of 1595 edition</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref75_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref75_c2" localtype="folder" parent="aspace_ref75_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382804"
id="ref76"
level="file">
<did>
<unittitle>Sotheby's catalog, pp. 49-50, 3 May items.</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382805"
id="ref77"
level="file">
<did>
<unittitle>Library Call Slip, Calling for The Armes of the Tobachonists (1630)</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref77_c2" localtype="folder" parent="aspace_ref77_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382806"
id="ref78"
level="file">
<did>
<unittitle>5 p. misc. catalog pages and prints</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">1</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/382807"
id="ref79"
level="subseries">
<did>
<unittitle>"Table Talk"</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/382808"
id="ref80"
level="file">
<did>
<unittitle>MS notes and quotations for "Table Talk"--including notes on Johnson, Boswell, Addison, James I, Pope, Richardson, others</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref80_c2" localtype="folder" parent="aspace_ref80_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382809"
id="ref81"
level="file">
<did>
<unittitle>Leverhulme Reaserach Fellowships</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref81_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref81_c2" localtype="folder" parent="aspace_ref81_c1">2</container>
</did>
<scopecontent id="aspace_b6e1c1c216c524fd41c8449636a3ddf6">
<head>Scope and Contents</head>
<p>LS (by unidentified person) to F. P. Wilson <lb/> 1940 Nov 27, Watergate, Blackfriars <lb/> 1 p. 13 x 20 cm <lb/> Thanks for reprint of "Table Talk"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382810"
id="ref83"
level="file">
<did>
<unittitle>Literary and Philosophical Society</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref83_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref83_c2" localtype="folder" parent="aspace_ref83_c1">2</container>
</did>
<scopecontent id="aspace_9de0699932dce0e3d6b70b37b0703238">
<head>Scope and Contents</head>
<p>LS (by unidentified librarian) to F. P. Wilson <lb/> 1940 Apr 20, Newcastle upon Tyne <lb/> 1 p., 26 x 21 cm <lb/> Information on Robert Spence Watson Memorial Lecture, <lb/> 1931</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382811"
id="ref85"
level="file">
<did>
<unittitle>Davies, Godfrey</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref85_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref85_c2" localtype="folder" parent="aspace_ref85_c1">2</container>
</did>
<scopecontent id="aspace_c2c6d405ab93e1daab1d774d7ad3b57d">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1940 May 24, San Marino <lb/> 1 p 26 x 21 cm <lb/> Reports that he is pleased to print "Table Talk"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382812"
id="ref87"
level="file">
<did>
<unittitle>Crissey, M. H.</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref87_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref87_c2" localtype="folder" parent="aspace_ref87_c1">2</container>
</did>
<scopecontent id="aspace_930e9d68e59c0fb3b0088c586fbe02ac">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1940 June, San Marino <lb/> 2 p., 20 x21 cm <lb/> Corrections to "Table Talk" noted</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382813"
id="ref89"
level="file">
<did>
<unittitle>ALS from unknown writer</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref89_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref89_c2" localtype="folder" parent="aspace_ref89_c1">2</container>
</did>
<scopecontent id="aspace_90ebb60f6606303aeabf62f0c5a9371b">
<head>Scope and Contents</head>
<p>1940 Apr 23, Oxford <lb/> 7 p., 21 x 13 cm <lb/> Praise and Queries for "Table Talk"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382814"
id="ref91"
level="file">
<did>
<unittitle>Clippings, TLS 11 June 1931 and 14 March 1935</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref91_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref91_c2" localtype="folder" parent="aspace_ref91_c1">2</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/382815"
id="ref92"
level="subseries">
<did>
<unittitle>Facsimile of Shakespeare First Folio</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/382816"
id="ref93"
level="file">
<did>
<unittitle>Davin, Daniel Marcus</unittitle>
<container altrender="/repositories/11/top_containers/38042 /locations/9"
containerid="39002091546490"
id="aspace_ref93_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref93_c2" localtype="folder" parent="aspace_ref93_c1">3</container>
</did>
<scopecontent id="aspace_354b2a3a155a171c2372ca464f493487">
<head>Scope and Contents</head>
<p>LS to F. P. Wilson <lb/> 1951 Aug 9, Oxford <lb/> 1 p. 26 x 21 cm <lb/> Responds to comments on reproduction techniques in <lb/> facsimile samples</p>
</scopecontent>
<scopecontent id="aspace_979123d45c31544a5cf6cf45a251232a">
<head>Scope and Contents</head>
<p>1951 Aug 15, Oxford <lb/> 1 p. 17 x 21 cm <lb/> Comments on size of pages and method of reproduction</p>
</scopecontent>
<scopecontent id="aspace_a3f7058bc1eae476263b53e8b38574e5">
<head>Scope and Contents</head>
<p>1951 Nov 21, Oxford <lb/> 1 p. 17 x 21 cm</p>