-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1049.xml
1893 lines (1893 loc) · 98.2 KB
/
1049.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.heyworth">beinecke.heyworth</recordid>
<otherrecordid localtype="BIB">4362106</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Laurence Heyworth Collection of English Religious Manuscripts
</titleproper>
<titleproper localtype="filing">Heyworth (Laurence) Collection of English Religious Manuscripts</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>2009-03-19</date>
<num>OSB MSS 172</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">4362106</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-14, 16-25, 27, 29-35, 37-55, 57-63, 65-72</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 15, 26, 28, 36, 56, 64, 73</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="1">1</num> published digital object. And that object are comprised of <num localtype="files" altrender="295">295</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>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:05:24-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:05</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1049" level="collection">
<did>
<unittitle>Laurence Heyworth collection of English religious manuscripts</unittitle>
<unitid>OSB MSS 172</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="lat">Latin</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="fre">French</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>In English, Latin and French.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>8.2</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">73 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1550">1550</fromdate>
<todate standarddate="1820">1820</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1650">1650</fromdate>
<todate standarddate="1710">1710</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_802389b03fc7f7b2e18cad088ec0f564">The collection consists of 73 volumes, mostly in English, containing sermons, sermon-notes, prayers, religious reflections, tracts, commonplace books, Biblical commentaries, and other religious and theological texts, mostly from the later seventeenth and early eighteenth centuries. Almost half of the volumes include sermons or sermon notes. Most authors are unidentified, but identified authors include John Nicholas, John Henderson, and William Barton. Devotional works include William Chilcot's Practical Treatise Concerning Evil Thoughts; an English version of Dominique Bonheur's Pensées chrétiennes; and The Life of Mr. De Marsay and his Wife, an extensive spiritual autobiography by a Quietist and mystic. Volumes documenting the spiritual and devotional lives of women include A Comfortable Companion for Afflicted Souls, being a threefold discorse collected out of Scripture by a woman; the notes of Sarah Meadows on methods of raising devout children, drawn from her own experience as a mother; the commonplace book of Frances Drake; and the spiritual biography of Sarah Kirshaw.There are also several Roman Catholic works, including one by the English Benedictine Augustine Baker, as well as two works documenting the Scottish Church and the Covenanters.</abstract>
<origination label="Creator">
<persname relator="col">
<part localtype="agent_person">Heyworth, Laurence</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_8cb7be36e59b75f057208b7238f09728">
<head>Immediate Source of Acquisition</head>
<p>Gift of Laurence Heyworth, 1995-1998.</p>
</acqinfo>
<accessrestrict id="aspace_0d3c0f3388d42c8b5e3d82f4f68743b6">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_4bfb8508389ac3828e4d072137ea969f">
<head>Conditions Governing Use</head>
<p>The Laurence Heyworth Collection of English Religious Manuscripts 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>
<processinfo id="aspace_84847abc9969faf9e7611fb186040d02">
<head>Processing Information</head>
<p>This collection was arranged and given a preliminary list when it was received in 1995-1998; that list was revised in 2010. Information in the folder entries may be drawn from the donor acknowledgement list, from dealer descriptions housed with individual volumes, or from the volumes themselves.</p>
</processinfo>
<prefercite id="aspace_894c883006f66848356ab5b524b0e417">
<head>Preferred Citation</head>
<p>Laurence Heyworth Collection of English Religious Manuscripts. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<scopecontent id="aspace_62d896ab6016d25c2b495355852dde68">
<head>Scope and Contents</head>
<p>The Laurence Heyworth Collection of English Religious Manuscripts consists of 73 volumes, mostly in English, containing sermons, sermon-notes, prayers, religious reflections, tracts, commonplace books, Biblical commentaries, and other religious and theological texts, mostly from the later seventeenth and early eighteenth centuries.</p>
<p>Almost half of the volumes include sermons or sermon notes. Most authors are unidentified, but identified authors include Joseph Hallett, John Nicholas, Thomas Allen, Andrew Grey, John Henderson, and William Barton. Many sermons in these volumes are annotated with dates and/or place of preaching. Other notable items containing sermons include the volume in Box 27, which includes sermons on the execution of Charles I and the restoration of Charles II, and the volume in Box 49, containing sermons preached at Sidney Sussex College, Cambridge. Information on the Scottish Church and on the Covenanters can be found in Boxes 37 and 44.</p>
<p>Devotional works include John Ingram's <title localtype="simple" render="italic">
<part>Exposition of ye Catechisme</part>
</title>; an English version of Pietro Matteo Petrucci's<title localtype="simple" render="italic">
<part>Lettere e trattati spirituali e mistici</part>
</title> (Box 26); William Chilcot's <title localtype="simple" render="italic">
<part>Practical Treatise Concerning Evil Thoughts</part>
</title>(Box 62); and an English version of Dominique Bonheur's <title localtype="simple" render="italic">
<part>Pensées chrétiennes</part>
</title> titled <title localtype="simple" render="italic">
<part>Christian Thoughts for every Day of the Month</part>
</title> (Box 56). There are a number of commonplace books, including several that contain religious and inspirational poetry, including the commonplace books by unidentified authors in Boxes 15 and 41 and the volume in Box 25, which was probably written by a chaplain in the English Army during the Williamite War. Box 61 contains <title localtype="simple" render="italic">
<part>The Life of Mr. De Marsay and his Wife</part>
</title>, an extensive spiritual autobiography by a Quietist and mystic.</p>
<p>Several works attest to the post-Reformation survival of English Roman Catholicism, including a 17th century manuscript in Latin containing rules of conduct for monastic life (Box 2); the Latin Rite prayer book on parchment in Box 16, which may have belonged to the recusant Howard family; the <title localtype="simple" render="italic">
<part>Prayer to the Sacred Virgin Mother Against the Plague</part>
</title> in Box 19; and the copy of a work on the English Benedictine Mission by the Benedictine Augustine Baker (Box 55). Volumes documenting the spiritual and devotional lives of women include <title localtype="simple" render="italic">
<part>A Comfortable Companion for Afflicted Souls, being a threefold discorse collected out of Scripture by a woman</part>
</title> (Box 12); the notes by Sarah Meadows on methods of raising devout children, drawn from her own experience as a mother (Box 43); the commonplace book of Frances Drake (Box 89); and the spiritual biography <title localtype="simple" render="italic">
<part>True relation of my sister Sarah Kirshaw her life [and] death. Who dyed at Poppleton neare Yorke. Janr.20.1656. Ano aetatis 21</part>
</title>.</p>
</scopecontent>
<arrangement id="aspace_2442f1c54fbe0d13c1ecbea8e43db715">
<head>Arrangement</head>
<p>The manuscript volumes are organized by their original Heyworth MS numbers or letters; as the library did not receive every item in the Heyworth collection, there are gaps in the numbering and lettering sequences. Unnumbered items are listed in no particular order at the end of the finding aid.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">Catechetical sermons</part>
<part localtype="genre_form">Early works to 1800</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2009118550"
source="lcsh">
<part localtype="topical">Catholics</part>
<part localtype="geographic">England</part>
<part localtype="genre_form">Early works to 1800</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh93009678"
source="lcsh">
<part localtype="topical">Christian life</part>
<part localtype="genre_form">Early works to 1800</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2002009926"
source="lcsh">
<part localtype="topical">Conduct of life</part>
<part localtype="genre_form">Early works to 1800</part>
</subject>
<subject source="local">
<part localtype="topical">Covenanters</part>
<part localtype="genre_form">Early works to 1800</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85037400"
source="lcsh">
<part localtype="topical">Devotional literature, English</part>
</subject>
<subject source="local">
<part localtype="topical">Devotional literature, English</part>
<part localtype="genre_form">Early works to 1800</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85038491"
source="lcsh">
<part localtype="topical">Dissenters, Religious</part>
<part localtype="geographic">England</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043935"
source="lcsh">
<part localtype="topical">English poetry</part>
<part localtype="temporal">Early modern, 1500-1700</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043936"
source="lcsh">
<part localtype="topical">English poetry</part>
<part localtype="temporal">18th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043967"
source="lcsh">
<part localtype="topical">English prose literature</part>
<part localtype="temporal">Early modern, 1500-1700</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043968"
source="lcsh">
<part localtype="topical">English prose literature</part>
<part localtype="temporal">18th century</part>
</subject>
<subject source="local">
<part localtype="topical">Occasional sermons</part>
<part localtype="genre_form">Early works to 1800</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2010108004"
source="lcsh">
<part localtype="topical">Prayers</part>
<part localtype="genre_form">Early works to 1800</part>
</subject>
<subject source="local">
<part localtype="topical">Quietism</part>
<part localtype="genre_form">Early works to 1800</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85112647"
source="lcsh">
<part localtype="topical">Religious education of children</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85112694"
source="lcsh">
<part localtype="topical">Religious literature, English</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh87003781"
source="lcsh">
<part localtype="topical">Sermons, English</part>
<part localtype="temporal">17th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85120279"
source="lcsh">
<part localtype="topical">Sermons, English</part>
<part localtype="temporal">18th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85147466"
source="lcsh">
<part localtype="topical">Women authors, English</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056932"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Religion</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Religious life and customs</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300027093" source="aat">
<part localtype="genre_form">Commonplace books</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026669" source="aat">
<part localtype="genre_form">Sermons</part>
</genreform>
<persname rules="aacr">
<part localtype="agent_person">Baker, Augustine, 1575-1641</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Barton, William, 1598?-1678</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Bonheur, Dominique</part>
</persname>
<persname>
<part localtype="agent_person">Chilcot, William, 1663 or 1664-1711</part>
</persname>
<persname>
<part localtype="agent_person">Heyworth, Laurence</part>
</persname>
<persname source="local">
<part localtype="agent_person">Kirshaw, Sarah</part>
</persname>
<persname>
<part localtype="agent_person">Marsay, Charles Hector de Saint George, marquis de, 1688-1753</part>
</persname>
<persname source="local">
<part localtype="agent_person">Meadows, Sarah, 1654-1688</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Church of England</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/384259"
id="ref10"
level="file">
<did>
<unittitle>Untitled manuscript containing sermons</unittitle>
<unitdatestructured altrender="[16--]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38260 /locations/9"
containerid="39002092807040"
id="aspace_ref10_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_e9c89b167ebd8f65220dbfa3594ba0fa">
<head>Scope and Contents</head>
<p>Heyworth MS 1</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384260"
id="ref12"
level="file">
<did>
<unittitle>Untitled manuscript, in Latin, containing rules of conduct for the monastic life [England]</unittitle>
<unitdatestructured altrender="[16--]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38261 /locations/9"
containerid="39002092807057"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_cbdcb6ed0f468650483b74eeb14c1770">
<head>Scope and Contents</head>
<p>Heyworth MS 3</p>
<p>Bound in manuscript waste.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384261"
id="ref14"
level="file">
<did>
<unittitle>Untitled manuscript containing religious notes</unittitle>
<unitdatestructured altrender="[16--]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38262 /locations/9"
containerid="39002092807065"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
<scopecontent id="aspace_fd56fd9fcba93fcda2d57ecf50850f62">
<head>Scope and Contents</head>
<p>Heyworth MS 4</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384262"
id="ref16"
level="file">
<did>
<unittitle>Camborne, Robert. Sermons and sermon notes</unittitle>
<unitdatestructured altrender="1636" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1636">1636</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38263 /locations/9"
containerid="39002098408827"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_ef67c9c0ed117fb41fbbeb4af03b1344">
<head>Scope and Contents</head>
<p>Heyworth MS 5</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384263"
id="ref18"
level="file">
<did>
<unittitle>Ingram, John.<title localtype="simple" render="italic">
<part>Exposition of ye Catechisme</part>
</title>
</unittitle>
<unitdatestructured altrender="1673-1678" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1673">1673</fromdate>
<todate standarddate="1678">1678</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38264 /locations/9"
containerid="39002098408819"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
<scopecontent id="aspace_7db4de4682abf25118fc947219bc1c62">
<head>Scope and Contents</head>
<p>Heyworth MS 6</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384264"
id="ref20"
level="file">
<did>
<unittitle>[<title localtype="simple" render="italic">
<part>Leicester's commonwealth</part>
</title>?]</unittitle>
<unitdatestructured altrender="1620s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1620">1620</fromdate>
<todate standarddate="1629">1629</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38265 /locations/9"
containerid="39002098408801"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
<scopecontent id="aspace_c5747c16aaf0e4f21b7527a7085826f1">
<head>Scope and Contents</head>
<p>Heyworth MS 7</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384265"
id="ref22"
level="file">
<did>
<unittitle>Harpur, Henry. Commonplace book containing a collection of moral tales and reflections drawn principally from Sir Thomas More, Sir Walter Raleigh, Jeremy Taylor, and Causinus</unittitle>
<unitdatestructured altrender="1674-1675" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1674">1674</fromdate>
<todate standarddate="1675">1675</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38266 /locations/9"
containerid="39002098408793"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
<scopecontent id="aspace_bd5d6ddea37c40e0007a974f8e9899dc">
<head>Scope and Contents</head>
<p>Heyworth MS 9</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384266"
id="ref24"
level="file">
<did>
<unittitle>Untitled manuscript containing prayers, apparently keyed to the Psalms, and other notes</unittitle>
<unitdatestructured altrender="[16--]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38267 /locations/9"
containerid="39002098408785"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
<scopecontent id="aspace_d93253de2e08864f493221eb0c708f91">
<head>Scope and Contents</head>
<p>Heyworth MS 13</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384267"
id="ref26"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Lectures at Stroud</part>
</title> : volume containing lectures and sermons</unittitle>
<unitdatestructured altrender="1653" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1653">1653</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38268 /locations/9"
containerid="39002098408777"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
<scopecontent id="aspace_d4da0847c2bb886015c4cc146d0aa75e">
<head>Scope and Contents</head>
<p>Heyworth MS 14</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384268"
id="ref28"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>A Concordance of the Chief Heads of Scripture Common-placed</part>
</title>: manuscript volume in several hands</unittitle>
<unitdatestructured altrender="[16--]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38269 /locations/9"
containerid="39002098408769"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
<scopecontent id="aspace_808bd818497c3d8ff4e97b2c49d50be5">
<head>Scope and Contents</head>
<p>Heyworth MS 15</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384269"
id="ref30"
level="file">
<did>
<unittitle>Untitled manuscript containing meditations on a version of the Roman Catholic mysteries of the Rosary</unittitle>
<unitdatestructured altrender="[16--]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38270 /locations/9"
containerid="39002098408751"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
<scopecontent id="aspace_9fbcdd8e116657925e3abf2f6abb3d5a">
<head>Scope and Contents</head>
<p>Heyworth MS 16</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384270"
id="ref32"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>A Comfortable Companion for Afflicted Souls, being a threefold discorse collected out of Scripture by a woman</part>
</title> : manuscript in a single hand of a religious text partly composed of linked passages from the Bible</unittitle>
<unitdatestructured altrender="1684?" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1684">1684?</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38271 /locations/9"
containerid="39002098408744"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">12</container>
</did>
<scopecontent id="aspace_3fd75a7f274e31254f068c54ac8dfb05">
<head>Scope and Contents</head>
<p>Heyworth MS 17</p>
<p>Ownership inscription on front flyleaf: Sarah Seawell? her Book</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384271"
id="ref34"
level="file">
<did>
<unittitle>Diary containing entries concerning attendance at services and sermons and the author's spiritual life.</unittitle>
<unitdatestructured altrender="1775 January-October"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1775-01">1775 January</fromdate>
<todate standarddate="1775-10">1775 October</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38272 /locations/9"
containerid="39002098408728"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">13</container>
</did>
<scopecontent id="aspace_e1a8807c939db1ab28bdda5245643f27">
<head>Scope and Contents</head>
<p>Heyworth MS 18</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384272"
id="ref36"
level="file">
<did>
<unittitle>Hallett, Joseph, 1692?-1744. Untitled manuscript containing sermons</unittitle>
<unitdatestructured altrender="circa 1720?" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1720">circa 1720?</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38273 /locations/9"
containerid="39002098408736"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">14</container>
</did>
<scopecontent id="aspace_6c7f3db5c06891e3be5615abed610c89">
<head>Scope and Contents</head>
<p>Heyworth MS 19</p>
<p>Attributed to Hallett in acknowledgement list.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384273"
id="ref38"
level="file">
<did>
<unittitle>Untitled manuscript containing 31 poems, in an unidentified hand</unittitle>
<unitdatestructured altrender="circa 1700" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1700">circa 1700</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38274 /locations/4051"
containerid="39002098408546"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">15</container>
</did>
<scopecontent id="aspace_8bd1092f44486be3f325847f56e66814">
<head>Scope and Contents</head>
<p>Heyworth MS 31</p>
<p>Includes "The Misery of Mankind," "The Advantage of Thinking," "Death," "The Death of Christ," "Heaven," "The World," "Hell," and others.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384274"
id="ref40"
level="file">
<did>
<unittitle>Howard family? prayer book, in an unidentified hand, in Latin</unittitle>
<unitdatestructured altrender="1650?" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1650">1650?</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38275 /locations/9"
containerid="39002098408710"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">16</container>
</did>
<scopecontent id="aspace_0b84fb4543bf3fff70b9e0d52b1dca4e">
<head>Scope and Contents</head>
<p>Heyworth MS 32</p>
<p>Compilation of prayers for family use, with the Office of Benediction.</p>
</scopecontent>
<odd id="aspace_8f773155ae71df639625afe010849131">
<head>General note</head>
<p>On parchment.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/384275"
id="ref43"
level="file">
<did>
<unittitle>Calverley, John. Commonplace book containing selections from <title localtype="simple" render="italic">
<part>Eikon Basilike</part>
</title>; a Latin version of the <title localtype="simple" render="italic">
<part>Carmina Aurea</part>
</title> of Pythagoras; and mottoes from Wither's <title localtype="simple" render="italic">
<part>Emblemes</part>
</title>, in a single hand, in English, Latin, and Greek</unittitle>
<unitdatestructured altrender="1666" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1666">1666</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38276 /locations/9"
containerid="39002098408702"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">17</container>
</did>
<scopecontent id="aspace_5d473a07fe325b944d4bd688bbb9ddf7">
<head>Scope and Contents</head>
<p>Heyworth MS 35</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384276"
id="ref45"
level="file">
<did>
<unittitle>Forrester, Archibald. Untitled manuscript containing religious works</unittitle>
<unitdatestructured altrender="1684-1695?" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1684">1684</fromdate>
<todate standarddate="1695">1695</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38277 /locations/9"
containerid="39002098408694"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">18</container>
</did>
<scopecontent id="aspace_7dda397f565a4d5279638a9ddff42166">
<head>Scope and Contents</head>
<p>Heyworth MS 37</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384277"
id="ref47"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Prayer to the Sacred Virgin Mother, called the miraculous prayer against the Plague</part>
</title>, in an unidentified hand</unittitle>
<unitdatestructured altrender="[16--]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38278 /locations/9"
containerid="39002098408686"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">19</container>
</did>
<scopecontent id="aspace_29e4cc27034f860803361681c9dfa0b0">
<head>Scope and Contents</head>
<p>Heyworth MS 39</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384278"
id="ref49"
level="file">
<did>
<unittitle>Heereboord, Adrianus, 1614-1661. <title localtype="simple" render="italic">
<part>Collegium Ethicum or Part of Heereboord's Morall Philosophy in English.</part>
</title>..by Thomas Gleane Esquire.</unittitle>
<unitdatestructured altrender="1668" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1668">1668</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38279 /locations/9"
containerid="39002098408660"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">20</container>
</did>
<scopecontent id="aspace_4f06f8966f1c5af4fa0a5fb7a7a47c68">
<head>Scope and Contents</head>
<p>Heyworth MS 40</p>
<p>With a dedicatory epistle to Peter Gleane.</p>
</scopecontent>
<odd id="aspace_10832b65219228095ab1fd12f17877a6">
<head>General note</head>
<p>Binding: full black morocco, highly decorated in paneled gilt, with central monograms in red morocco; compartmented spine, also gilt.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/384279"
id="ref52"
level="file">
<did>
<unittitle>Diary concerning religion, in French, English and shorthand</unittitle>
<unitdatestructured altrender="circa 1720" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1720">circa 1720</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38280 /locations/9"
containerid="39002098408678"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">21</container>
</did>
<scopecontent id="aspace_9a63b898b914933c1aa1750a5c7f8dbd">
<head>Scope and Contents</head>
<p>Heyworth MS 48</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384280"
id="ref54"
level="file">
<did>
<unittitle>Campbell, Archibald, d. 1744.<title localtype="simple" render="italic">
<part>Doctrines of a Middle State between Death and Resurrection</part>
</title>, printed version, with manuscript additions and corrections by Campbell for a planned third edition : London, W. Taylor</unittitle>
<unitdatestructured altrender="1721" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1721">1721</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38281 /locations/9"
containerid="39002098408652"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">22</container>
</did>
<scopecontent id="aspace_765aecb105a2becc4fa24e1ddc6cb54a">
<head>Scope and Contents</head>
<p>Heyworth MS 53</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384281"
id="ref56"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>True relation of my sister Sarah Kirshaw her life [and] death. Who dyed at Poppleton neare Yorke. Janr.20.1656. Ano aetatis 21</part>
</title>, manuscript, corrected, in a single hand</unittitle>
<unitdatestructured altrender="1656" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1656">1656</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38282 /locations/9"
containerid="39002098408645"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">23</container>
</did>
<scopecontent id="aspace_945c106420a5e6f6a06166e5a81b5da5">
<head>Scope and Contents</head>
<p>Heyworth MS 55</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384282"
id="ref58"
level="file">
<did>
<unittitle>Commonplace book containing extensive quotations from Classical authors, in Latin and English. Headings include Poesia, Philosophia, Medicina, and Morbis.</unittitle>
<unitdatestructured altrender="1664-1688" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1664">1664</fromdate>
<todate standarddate="1688">1688</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38283 /locations/9"
containerid="39002098408637"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">24</container>
</did>
<odd id="aspace_b418e6cb607e558326ce0ead2fa905e5">
<head>General note</head>
<p>Heyworth MS 58</p>
<p>Armorial bookplate of Robert Spearman of Oldacres, Esq. Durham.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/384283"
id="ref60"
level="file">
<did>
<unittitle>Commonplace book concerning religion, in English and Latin</unittitle>
<unitdatestructured altrender="1690" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1690">1690</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38284 /locations/9"
containerid="39002098408629"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">25</container>
</did>
<scopecontent id="aspace_d9690f13b6888c27a10ed4b9ad9aed6b">
<head>Scope and Contents</head>
<p>Heyworth MS 59</p>
<p>Pencil annotation on front pastedown: Possibly kept by a chaplain in Williamite army.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384284"
id="ref62"
level="file">
<did>
<unittitle>Petrucci, Pietro Matteo, 1636-1701. <title localtype="simple" render="italic">
<part>Some Short, Spiritual & Holy Letters written by Petrucci Bishop Jesi with some Ejaculatory acts of Diverse Virtues, All very helpful to advance one towards perfection</part>
</title>, translation into English of Petrucci's <title localtype="simple" render="italic">
<part>Lettere e trattati spirituali e mistici</part>
</title>
</unittitle>
<unitdatestructured altrender="1690-1700" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1690">1690</fromdate>
<todate standarddate="1700">1700</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38285 /locations/4051"
containerid="39002098408611"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">26</container>
</did>
<scopecontent id="aspace_8f4444217f5dd80e7d4323eb05193794">
<head>Scope and Contents</head>
<p>Heyworth MS 63</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384285"
id="ref64"
level="file">
<did>
<unittitle>Collection of manuscript sermons and lectures. Includes a sermon on the anniversary of Charles II's restoration; one on the anniversary of the execution of Charles I; <title localtype="simple" render="italic">
<part>Lectures Upon The Church Catechism</part>
</title>; and <title localtype="simple" render="italic">
<part>Sermons Concerning Prayer</part>
</title>
</unittitle>
<unitdatestructured altrender="1683 May 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1683-05-29">1683 May 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38286 /locations/9"
containerid="39002098408603"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">27</container>
</did>
<scopecontent id="aspace_96105606d856da02d8d27730faf134b4">
<head>Scope and Contents</head>
<p>Heyworth MS 64</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384286"
id="ref66"
level="file">
<did>
<unittitle>Dyke, W?. Autograph letter, probably addressed to his congregation, concerning religion and fortitude during earthly trials. Dated from Watford</unittitle>
<unitdatestructured altrender="1640? Sep 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1640-09-20">1640? Sep 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38287 /locations/4051"
containerid="39002098408595"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">28</container>
</did>
<scopecontent id="aspace_17b053f205191b7c980133114f3b8b5e">
<head>Scope and Contents</head>
<p>Heyworth MS 68</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384287"
id="ref68"
level="file">
<did>
<unittitle>Commentary on the New Testament, in a single hand</unittitle>
<unitdatestructured altrender="circa 1660-1675"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1660">1660</fromdate>
<todate standarddate="1675">1675</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38288 /locations/9"
containerid="39002098408587"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">29</container>
</did>
<scopecontent id="aspace_9c9a0586c43c0c92b11d6c6b0b2f3485">
<head>Scope and Contents</head>
<p>Heyworth MS 69</p>
<p>Ownership inscription on front flyleaf: Liber Jacobi Tayloris, Donum Geo: Brentnall. Oddston, Leicestersh.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/384288"
id="ref70"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>De Votis</part>
</title>, manuscript devotional pamphlet containing sections headed "The Vows" and "Brief considerations upon ye vows"</unittitle>
<unitdatestructured altrender="[16--]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38289 /locations/9"
containerid="39002098408579"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">30</container>
</did>
<scopecontent id="aspace_a269f202f2ca579891aae1faa2bfe6b6">
<head>Scope and Contents</head>