-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1093.xml
3034 lines (3034 loc) · 174 KB
/
1093.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.great">beinecke.great</recordid>
<otherrecordid localtype="BIB">3945485</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Bertie Greatheed Papers
</titleproper>
<titleproper localtype="filing">Greatheed (Bertie) Papers</titleproper>
<author>by Diane J. Ducharme</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>June 1996</date>
<num>OSB MSS 68</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">3945485</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-4, bsd, folder 137-bsd, folder 139</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="2">2</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="7">7</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:09: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 January 9, 2025 at 00:09</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1093" level="collection">
<did>
<unittitle>Bertie Greatheed papers</unittitle>
<unitid>OSB MSS 68</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.3</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes + 3 broadside folders</physdesc>
<unitdatestructured altrender="1785-1819" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1785">1785</fromdate>
<todate standarddate="1819">1819</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_e589ad93726f4b38db73801c08bccd5d">Correspondence, printed ephemera, and clippings regarding Greatheed's play, "The Regent." Also includes poetry by Greatheed and others, such as Robert Merry and William Parsons. There is one letter from Thomas King detailing his comments on the prologue to Greatheed's play.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Greatheed, Bertie, 1759-1826</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_f3cf69ddfba81ac8cdb594649823baae">
<head>Immediate Source of Acquisition</head>
<p>Bequest of James Marshall and Marie-Louise Osborn. For further information, consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_18d291a9b02ac02712faac8515f4db54">
<head>Conditions Governing Use</head>
<p>The Bertie Greatheed 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_739dabb9ded484c2261d98d42bc04fbe">
<head>Preferred Citation</head>
<p>Bertie Greatheed Papers. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_a11d46d13b77dbc20dc39313d167381c">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<bioghist id="aspace_60f233de76d011a278d2203dd30669d0">
<head>BERTIE GREATHEED, 1759-1826</head>
<p>Bertie Greatheed, the son of Samuel Greatheed of Guy's Cliff, MP for Coventry, and Lady Mary Bertie, was born on October 17, 1759. He was raised at Guy's Cliff, and there met the actress Sarah Siddons when she was employed by his mother in 1771-73.</p>
<p>While living in Florence, Greatheed joined the society "Gli Oziosi" (The Idlers) and contributed to their privately published <title localtype="simple" render="italic">
<part>Arno Miscellany</part>
</title> (1784). In 1785 he was one of the major contributors to the Della Cruscan <title localtype="simple" render="italic">
<part>Florence Miscellany</part>
</title>, with Robert Merry, William Parsons, and Mrs. Piozzi.</p>
<p>In 1788, his blank verse tragedy, <title localtype="simple" render="italic">
<part>The Regent</part>
</title>, was staged at Drury Lane Theatre, with his friend Sarah Siddons and John Kemble in the lead roles, but the play failed and was withdrawn after only nine nights.</p>
<p>The Greatheed family was in Paris in 1802-1803, during the Peace of Amiens; Bertie Bertie Greatheed, his son, received permission from Napoleon to draw many of the art treasures which had been brought to the Louvre. The Greatheeds journeyed to Italy in 1804, where Bertie Bertie Greatheed died in October, at Vicenza. His drawings were returned to his father by Napoleon on learning of the son's death.</p>
<p>Greatheed spent much time and money on improvements to Guy's Cliff, and designed the house's Elizabethan Revival additions and the memorial to the execution of Piers Gaveston on Blacklow Hill. He also acquired a considerable collection of Old Master paintings, including works attributed to Canaletto, Caravaggio, Salvator Rosa, Lely, and Reynolds.</p>
<p>Greatheed's only child, Bertie Bertie, had married in France before his early death, and in 1823 his daughter Anne Caroline Greatheed married Lord Charles Percy, who took the surname Greatheed Bertie Percy. Bertie Greatheed died at Guy's Cliff on January 16, 1826.</p>
</bioghist>
<scopecontent id="aspace_e2a45ffe1019a7c2a77d0e837e6df4f7">
<head>Scope and Contents</head>
<p>The Bertie Greatheed Papers consist of letters, manuscripts and printed material documenting the literary career and friendships of Bertie Greatheed. The papers span the dates 1741-1824 and are organized into three series: I. Letters; II. Manuscripts; III. Printed Material.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref11">Series I, <title localtype="simple" render="italic">
<part>Letters</part>
</title>
</ref>, is located in Box 1, folders 1-21 and has been arranged alphabetically by author. There are several letters concerning the 1788 production of <title localtype="simple" render="italic">
<part>The Regent</part>
</title>, including congratulatory notes from relatives and from friends such as Lady Sophia Trevannion Byron and James Robson.</p>
<p>There are also letters by all of the other major members of the Della Cruscans. Notes by Robert Merry are accompanied by signed drafts of "Ode to Winter," "Address to Bacchus," and "Madness." Letters by William Parsons, located in folders 10-14, also enclose poems, including a draft of "Verses Written on the Island of Staffa." The earliest letters by Parsons, addressed to Greatheed at Eton, are almost entirely comic narratives written in verse. Folder 16 contains letters to Greatheed in Florence by Mrs. Piozzi.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref65">Series II, <title localtype="simple" render="italic">
<part>Manuscripts</part>
</title>
</ref>, is housed in folders 22-107 and is organized into two subseries: Poems and Prose. Material within each subseries is arranged alphabetically by author and then by title, with material by unidentified authors listed at the end of the subseries. With few exceptions, works are attributed based on docketing or signatures on the manuscripts. Where this is not the case, the author's name appears in brackets in the listing.</p>
<p>Works by the Della Cruscans Robert Merry and William Parsons are located in folders 44-56. Merry's poems include "To Cloe in England, Written in Florence," and a heavily corrected draft of "A Character." Works by Parsons include an "Epistle from Naples to Bertie Greatheed" and a translation of the opening of Dante's <title localtype="simple" render="italic">
<part>Inferno</part>
</title>."</p>
<p>Poems signed "Ellison" are found in folders 27-36. They include translations from Greek and Latin originals; "A Song of the Bards of Cairbar," probably in imitation of <title localtype="simple" render="italic">
<part>Fingal</part>
</title>; "The Thoughts of an Evening;" and "Guy's Cliff." Folder 35 contains Ellison's translation of Gray's "O Tu, severi religio loci," another translation of which, by Hugh Hutton, can be found in folder 40.</p>
<p>Other poems with identifiable authors include Coleridge's "Recantation: A Political Allegory;" "Alonzo the Brave, and the Fair Imogen," by Matthew Lewis; and a poem attributed in the docketing to Thomas Gray, "The University Courtship."</p>
<p>Poems by unidentified authors are located in folders 62-96 and include epigrams, epitaphs and mock epitaphs, satires, songs, riddles and occasional verses in a variety of hands. Satires include "On a House of Office;" "The Royal Vision;" and "On the Duchess of Leeds Marrying Lord Portmore a Week after the Death of the Duke." Folder 84 contains "On the discovery of the bodies of Henry 8th and Charles 1st;" a "Ditirambo sul caffe" is located in folder 69.</p>
<p>There are eleven folders of Prose, including an account of prayers offered at a London synagogue for the Prince of Wales in 1788; a description of an avalanche; and a "prophecy," supposed to have been written in 1701, concerning the destruction of the French royal line.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref212">Series III, <title localtype="simple" render="italic">
<part>Printed Material</part>
</title>
</ref>, is housed in Box 3 and organized into four subseries: Artwork, Newspaper Clippings, Playbills, and Other Printed Material. Newspaper Clippings includes carefully saved and annotated copies of reviews of Greatheed's <title localtype="simple" render="italic">
<part>The Regent</part>
</title> and a chronology of the life of Napoleon published in 1814. Folder 119 contains a playbill for an October 19, 1741 production of <title localtype="simple" render="italic">
<part>King Richard the Third</part>
</title>, annotated "announcing Garrick's first performance." Other Printed Material includes a broadside advertisement for a 1777 performance by the magician Philadelphius Philadelphia.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref259">Oversize</ref> material has been housed in Box 4.</p>
</scopecontent>
<controlaccess>
<title source="local">
<part localtype="uniform_title">Regent, a tragedy, as it is acted at the Theatre Royal in Drury-Lane</part>
</title>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043343"
source="lcsh">
<part localtype="topical">English drama</part>
<part localtype="temporal">18th century</part>
</subject>
<occupation source="local">
<part localtype="occupation">Dramatists, English</part>
<part localtype="temporal">18th century</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Greatheed, Bertie, 1759-1826</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">King, Thomas, 1730-1805</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Merry, Robert, 1755-1798</part>
</persname>
<persname>
<part localtype="agent_person">Parsons, William, active 1785-1807</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/392378"
id="ref11"
level="series">
<did>
<unittitle>Letters</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>21</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1788-1819" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1788">1788</fromdate>
<todate standarddate="1819">1819</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_3910b75a6be71a3da38e9a9bce6069ce">
<head>Arrangement</head>
<p>
<title localtype="simple" render="italic">
<part>Letters</part>
</title> is arranged alphabetically by author.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/392379"
id="ref13"
level="subseries">
<did>
<unittitle>ANCASTER, MARY (PANTON) BERTIE, DUCHESS OF, D. 1793</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392380"
id="ref14"
level="file">
<did>
<unittitle>ALS to Bertie Greatheed, [London]</unittitle>
<unitdatestructured altrender="[1788 Mar 29]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-03-29">[1788 Mar 29]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
<scopecontent id="aspace_e04c459e250e6901e7b2a90602801103">
<head>Scope and Contents</head>
<p>On his play, <title localtype="simple" render="italic">
<part>The Regent</part>
</title>.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392381"
id="ref16"
level="subseries">
<did>
<unittitle>BYRON, SOPHIA (TREVANNION), D. 1790</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392382"
id="ref17"
level="file">
<did>
<unittitle>AL to Bertie Greatheed (and wife); Bolton Row</unittitle>
<unitdatestructured altrender="[1788] Apr 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-04-02">[1788] Apr 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">2</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392383"
id="ref18"
level="subseries">
<did>
<unittitle>DE CELY, CONTE</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392384"
id="ref19"
level="file">
<did>
<unittitle>ALS to "Eliza;" Chicksand Priory</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">3</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392385"
id="ref20"
level="subseries">
<did>
<unittitle>G., A. D.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392386"
id="ref21"
level="file">
<did>
<unittitle>ALS to Bertie Greatheed; Guy's Cliff</unittitle>
<unitdatestructured altrender="1819 Mar 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1819-03-18">1819 Mar 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">4</container>
</did>
<scopecontent id="aspace_a7b1f678c6f483236fa4555e2abe678e">
<head>Scope and Contents</head>
<p>Letter in French.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392387"
id="ref23"
level="subseries">
<did>
<unittitle>[GREATHEED FAMILY?]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392388"
id="ref24"
level="file">
<did>
<unittitle>AL in the third person to Bertie Greatheed</unittitle>
<unitdatestructured altrender="[1788 Mar]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-03">[1788 Mar]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">5</container>
</did>
<scopecontent id="aspace_b8a5d435028dc450d21b97b8a13c46fc">
<head>Scope and Contents</head>
<p>Letter of congratulations on <title localtype="simple" render="italic">
<part>The Regent</part>
</title>, from "The Families in Queen Anne Street and Park Place."</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392389"
id="ref26"
level="subseries">
<did>
<unittitle>GREATHEED, MARY</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392390"
id="ref27"
level="file">
<did>
<unittitle>ALS to (her nephew) Bertie Greatheed; Warwick</unittitle>
<unitdatestructured altrender="1788 Apr 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-04-01">1788 Apr 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">6</container>
</did>
<scopecontent id="aspace_770b043c43a015d9585b7c9a9d55281b">
<head>Scope and Contents</head>
<p>On <title localtype="simple" render="italic">
<part>The Regent</part>
</title>.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392391"
id="ref29"
level="subseries">
<did>
<unittitle>JUNIUS, PSEUD.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392392"
id="ref30"
level="file">
<did>
<unittitle>Manuscript of political satire written as ALS "To the King"</unittitle>
<unitdatestructured altrender="1810 Jan 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1810-01-17">1810 Jan 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">7</container>
</did>
<scopecontent id="aspace_dfb05e00d6e5ff13637d10270f44ed7b">
<head>Scope and Contents</head>
<p>Opens with a quotation from the letters of the original "Junius," 1769 Dec 29</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392393"
id="ref32"
level="subseries">
<did>
<unittitle>KING, THOMAS, 1730-1805</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392394"
id="ref33"
level="file">
<did>
<unittitle>ALS to Bertie Greatheed; Gerrard Street</unittitle>
<unitdatestructured altrender="1788 Mar 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-03-20">1788 Mar 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">8</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392395"
id="ref34"
level="subseries">
<did>
<unittitle>MERRY, ROBERT, 1755-1798</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392396"
id="ref35"
level="file">
<did>
<unittitle>ALS containing "Address to Bacchus" and "Madness"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">9</container>
</did>
<scopecontent id="aspace_75c09e51d61c71bcef0f30a065714bd5">
<head>Scope and Contents</head>
<p>Two holograph poems, the first addressed to Bertie Greatheed. Accompanied by signed draft of "Ode to Winter" and two epigrams.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392397"
id="ref37"
level="subseries">
<did>
<unittitle>MURPHY, ARTHUR, 1727-1805</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392398"
id="ref38"
level="file">
<did>
<unittitle>ALS to Hester Lynch Piozzi; Lincoln's Inn</unittitle>
<unitdatestructured altrender="1787 Sep 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1787-09-03">1787 Sep 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">10</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392399"
id="ref39"
level="subseries">
<did>
<unittitle>PARSONS, WILLIAM, FL. 1785-1807</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392400"
id="ref40"
level="file">
<did>
<unittitle>4 ALS to Bertie Greatheed, Jr.</unittitle>
<unitdatestructured altrender="1795 Dec 18, n.d."
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1795-12-18">1795 Dec 18, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">11</container>
</did>
<scopecontent id="aspace_32ad29851b1e94325881880794045c41">
<head>Scope and Contents</head>
<p>Sent to Greatheed at Eton College. Three are entirely in verse; the fourth includes verses.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/392401"
id="ref42"
level="file">
<did>
<unittitle>3 ALS to Bertie Greatheed, [n.p.]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">12</container>
</did>
<scopecontent id="aspace_d6ef01a05e209eee5f8a7335ac2bf382">
<head>Scope and Contents</head>
<p>In each case sending verses. Accompanied by five autograph sonnets.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/392402"
id="ref44"
level="file">
<did>
<unittitle>ALS (in verse) to Robert Merry, [n.p.]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392403"
id="ref45"
level="file">
<did>
<unittitle>"Verses written in the Island of Staffa"</unittitle>
<unitdatestructured altrender="1787 Aug 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1787-08-06">1787 Aug 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">14</container>
</did>
<scopecontent id="aspace_082953a1c6d86ca71899e1d5d871642b">
<head>Scope and Contents</head>
<p>Holograph. Accompanied by copy of macaronic verse, "conceived on the road from Warwick to Welbourn."</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392404"
id="ref47"
level="subseries">
<did>
<unittitle>PENNINGTON, PENELOPE SOPHIA (WESTON), 1752-1827</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392405"
id="ref48"
level="file">
<did>
<unittitle>ALS to Ann Greatheed; Cecil St.</unittitle>
<unitdatestructured altrender="[1788 Apr 1]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-04-01">[1788 Apr 1]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">15</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392406"
id="ref49"
level="subseries">
<did>
<unittitle>PIOZZI, HESTER LYNCH (SALSBURY) THRALE, 1741-1821</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392407"
id="ref50"
level="file">
<did>
<unittitle>4 ALS, 1 AL to Ann Greatheed; London</unittitle>
<unitdatestructured altrender="1788-89, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1788">1788</fromdate>
<todate standarddate="1789">1789</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">16</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392408"
id="ref51"
level="subseries">
<did>
<unittitle>ROBSON, JAMES, 1733-1806</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392409"
id="ref52"
level="file">
<did>
<unittitle>ALS to [Bertie Greatheed]; [London]</unittitle>
<unitdatestructured altrender="[1788 Mar 29]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-03-29">[1788 Mar 29]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">17</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392410"
id="ref53"
level="subseries">
<did>
<unittitle>SATCHWELL, BENJAMIN, 1732-1809</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392411"
id="ref54"
level="file">
<did>
<unittitle>ALS to Mr. Tombs; Leamington</unittitle>
<unitdatestructured altrender="1808 Sep 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1808-09-24">1808 Sep 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">18</container>
</did>
<scopecontent id="aspace_91bb404789d7571ef6b74ce25ff67b91">
<head>Scope and Contents</head>
<p>Encloses three papers for delivery to Bertie Greatheed, (1) ALS to Greatheed, 1808 Sep 21, (2) "A Eulogy on Bertie Greatheed Esqr.," (3) "Escrite on Building a New Town Newbold-Comyn, 1808."</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392412"
id="ref56"
level="subseries">
<did>
<unittitle>SOAME, FRANCES (WYNN)</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392413"
id="ref57"
level="file">
<did>
<unittitle>AL to Ann Greatheed; [London]</unittitle>
<unitdatestructured altrender="[1788] Mar 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-03-30">[1788] Mar 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">19</container>
</did>
<scopecontent id="aspace_5427033314fa2ca55d85d5461d8f8306">
<head>Scope and Contents</head>
<p>Congratulations on success of <title localtype="simple" render="italic">
<part>The Regent</part>
</title>.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392414"
id="ref59"
level="subseries">
<did>
<unittitle>WARWICK, GEORGE GREVILLE, 2D EARL OF, 1746-1816</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392415"
id="ref60"
level="file">
<did>
<unittitle>ALS to Bertie Greatheed; [London]</unittitle>
<unitdatestructured altrender="[1788] Mar 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-03-29">[1788] Mar 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">20</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392416"
id="ref61"
level="subseries">
<did>
<unittitle>UNIDENTIFIED CORRESPONDENT</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392417"
id="ref62"
level="file">
<did>
<unittitle>ALS to [Bertie Greatheed?]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">21</container>
</did>
<scopecontent id="aspace_94c2fa399b99396ac6780a56c6b250e7">
<head>Scope and Contents</head>
<p>Letter in French.</p>
</scopecontent>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392418"
id="ref65"
level="series">
<did>
<unittitle>Manuscripts</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>86</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1766-1813" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1766">1766</fromdate>
<todate standarddate="1813">1813</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_360e42890ae88e2e210f1fd702cf39ac">
<head>Arrangement</head>
<p>
<title localtype="simple" render="italic">
<part>Manuscripts</part>
</title> is organized into two subseries: Poems and Prose.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/392419"
id="ref67"
level="subseries">
<did>
<unittitle>POEMS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392420"
id="ref68"
level="subseries">
<did>
<unittitle>[Alfieri, Vittorio?]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392421"
id="ref69"
level="file">
<did>
<unittitle>"Sonetto del Conte Alfieri, nel 1788"</unittitle>
<unitdatestructured altrender="[1788?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788">[1788?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">22</container>
</did>
<scopecontent id="aspace_b695047cdff5920adb66365827932140">
<head>Scope and Contents</head>
<p>With "Sonetto Pastorale del C. P. di Monte Vecchio, nel 1705"</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392422"
id="ref71"
level="subseries">
<did>
<unittitle>[Coleridge, Samuel Taylor]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392423"
id="ref72"
level="file">
<did>
<unittitle>"Recantation: A Political Allegory"</unittitle>
<unitdatestructured altrender="[1798?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1798">[1798?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">23</container>
</did>
<scopecontent id="aspace_b42ec3152613ae0a77d53ef97bc7241f">
<head>Scope and Contents</head>
<p>With explanatory annotations.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392424"
id="ref74"
level="subseries">
<did>
<unittitle>Concannon, L.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392425"
id="ref75"
level="file">
<did>
<unittitle>"Verses to Mrs. Rigby occasioned by her departure from Sackets hill on the 12th of Oct. 1794"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref75_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref75_c2" localtype="folder" parent="aspace_ref75_c1">24</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392426"
id="ref76"
level="subseries">
<did>
<unittitle>Craven, Miss</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392427"
id="ref77"
level="file">
<did>
<unittitle>"Liberty"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref77_c2" localtype="folder" parent="aspace_ref77_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392428"
id="ref78"
level="file">
<did>
<unittitle>"The Spring, from Metastasio"</unittitle>
<unitdatestructured altrender="1795" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1795">1795</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">25</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392429"
id="ref79"
level="subseries">
<did>
<unittitle>Dawkins, Miss</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392430"
id="ref80"
level="file">
<did>
<unittitle>"To Captain Manning, on having received a present of Noah's Ark"</unittitle>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref80_c2" localtype="folder" parent="aspace_ref80_c1">26</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392431"
id="ref81"
level="subseries">
<did>
<unittitle>Ellison, ----?</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392432"
id="ref82"
level="file">
<did>
<unittitle>"Danae--from Simonides" "A Song of Callistratus"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref82_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref82_c2" localtype="folder" parent="aspace_ref82_c1">27</container>
<daoset altrender="/repositories/11/digital_objects/167473">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/11721336"
identifier="oid:11721336"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/11747671/full/!150,150/0/default.jpg"
identifier="oid:11721336"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/11721336"
identifier="oid:11721336"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"Danae--from Simonides" "A Song of Callistratus"</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392433"
id="ref83"
level="file">
<did>
<unittitle>"The Death of Erragon, from <title localtype="simple" render="italic">
<part>Fingal</part>
</title>"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref83_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref83_c2" localtype="folder" parent="aspace_ref83_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392434"
id="ref84"
level="file">
<did>
<unittitle>[Epitaphs by Jortin and Lowth, translated from the Latin]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref84_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref84_c2" localtype="folder" parent="aspace_ref84_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392435"
id="ref85"
level="file">
<did>
<unittitle>"The Fishers: An Ode"</unittitle>
<unitdatestructured altrender="1776" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1776">1776</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38581 /locations/4051"
containerid="39002099371537"
id="aspace_ref85_c1"
label="Mixed Materials"