-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1037.xml
1465 lines (1465 loc) · 96.9 KB
/
1037.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.soufam">beinecke.soufam</recordid>
<otherrecordid localtype="BIB">3476049</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Southcomb Family Papers
</titleproper>
<titleproper localtype="filing">Southcomb Family 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>June 1987</date>
<num>OSB MSS 156</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">3476049</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-7</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="3">3</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="1278">1,278</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:04:48-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/1037" level="collection">
<did>
<unittitle>Southcomb family papers</unittitle>
<unitid>OSB MSS 156</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.71</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">7 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1696">1696</fromdate>
<todate standarddate="1877">1877</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1818">1818</fromdate>
<todate standarddate="1852">1852</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_016cc89f1d33228f318b866fadda8c89">The Southcomb Family Papers document some aspects of the clerical careers of several generations of members of the Southcomb family, which held the rectorship of Rose Ash in Devon for over 200 years. Included are devotional commonplace books of Lewis Southcomb; 279 sermons, mostly dating from the first half of the nineteenth century, by four different family members; and the diaries of John Ladeveze Hamilton Southcomb.</abstract>
<origination label="Creator">
<famname source="local">
<part localtype="agent_family">Southcomb family</part>
</famname>
</origination>
</did>
<acqinfo id="aspace_0de0cb644a749bf9507ca5f9e8108aad">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Sotheby's on the James Marshall and Marie-Louise Osborn Fund, 1979.</p>
</acqinfo>
<userestrict id="aspace_c2683eef75ebc925be13f120f979e694">
<head>Conditions Governing Use</head>
<p>The Southcomb Family 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_fecbb0eac666f4696f7bef260b9b2548">
<head>Preferred Citation</head>
<p>Southcomb Family Papers. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_3d726103ff5b7857578663f5b6aa6700">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_7d1f887c0c965a3968efc7408c5cba4d">
<head>Processing Information</head>
<p>This collection was processed in the 1980s by a curatorial assistant to the James Marshall and Marie-Louise Osborn Collection; the finding aid was revised in June 2010.</p>
</processinfo>
<relatedmaterial id="aspace_3053fd0e104cb1d23502f22a38366971">
<head>Associated Materials</head>
<p>Printed works that were acquired with the Southcomb Family Papers were removed and cataloged separately. They are listed in the Appendix to this finding aid. Full catalog records for these items may be found in ORBIS, the Yale University Library catalog.</p>
</relatedmaterial>
<bioghist id="aspace_c1bb304cbcf483c7f76fa49b945afd0d">
<head>Southcomb Family of Rose Ash</head>
<p>Members of the Southcomb family served as rectors of the parish of Rose Ash in Devon almost uninterruptedly from 1675 until 1948. Only those represented in the Southcomb Family Papers are described here.</p>
<p>
<persname>
<part>Lewis Southcomb (1655-1733)</part>
</persname>, the first Southcomb to hold Rose Ash, refused to take the Oath of Allegiance to William and Mary in 1688, despite offers of preferment, and was deprived of the rectorship as a Nonjuror, but was restored after the death of James II in 1701. He was a noted preacher, and at least two of his sermons were printed in London during his lifetime.</p>
<p>
<persname>
<part>John Southcomb (1758-1822)</part>
</persname>, received his B.A. from Exeter College, Oxford in 1780 and married Susannah Granger in the same year. He succeeded his father John as rector of Rose Ash in 1788, also serving as patron of King's Nympton, and died in 1822.</p>
<p>
<persname>
<part>John Southcomb (1784-1840)</part>
</persname>, was the eldest son of John Southcomb and Susannah Granger. He received his B.A. in 1813 from Exeter College, Oxford and married Sarah Hamilton, the daughter of the Rev. William Hamilton of Donegal in 1817. Never rector of Rose Ash, to which his younger brother <persname>
<part>Edmund Hamilton (1792-1854)</part>
</persname> was preferred in 1822, John served as curate of Minehead and of St. Wenn in Cornwall until his death in 1840. John's son, <persname>
<part>John Ladaveze Hamilton Southcomb (1817-1886)</part>
</persname>, received his B.A. from All Souls' College, Oxford in 1840 and succeeded to the rectorship of Rose Ash on the death of his childless uncle Edmund in 1854.</p>
</bioghist>
<scopecontent id="aspace_5540582297c849bf8491c172283ae49f">
<head>Scope and Contents</head>
<p>The Southcomb Family Papers document some aspects of the clerical careers of several generations of members of the Southcomb family who successively held the rectorship of Rose Ash in Devon. Contents include three devotional commonplace books of Lewis Southcomb; 279 sermons, mostly dating from the first half of the nineteenth century, by four different family members; and the diaries of John Ladaveze Hamilton Southcomb. The materials assembled here span almost 200 years of the family's 273 years in Rose Ash, but the bulk of the papers are the 279 manuscript sermons for worship services, funerals, farewells, charities, and other special occasions ("for the Princess Charlotte Saxe-Coburg buried November 1817"; "for the distressed Irish," June 26, 1831) written by John Southcomb (1758-1822), John Southcomb (1789-1840), Edmund Southcomb (1792-1854), John Ladaveze Hamilton Southcomb (1817-1886) and several as yet unidentified writers. The remainder of the collection consists of eight diaries by John Ladaveze Hamilton Southcomb.</p>
</scopecontent>
<arrangement id="aspace_6401a4a87b4b976044b5adbfeca000d3">
<head>Arrangement</head>
<p>Organized into three series: I. Commonplace Books of Lewis Southcomb, 1696-1731; II. Sermons, 1788-1872; III. Diaries of John Ladaveze Hamilton Southcomb, 1835-1877.</p>
</arrangement>
<odd id="aspace_23088d0d01bb4f5576f4c14f1f0dbeb6">
<head>Appendix: List of Printed Works</head>
<p>Also among the Southcomb Papers were the following printed works:</p>
<p>-- 8 copies of J.L.H. Southcomb's Sermon "Liturgical Changes. Are they needful? Are they desirable?" preached 7 Jun 1860 at South Molton</p>
<p>-- 1 copy of "The Cathedral" A Sermon preached in the Cathedral Church of S. Peter Exeter on Sunday 7th January 1872 by Frederick Bishop of the Diocese</p>
<p>-- 3 printed almanacs: 1702 (in Welsh), 1744 and 1747</p>
<p>The five following published works, also part of the Southcomb Family Papers, are catalogued separately in the main card catalogue under the author's name:</p>
<p>-- Southcomb, Lewis (I), 1653-1733 "A Sermon Preached at the Funeral of the Reverend Mr. John Culme, Vicar of Ionaustone and Mollard, in Devon. December 2, 1691" London: 1692 <lb/>19.5 cm x 15.5 cm, 32 p.</p>
<p>-- Southcomb, Lewis (II), 1684-1754 <lb/> "The Great Christian Rule of Charity and Justice: Briefly considered in a Sermon." <lb/> Oxon: 1714 <lb/> 18 x 10.5 cm, 18 p.</p>
<p>-- Southcomb, Lewis (II), 1684-1754 <lb/> "A Treatise Against the Converting of Tithes and Offerings to Secular uses." <lb/> Oxon: 1726 <lb/> 18 x 12 cm, 100 p.</p>
<p>-- Southcomb, Lewis (II), 1684-1754 <lb/> "Subjection to the Higher Powers. A Necessary Duty in Every Christian. A Sermon" <lb/> London: 1735 <lb/> 19.5 x 12.5 cm, 31 p.</p>
<p>-- Southcomb, Lewis (II), 1684-1754 <lb/> "The Christians Peculiar Character: Or Universal Love. The Truest Mark of a Christian" <lb/> Sherbourne: 1752 <lb/> 20 x 16 cm, 24 p.</p>
</odd>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85026968"
source="lcsh">
<part localtype="topical">Clergy</part>
<part localtype="geographic">England</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85037400"
source="lcsh">
<part localtype="topical">Devotional literature, English</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/sh85093796"
source="lcsh">
<part localtype="topical">Occasional sermons</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh95008501"
source="lcsh">
<part localtype="topical">Sermons, English</part>
<part localtype="temporal">19th century</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/names/n79089735"
source="lcsh">
<part localtype="geographic">Devon (England)</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056935"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Religion</part>
<part localtype="temporal">19th century</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>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85026944"
source="lcsh">
<part localtype="topical">Clergy</part>
</subject>
<persname rules="aacr" source="local">
<part localtype="agent_person">Southcomb, Edmund, 1792-1854</part>
</persname>
<persname source="local">
<part localtype="agent_person">Southcomb, John, 1758-1822</part>
</persname>
<persname source="local">
<part localtype="agent_person">Southcomb, John, 1784-1840</part>
</persname>
<persname source="local">
<part localtype="agent_person">Southcomb, John Ladaveze Hamilton, 1817-1886</part>
</persname>
<persname>
<part localtype="agent_person">Southcomb, Lewis, 1653-</part>
</persname>
<famname source="local">
<part localtype="agent_family">Southcomb family</part>
</famname>
<corpname>
<part localtype="agent_corporate_entity">Church of England</part>
<part localtype="topical">Clergy</part>
<part localtype="genre_form">Sermons</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Church of England (Clergy)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/382685"
id="ref12"
level="series">
<did>
<unittitle>Commonplace Books of Lewis Southcomb, (1653-1733)</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.63</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1696-1731" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1696">1696</fromdate>
<todate standarddate="1731">1731</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_ea5f777f3d77eb624d4b982b2817332c">
<head>Scope and Contents</head>
<p>This series contains three quarto sized bound commonplace books belonging to Lewis Southcomb (1653-1733). He used these notebooks for translations, poems, epigrams, prayers, notes for sermons and other assorted writings. Although his writings are mostly devotional, they do occasionally exhibit political sentiments.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/382686"
id="ref14"
level="file">
<did>
<unittitle>"Poemata (qualiaqualia sunt), Epitaphia, Orationes, Epistolae...Versiones. Chronogrammata, etc.". in English, Greek, Latin and Hebrew containing poems, hymns and other notes, inscribed "Ludovico Tertio Sacerdote..." on title page. Items dated between 1696 and 1731 including:</unittitle>
<container altrender="/repositories/11/top_containers/38027 /locations/9"
containerid="39002098409650"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
<daoset altrender="/repositories/11/digital_objects/283478">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/33221053"
identifier="oid:33221053"
linktitle="898 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/33221054/full/!150,150/0/default.jpg"
identifier="oid:33221053"
linktitle="[Front cover]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/33221053"
identifier="oid:33221053"
linktitle="[Front cover]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"Poemata (qualiaqualia sunt), Epitaphia, Orationes, Epistolae...Versiones. Chronogrammata, etc.". in English, Greek, Latin and Hebrew containing poems, hymns and other notes, inscribed "Ludovico Tertio Sacerdote..." on title page. Items dated between 1696 and 1731 including:</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_596bbc1c996de238902fe1d36e66d0f8">
<head>Scope and Contents</head>
<p>"Wickedness Reproved, or: A Satyr Against Villainy" <lb/> "On a Bible Left behind by a Lady, and Sent to her by the Author" <lb/> "Sumu ______ An Address to her Royale Highness Qu Ann. 1702" <lb/> "On the Reformation-Book" <lb/> "Cupid Baffled: A Love Song" Nov 5, 1707 <lb/> "Great Britain's Distress and Remedy" Nov 18, 1730 <lb/> "Qn Ann's Speech to the Parliament Apr 5, 1710"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382687"
id="ref16"
level="file">
<did>
<unittitle>"Poetical Aspirations: Or Divine Breathings Part 2nd" a manuscript volume of devotional poems including:</unittitle>
<container altrender="/repositories/11/top_containers/38028 /locations/9"
containerid="39002098407738"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">2</container>
<daoset altrender="/repositories/11/digital_objects/249426">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/33097870"
identifier="oid:33097870"
linktitle="194 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/33097871/full/!150,150/0/default.jpg"
identifier="oid:33097870"
linktitle="[Front cover]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/33097870"
identifier="oid:33097870"
linktitle="[Front cover]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"Poetical Aspirations: Or Divine Breathings Part 2nd" a manuscript volume of devotional poems including:</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_4ff866d74c81bbbadd5d137618b84c27">
<head>Scope and Contents</head>
<p>"Maundy Thursday Apr. 15, 1731." <lb/> "Religious Wisdom" <lb/> "Seraphic Suit for Grace" <lb/> "Divine Life Perfected" <lb/> "Celestial Ejaculation"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/382688"
id="ref18"
level="file">
<did>
<unittitle>Notes on St. Augustine, prayers and notes for sermons, signed and dated on the first page: 6 July 1696.</unittitle>
<container altrender="/repositories/11/top_containers/38028 /locations/9"
containerid="39002098407738"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">3</container>
<daoset altrender="/repositories/11/digital_objects/249425">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/33098065"
identifier="oid:33098065"
linktitle="186 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/33098066/full/!150,150/0/default.jpg"
identifier="oid:33098065"
linktitle="[Front cover]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/33098065"
identifier="oid:33098065"
linktitle="[Front cover]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Notes on St. Augustine, prayers and notes for sermons, signed and dated on the first page: 6 July 1696.</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_b1d7ba8af6cfecd47705b25d6c6c6e5c">
<head>Scope and Contents</head>
<p>Greek, Latin & English.<lb/> Excerpts from Bishop Lauds'<title localtype="simple" render="italic">
<part>Devotions</part>
</title>
<lb/> "Mr. Selden's Recantation"<lb/> A copy of a letter written to Mr. Kirkham Aug 15, 1715<lb/> "Out of Parson's Christian Directory by Dr. Stanehope"<lb/> Also Notes by John (III) Southcomb 1789-1840.<lb/> From Pretymans<title localtype="simple" render="italic">
<part>Christian Theology</part>
</title>
<lb/> Also annotations by John Landeveze Hamilton Southcomb, 1817-1886.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/382689"
id="ref21"
level="series">
<did>
<unittitle>Sermons</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.67</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured altrender="1788-1872" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1788">1788</fromdate>
<todate standarddate="1872">1872</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_c844e22a40a0766a2f7e94441f522a6c">
<head>Arrangement</head>
<p>Sermons is organized into five subseries by author: John Southcomb (1758-1822); John Southcomb (1784-1840); Edmund Southcomb (1792-1854); Anonymous and Unattributed; and John Ladaveze Hamilton Southcomb (1817-1886).</p>
</arrangement>
<scopecontent id="aspace_cb7cee4b79f4d1a6b382565b646e3bb9">
<head>Scope and Contents</head>
<p>The series contains 279 sermons by four members of the Southcomb family. Most of the sermons contain notes as to when and where they were preached (some up to eight or ten times and by two or three different preachers), the amount collected in offertory, and their duration. Although John Southcomb was never rector at Rose Ash, his 137 sermons make up nearly half of the entire collection. Both his and Edmund's sermons are mostly devotional, and mostly unsigned.</p>
<p>Because 95 per cent of the sermons assembled here are unsigned and only dated on the occasions preached, the handwriting and the first date and place of delivery for each sermon have been used as criteria for authorship. Where no date was inscribed on the sermon, the water mark date of the paper has been placed in square brackets; when there was no date and no water mark visible, the sermon has been placed at the end of the series.</p>
<p>There are a few sermons, particularly among John Southcomb's (1784-1840), which have a strikingly different authorship; however, lacking better evidence, these have been attributed to him because the date and location noted on the sermon, and even the handwriting of the note itself, are consistent with others of his.</p>
<p>Judging from the notes on the sermons, John Ladaveze Hamilton Southcomb, in addition to writing more than eighty sermons of his own, used and amended a great many of the sermons in this collection. Some of his sermons too reflect the important events of the times: included among his are a sermon "For the distressed Manufacturers -- Owing to the scarcity of cotton from the Yankee Civil War" and another "Written on occasion of Fast in consequence of the military outbreak in India," October 7, 1857.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/382690"
id="ref23"
level="subseries">
<did>
<unittitle>John Southcomb ( 1758-1822)</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/382691"
id="ref24"
level="file">
<did>
<unittitle>Miscellaneous photocopies pertaining to Southcomb family and to Rose Ash.</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382692"
id="ref25"
level="file">
<did>
<unittitle>1. 5 Oct 1788, Matt. 25:19 <lb/>2. 8 May 1791, Luke 10:37 <lb/>3. 24 Jul 1791 <lb/>4. Dec 1794, Gen. 1</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382693"
id="ref26"
level="file">
<did>
<unittitle>5. 5 May 1805, Matt. 16:26 <lb/>6. 2 Aug 1807, Matt. 24:2 <lb/>7. 23 Oct 1808, Tit. 2:8</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382694"
id="ref27"
level="file">
<did>
<unittitle>8. 1816, Job 19:21, "South Molton Charity Sermon" <lb/>9. 30 Jul 1820, Heb. 11:13 <lb/>10. 7 Jul 1822, Matt. 25:34-36</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">4</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/382695"
id="ref28"
level="subseries">
<did>
<unittitle>John Southcomb (1784-1840)</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/382696"
id="ref29"
level="file">
<did>
<unittitle>11. 8 May 1814, Luke 16:26 <lb/>12. [1815] or later, Mal. 2:10, "Sermon on the Trinity" <lb/>13. 31 Dec 1815, John 12:48 <lb/>14. 28 Sep 1817, Matt. 28:6</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382697"
id="ref30"
level="file">
<did>
<unittitle>16. 8 Feb 1818, 1 Chron. 28:9 <lb/>17 & 18. 15 Feb 1818, Matt 15:28, For the Second Sunday in Lent; 22 Feb 1818, Eph. 5:9, For the Third Sunday in Lent <lb/>19 & 20. 22 Feb 1818, Eccl. 12:1 On the duties of the Young; 1 Mar 1818, Prov. 16:31 The duties of the Old <lb/>21. 26 Apr 1818, Rev 20:12-13</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382698"
id="ref31"
level="file">
<did>
<unittitle>22. 3 May 1818, 1 Pet. 4:7, For the Sunday of the Ascension <lb/>23. 17 May 1818, 1 Cor. 15:33 <lb/>24. 26 Jul 1818, Luke 19:41-44, For the tenth Sunday after Trinity. <lb/>25, 26 & 27. 2 Aug 1818, Luke 18:9, For the 11th Sunday after Trinity; 9 Aug 1818, 2 Cor 3:6, For the 12th Sunday after Trinity; 16 Sun 1818, Luke 19:37, For the 13th Sunday after Trinity <lb/>28. 25 Oct 1818, Psalm 119:94, The Xian's Surrender of himself to God</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382699"
id="ref32"
level="file">
<did>
<unittitle>29. [1818] or later, Eccl. 8:11, God's delay of the Punishment of Sin <lb/>30. 14 Feb 1819, Luke 8:15, For Sexagesima Sunday <lb/>31. 15 Aug 1819, Matt 20:1, For Septuagesima Sunday <lb/>32. 25 Oct 1819, Luke 16:8, On the Parable of the unjust Steward</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382700"
id="ref33"
level="file">
<did>
<unittitle>33. 26 Dec 1819, 1 Tim. 1:19, Farewell Sermon for Carhampton <lb/>34. 1 Apr 1820, Luke 15:20, The Sincere Penitent pitied and Forgiven <lb/>35. 14 May 1820, Acts 1:11 <lb/>36. 23 Jul 1820, Luke 10:42, The one thing needful</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382701"
id="ref34"
level="file">
<did>
<unittitle>37. 29 Apr 1821, Luke 23:28, Our Saviour's Solemn and Affectionate Warning <lb/>38. 10 Junn 1821, John 16:7-8, For Whitsunday <lb/>39. 30 Sep 1821, Matt 3:2, Repentance and Conversion <lb/>40. 23 Dec 1821, John 6:67-8, On the necessity of settled principles in Religion (fragment). <lb/>41. [1821] or later, 2 Tim. 1:10, Proofs of Immortality from Revelation <lb/>42. 30 Jun 1822, John 7:37</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382702"
id="ref35"
level="file">
<did>
<unittitle>43. 11 Aug 1822, Lev. 19:12 <lb/>44 & 45. 7 Sept 1823 (am), Joh 5:4); 7 Sept 1823 (pm) Isa 55:6 <lb/>46. 2 Nov 1823 (am), Psalm 31:6 <lb/>47. 2 Nov 1823 (pm), Isa. 61:1</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382703"
id="ref36"
level="file">
<did>
<unittitle>48. 9 Feb 1824, Rev. 3:5, The Rewards of the Conquering Christian <lb/>49. [1824] or later, John 11:25-6, A Funeral Discourse <lb/>50. [1824] or later, Matt 5:7, For the Benefit of the Widdescombe Infirmary. With 8pp. excerpted from a <lb/>book of sermons, c. 1794. <lb/>51. 17 Jul 1825, Mark 8:1, Seventh Sunday after Trinity</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382704"
id="ref37"
level="file">
<did>
<unittitle>52. 28 Aug 1825, Heb. 4:14-16. On Confirmation <lb/>53. 26 Oct 1825, For a Collection for rebuilding & increasing our Established Churches <lb/>54. 15 Jan 1826, Psalm 119:60, The Folly and Danger of Delaying <lb/>55. 4 Jun 1827, Matt 13:31, Fifth Sunday after the Epiphany <lb/>56. 8 Jul 1827, John 5:28-9, The General Resurrection. <lb/>57. 25 Dec 1828, John 1:14</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382705"
id="ref38"
level="file">
<did>
<unittitle>58. 22 Feb 1829, Rev. 21:3-5, The happiness of heaven <lb/>59. 1 Mar 1829, John 3:5-6, For the fifth Sunday after the Epiphany <lb/>60. 1 Mar 1829, John 3:5-6, For the Sixth Sunday after after the Epiphany <lb/>61. 8 Mar 1829, Matt 4:1, For the First Sunday in Lent <lb/>62. 8 Mar 1829, Matt 20:6, For Septuagesima Sunday <lb/>63. 15 Mar 1829, Isa. 1:16-7</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382706"
id="ref39"
level="file">
<did>
<unittitle>64. 26 Apr 1829, 1 John 5:4, For the First Sunday after Easter <lb/>65. 21 Jun 1829, Luke 16:31, First Sunday after Trinity <lb/>66. 12 Jul 1829, Sam 12:7, Fourth Sunday after Trinity <lb/>67. 19 Jul 1829, Rom 12:2</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382707"
id="ref40"
level="file">
<did>
<unittitle>68. 20 Sep 1829, Matt. 18:14, Preached at South Molton for the benefit of the Charity Children, with later insert by J.L.H. Southcomb, 8 p. <lb/>69. 27 Dec 1829, John 1:11, Sunday after Christmas 1829 <lb/>70. 3 Jan 1830, Psalm 39:6, New Year <lb/>71. 10 Jan 1830, Matt 8:10</unittitle>
<container altrender="/repositories/11/top_containers/38029 /locations/9"
containerid="39002098407746"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382708"
id="ref41"
level="file">
<did>
<unittitle>72. 23 May 1830, Heb. 9:24, The Ascension of Christ to the Divine Presence on Our Behalf <lb/>73. 16 Jan 1831, Heb. 4:15, The Comparison of the High Priest of the Church <lb/>74. 1 May 1831, Rom. 5:1, Justification by Faith <lb/>75. 19 Jun 1831, John 7:45-46</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382709"
id="ref42"
level="file">
<did>
<unittitle>76. 26 Jun 1831, Job 4:8-9, Preached for the distressed Irish <lb/>77. 24 July 1831, Psalm 90:12, Sunday after the Funeral for Mr. Pearce of Brolton Court <lb/>78. 6 Nov 1831, Psalm 84:2, The Desire of the faithful to enter the Courts of the Lord. <lb/>79. 13 Nov 1831, Matt. 11:28, On the Comforts of Religion</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382710"
id="ref43"
level="file">
<did>
<unittitle>80. [1831] or later, Matt. 11:28 <lb/>81. 29 Jan 1832, 2 Tim. 3:5 <lb/>82. 26 Feb 1832 (am), Prov. 1:7 <lb/>83. 26 Feb 1832 (pm), Luke 16:22-23</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382711"
id="ref44"
level="file">
<did>
<unittitle>84. 18 Mar 1832, Luke 16:27-31 <lb/>85. 21 Mar 1832, 1 Kings 8:37-40, Fast day for Cholera <lb/>86. 15 Apr 1832, John 8:46, The happiness of a virtuous life <lb/>87. 29 May 1832, 2 Cor. 13:11</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382712"
id="ref45"
level="file">
<did>
<unittitle>88. 3 Jun 1832, Psalm 144:3 <lb/>89. 16 Sep 1832, 1 Tim. 1:15 <lb/>90. 20 Jan 1833, Gen. 6:3 <lb/>91. 23 Sep 1832 (am), Num. 9: 9-10, 13 <lb/>92. 23 Sep 1832 (pm), 1 Cor. 11:23-26 For the Sacrament <lb/>93. 30 Sep 1832, Acts 20: 25 & 32, Farewell Sermon at Minehead <lb/>94. 30 Sep 1832, Acts 20: 25 & 32, Farewell Sermon at Minehead <lb/>95. 4 Dec 1832, Acts 24: 16, A Conscience void of Offense <lb/>96. 11 Aug 1833, Rom. 14: 7-8, The Believing Union with Christ <lb/>97. 17 Nov 1833, Num. 23:10, The death of the Righteous <lb/>98. 1 Dec 1833, Heb. 9:27, Death and Judgement <lb/>99. 20 Apr 1834, Jam. 3:2, The Corruption of the human heart</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">5-6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382713"
id="ref46"
level="file">
<did>
<unittitle>100 & 101. 7 Sep 1834, 2 Cor. 13:11, Farewell Sermon; No date, Psalm 72:8-11, For the Promotion of Christian Knowledge <lb/>102. [1835] or later, Luke 18:14, The Pharisee and the Publican <lb/>103. 30 May 1836, Luke 18:38, Miracle of the Blind Beggar <lb/>104. 17 Jul 1836, Matt. 25:14</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382714"
id="ref47"
level="file">
<did>
<unittitle>105. 4 Sep 1836, 1 Kings 6:7, The building of the heavenly Temple <lb/>106. 9 Oct 1836 (am), Exo. 33:18, The Prayer of Moses for a view of God <lb/>107. 9 Oct 1836 (pm), Luke 7:12, The Funeral at the Gate of Nain <lb/>108. 6 Nov 1836. Isa. 43:25 [Fragment] <lb/>109. 6 Nov 1836. Acts 27:23-24, The Message Sent to Paul in the Storm</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382715"
id="ref48"
level="file">
<did>
<unittitle>110. 13 Nov 1836, Psalm 113:5&6, The Condescension of God <lb/>111. [1836] or later, John 15:5, The True Vine <lb/>112. [1836] or later, 2 Sam. 12:13, The Afflicted David--A Pardoned Sinner <lb/>113. [N.D.], 2 Sam. 12:13, The Afflicted David--A Pardoned Sinner</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382716"
id="ref49"
level="file">
<did>
<unittitle>114. Mar 1837, Luke 6:47-49, The Two Builders <lb/>115 & 116. 30 Apr 1837, Mark 10:26-27, The Disciples Wondering at the difficulties of Salvation; 21 May 1837, Matt. 11:28, Rest in Christ for the Heavy Laden <lb/>117. 18 Jun 1837, Luke 18:13, A Sinner Praying for Mercy <lb/>118. 9 Jul 1837, Psalm 23:1, David's Confidence in the Prospects of the Future. <lb/>119. 23 Jul 1837, 2 Tim. 1:18, St. Paul's Prayer for Onesiphorus</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382717"
id="ref50"
level="file">
<did>
<unittitle>120. 30 Jul 1837, 1 Sam. 4:13, Eli trembling before the Ark <lb/>121. 13 Aug 1837, Phil. 4:19, Man's need supplied from God's riches <lb/>122. 4 Dec 1838, Mal. 4:2, The Sun of Righteousness <lb/>123. 10 Dec 1838, Tit. 3:5, Our Life</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382718"
id="ref51"
level="file">
<did>
<unittitle>124. 13 Dec 1838, John 1:29, The Lamb of God (Atonement) <lb/>125. 13 Dec 1838, 1 Cor. 5:7-8, Christ our Passover (Easter) <lb/>126. 13 Dec 1838, 1 Cor. 3:11, Jesus Christ the Foundation <lb/>127. 15 Dec 1838, John 15:5, The True and Living Way</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382719"
id="ref52"
level="file">
<did>
<unittitle>128. 18 Dec 1838, John 20:31, The Son of God <lb/>129. 23 Dec 1838, Matt. 5:17, The Fulfilling of the Law and the Prophets <lb/>130. 2 Jan 1839, Luke 4:18, The Preacher of the Gospel "Very well suited for the poorer class--or, in perilous or apprehensive times" <lb/>131. 5 Jan 1839, Rev. 22:12, The judge of the Quick and the Dead</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382720"
id="ref53"
level="file">
<did>
<unittitle>132 & 133. 29 Mar 1840, Luke 13:5, On the Nature of repentance, and the only true method of atttaining it. 29 Mar 1840, Luke 13:5 <lb/>134. 5 Jul 1840, Phil. 4:19, Man's needs supplied from God's Riches <lb/>135. 12 Apr 1840, Luke 22:19 <lb/>136. [c. 1840] Isa. 48:18</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382721"
id="ref54"
level="file">
<did>
<unittitle>137. N.D., Matt. 18:35, The Cruel Servant <lb/>138. N.D., Isa. 48:18, The Divine Commandments Sources of Peace <lb/>139. N.D., Eccl. 12:7, The End of Man's Earthly History</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382722"
id="ref55"
level="file">
<did>
<unittitle>140. N.D., Psalm 37:37, Funeral <lb/>141 & 142. N.D., Psalm 40:8, Sins Remembered by God; N.D., Isa. 43:25, Sins Blotted Out by God <lb/>143. N.D., Luke 7:37-38, The Character of the Pardoned <lb/>144. N.D., Luke 10:41-42, True Religion Exemplified in Mary</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382723"
id="ref56"
level="file">
<did>
<unittitle>145. N.D., Psalm 131:2, Weanedness of Soul <lb/>146. N.D., Job 38:7 <lb/>147. N.D., Matt. 9:2, Miracle of the Sick of the Palsy <lb/>148. N.D., 2 Kings 7:2, The Unbelief of the Samaritan Lord. And a fragment in John (II) Southcomb's hand, 1 p.</unittitle>
<container altrender="/repositories/11/top_containers/38030 /locations/9"
containerid="39002098407753"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">17</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/382724"
id="ref57"
level="subseries">
<did>
<unittitle>Edmund Southcomb (1792-1854)</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/382725"
id="ref58"
level="file">
<did>
<unittitle>149. 10 Jul 1814, 1 John 2:17 <lb/>150. 18 Dec 1818, John 5:40-42, The Reasons why men do not come to Christ. <lb/>151. [1819] or later, Luke 17:17-18 <lb/>152. [1819] or later, Matt. 8:2 <lb/>153. [1819] or later, Luke 17:12-13</unittitle>
<container altrender="/repositories/11/top_containers/38031 /locations/9"
containerid="39002098407761"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382726"
id="ref59"
level="file">
<did>
<unittitle>154. [1819] or later, Hab. 2:14 <lb/>155. 13 Feb 1820, 1 Kings 13:21, On indecision in Religion <lb/>156. 5 Mar 1820, Matt. 15:28, Second Sunday in Lent <lb/>157. 26 Mar 1820, 1 Peter 5:7, Casting Our Care upon God</unittitle>
<container altrender="/repositories/11/top_containers/38031 /locations/9"
containerid="39002098407761"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382727"
id="ref60"
level="file">
<did>
<unittitle>158. 23 Dec 1820, 2 Cor. 4:17 <lb/>159. 8 Jul 1821, Luke 15:10 <lb/>160. 16 Sep 1821, 1 Cor. 10:11-12 <lb/>161. 23 Sep 1821, 1 Cor. 15:9-10 <lb/>162. 14 Oct 1821, Luke 18:14, From the Gospel of the Eleventh Sunday after Trinity</unittitle>
<container altrender="/repositories/11/top_containers/38031 /locations/9"
containerid="39002098407761"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382728"
id="ref61"
level="file">
<did>
<unittitle>163. 26 Dec 1821, 1 John 4:8, God is Love <lb/>164. 28 Dec 1821, John 11:25-27 <lb/>165. 30 Jun 1822, 1 Sam. 12:24-25, Fourth Sunday after Trinity <lb/>166. 27 Oct 1822, Isa. 64:6, A Sermon Occasioned by the Death of the Rev'd. J.B. Karstake</unittitle>
<container altrender="/repositories/11/top_containers/38031 /locations/9"
containerid="39002098407761"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382729"
id="ref62"
level="file">
<did>
<unittitle>167. 28 Nov 1824, Rom. 13:12 <lb/>168. [1828] or later, Psalm 30:1-2 <lb/>169. [1829] or later, Matt. 6:11 <lb/>170. Aug 1831, Luke 13:6-7</unittitle>
<container altrender="/repositories/11/top_containers/38031 /locations/9"
containerid="39002098407761"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382730"
id="ref63"
level="file">
<did>
<unittitle>171. [1831] or later, Heb. 6:11, The "Fifth Month" Sermon <lb/>172. Sep 1832, Deu. 34:5, The Death of Moses <lb/>173. 1 Jan 1840, Gen. 1:14, For New Year's Day, or otherwise <lb/>174. c. 1843, 2 Kings 12:4-5, Society for enlarging, building and repairing Churches and Chapels</unittitle>
<container altrender="/repositories/11/top_containers/38031 /locations/9"
containerid="39002098407761"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref63_c2" localtype="folder" parent="aspace_ref63_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/382731"
id="ref64"
level="file">
<did>
<unittitle>175. Oct 1847, Jer. 5:24 <lb/>176. 16 Mar 1851, Mark 5:27-28, The Woman who touched Jesus was made Whole <lb/>177. N.D., 1 Cor. 11:26, On Errors Arising from a Misunderstanding of the Holy Sacrament of the Lord's Supper.</unittitle>
<container altrender="/repositories/11/top_containers/38031 /locations/9"
containerid="39002098407761"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">7</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/382732"
id="ref65"
level="subseries">
<did>
<unittitle>Anonymous and Unattributed</unittitle>
</did>
<scopecontent id="aspace_fe0fe22e4e69689c24ba5b6c5f30b318">
<head>Scope and Contents</head>
<p>Eleven sermons are in one hand; six are in other hands.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/382733"
id="ref66"
level="file">
<did>
<unittitle>178. 8 Oct 1826, Mark 1:41-43 <lb/>179. 27 Jul 1828, Acts 8:36-37 <lb/>180. 7 Nov 1830, Heb. 11:14-16 <lb/>181. 3 Jul 1831, Isa. 1:2</unittitle>
<container altrender="/repositories/11/top_containers/38031 /locations/9"
containerid="39002098407761"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">8</container>
</did>