-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path977.xml
3596 lines (3596 loc) · 199 KB
/
977.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.adams">beinecke.adams</recordid>
<otherrecordid localtype="BIB">8507429</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the R. A. (Revels Alcorn) Adams Papers
</titleproper>
<titleproper localtype="filing">Adams (R. A. (Revels Alcorn)) Papers</titleproper>
<author>by Tina Evans and Jennifer Meehan</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</date>
<num>JWJ MSS 48</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">8507429</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-13, 14 (Oversize)</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-08T23:59:40-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:59</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/977" level="collection">
<did>
<unittitle>R. A. (Revels Alcorn) Adams papers</unittitle>
<unitid>JWJ MSS 48</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>6.35</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">14 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1902">1902</fromdate>
<todate standarddate="1945">1945</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_d65827ffcc9afc1b07626025974353ca">The collection consists of writings, sheet music, scrapbooks, photographs, and other papers, stemming from R. A. Adams's activities as an evangelistic minister of the African Methodist Episcopal Church and as a writer, lecturer, and publisher of pamphlets on topics relating to race, religion, contraception, interpersonal relations, and socioeconomics. The collection documents aspects of African American religion and culture, especially in the South, in the early 20th century, and in particular the evangelistic, educational, and literary activities of one African American Methodist minister.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Adams, R. A. (Revels Alcorn), 1869-</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_089c95c27c3d475e4e1fd69976ac2ec5">
<head>Immediate Source of Acquisition</head>
<p>Purchased from William Reese Co. on the Edwin J. Beinecke Book Fund and Serendipity Books on the James Weldon Johnson Memorial Collection of Negro Arts & Letters Fund, 2008.</p>
</acqinfo>
<accessrestrict id="aspace_15752b18c2b903c0f0ee3fe1e3a7ede6">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_8012b7475e7dcd444d6abe77e7a0bd6e">
<head>Conditions Governing Use</head>
<p>The R. A. (Revels Alcorn) Adams Papers is 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_0c7349387910e4642202e2b642885cbf">
<head>Preferred Citation</head>
<p>R. A. Adams Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_b306aa6ad187dcb65e0152aadc0b933e">
<head>Processing Information</head>
<p>The two acquisitions comprising this collection were received by the library within six months of each other. Even though the two acquisitions were purchased from different vendors, the original source of the material was the same. Therefore the decisions was made to interfile material from both acquisitions. Along with interfiling, material in this collection was rehoused and organized as a whole. This work was carried out as part of basic processing shortly after receipt of the material in 2008.</p>
</processinfo>
<bioghist id="aspace_ecbe92cffacc0c9779ab87de80928faf">
<head>R. A. (Revels Alcorn) Adams (b. 1869)</head>
<p>R. A. Adams was born on 28 February 1869 in Vicksburg, Mississippi. He attended Payne Theological Seminary in Wilberforce, Ohio, and served as a Methodist minister in Clarksdale, Brookhaven, Jackson, and Natchez, Mississippi. According to his own biographical statement, Adams entered the ministry, presumably of the African Methodist Episcopal Church, on 23 August 1891 and worked in the pastorate until 1910, after which time he traveled around the South and parts of the Midwest and Mid-Atlantic regions as an evangelist and lecturer. He wrote and lectured on the topics of religion, theology, philosophy, race, eugenics, prophylactics, and social behavior. As president and presumably founder of The Progress Publishing Co. in Wichita, Kansas, he collaborated on and published pamphlets on the same topics, including his own <title localtype="simple" render="italic">
<part>Highlights of Negro History</part>
</title>, <title localtype="simple" render="italic">
<part>Psychoanalysis and Racial Affinity</part>
</title>, and <title localtype="simple" render="italic">
<part>Syphilis, The Black Plague</part>
</title>.</p>
<p>In addition to sermons and lectures, Adams also wrote novels, critical essays, poetry, and music, most, if not all, of which were never published. His novels include <title localtype="simple" render="italic">
<part>Babylon</part>
</title>, described by Adams as "Religious - Sociological - Interracial - Stresses Gospel as Panacea for all Social Ills", <title localtype="simple" render="italic">
<part>Deacon Simpson</part>
</title>, "Story of Negro Church Life - Contrasting Old, Unlettered Ministers with Modern Products - Evolution in Negro Church Life", and <title localtype="simple" render="italic">
<part>The Great Cathedral</part>
</title>, "Exposure of Graft, Corruption, Autocracy, and Ecclesiastical Misfeasance - Predicting Revolution and Reformation of the Negro Church". His critical essays likewise explore the Negro Church in the late 19th and early 20th centuries, in addition to other topics, and include works such as "The Negro and His Church" and "The Negro Church - What Ails It?".</p>
</bioghist>
<scopecontent id="aspace_171f177aadfafa5a36c8708dc8ead59c">
<head>Scope and Contents</head>
<p>The collection consists of writings, sheet music, scrapbooks, photographs, and other papers, stemming from R. A. Adams's activities as an evangelistic minister of the African Methodist Episcopal Church and as a writer, lecturer, and publisher of pamphlets on topics relating to race, religion, contraception, interpersonal relations, and socioeconomics. The collection documents aspects of African American religion and culture, especially in the South, in the early 20th century, and in particular the evangelistic, educational, and literary activities of one African American Methodist minister.</p>
<p>Writings by Adams comprise the bulk of the collection and include typescripts, some of which are corrected, and manuscripts of addresses, sermons, and critical essays, as well as typescripts and manuscripts of creative works such as poetry, novels, and a play. Also included are typescripts of writings by others, on which Adams collaborated or which he seems to have published as president of The Progress Publishing Co.; as well as typescripts of musical programs and sheet music for songs by Adams; scrapbooks containing correspondence, letters of introduction, resolutions, testimonials, and clippings, documenting Adams's evangelistic activities from 1910 to 1921; photographs of Adams and his family; and printed material and other loose papers.</p>
</scopecontent>
<arrangement id="aspace_1e86b04db25a86210ed61b1e2557a08c">
<head>Arrangement</head>
<p>The collection is organized into four subseries: I. Writings, 1902-1944. II. Writings by Others, 1930s. III. Music, undated. IV. Other Papers, 1911-1945.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">African American authors</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001817"
source="lcsh">
<part localtype="topical">African American churches</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001818"
source="lcsh">
<part localtype="topical">African American clergy</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001867"
source="lcsh">
<part localtype="topical">African American Methodists</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001887"
source="lcsh">
<part localtype="topical">African American preaching</part>
</subject>
<subject source="local">
<part localtype="topical">African Americans</part>
<part localtype="topical">Religion</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004342"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="topical">African American authors</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85031589"
source="lcsh">
<part localtype="topical">Contraception</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh88001829"
source="lcsh">
<part localtype="topical">Economics</part>
<part localtype="topical">Sociological aspects</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85045538"
source="lcsh">
<part localtype="topical">Eugenics</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85045940"
source="lcsh">
<part localtype="topical">Evangelistic work</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85067484"
source="lcsh">
<part localtype="topical">Interpersonal relations</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85110232"
source="lcsh">
<part localtype="topical">Race</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85112549"
source="lcsh">
<part localtype="topical">Religion</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85134665"
source="lcsh">
<part localtype="topical">Theology</part>
</subject>
<persname>
<part localtype="agent_person">Adams, R. A. (Revels Alcorn), 1869-</part>
</persname>
<persname source="local">
<part localtype="agent_person">Bearer, A. G.</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">African Methodist Episcopal Church</part>
</corpname>
<corpname rules="aacr" source="local">
<part localtype="agent_corporate_entity">Progress Publishing Co</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/356371"
id="ref11"
level="series">
<did>
<unittitle>Writings</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3.75</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">9 boxes</physdesc>
<unitdatestructured altrender="1902-1944" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1902">1902</fromdate>
<todate standarddate="1944">1944</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_21d783b019d89452cea686841b7f2fe8">
<head>Scope and Contents</head>
<p>This series consists of typescripts, some of which are corrected, and manuscripts of creative, philosophical, religious, and educational works written by R. A. Adams.</p>
</scopecontent>
<arrangement id="aspace_5f5dca038052fa6d314dfe20e5e9a24f">
<head>Arrangement</head>
<p>Arranged into six subseries: Addresses, Novels, Plays, Poetry, Sermons, and Shorter Works.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/356372"
id="ref13"
level="subseries">
<did>
<unittitle>Addresses</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/356373"
id="ref14"
level="file">
<did>
<unittitle>Letters and address</unittitle>
<unitdate label="creation" unitdatetype="inclusive">circa 1941, 1944</unitdate>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356374"
id="ref15"
level="file">
<did>
<unittitle>Miscellaneous pages, typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356375"
id="ref16"
level="file">
<did>
<unittitle>Untitled typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356376"
id="ref17"
level="file">
<did>
<unittitle>"The Battles of Peace", typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356377"
id="ref18"
level="file">
<did>
<unittitle>"Better trained and more consecrated ministry necessary to perpetuate the church among our people", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356378"
id="ref19"
level="file">
<did>
<unittitle>"From possibility to achievement", typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356379"
id="ref20"
level="file">
<did>
<unittitle>"Gospel minister and the community", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356380"
id="ref21"
level="file">
<did>
<unittitle>"The Grammar of Duty", typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356381"
id="ref22"
level="file">
<did>
<unittitle>"Great Social Uplift Campaign", booklet</unittitle>
<unitdatestructured altrender="circa 1919" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1919">circa 1919</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356382"
id="ref23"
level="file">
<did>
<unittitle>"Industrial Education", typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356383"
id="ref24"
level="file">
<did>
<unittitle>"Joy in Accomplishment", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356384"
id="ref25"
level="file">
<did>
<unittitle>"Lecture I Chapters One - Four", typescripts</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356385"
id="ref26"
level="file">
<did>
<unittitle>"Love the chief attribute in the character of God", typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356386"
id="ref27"
level="file">
<did>
<unittitle>"Milestones", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356387"
id="ref28"
level="file">
<did>
<unittitle>"The Pastor a leader and guide in church worship", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356388"
id="ref29"
level="file">
<did>
<unittitle>"The Pastor as leader in church worship", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356389"
id="ref30"
level="file">
<did>
<unittitle>"Service", typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356390"
id="ref31"
level="file">
<did>
<unittitle>"The Story of Bethlehem", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356391"
id="ref32"
level="file">
<did>
<unittitle>"Sunday school an asset to the church", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356392"
id="ref33"
level="file">
<did>
<unittitle>"True mission of the gospel preacher", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356393"
id="ref34"
level="file">
<did>
<unittitle>"Untrodden Paths", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356394"
id="ref35"
level="file">
<did>
<unittitle>"Welcome address by the Rev. James Arthur", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356395"
id="ref36"
level="file">
<did>
<unittitle>"What is required for a spiritual advance in the relation of the churches to the race problem", typescript</unittitle>
<unitdatestructured altrender="December 7, 1933"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1933-12-07">December 7, 1933</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">23</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/356396"
id="ref37"
level="subseries">
<did>
<unittitle>Novels</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/356397"
id="ref38"
level="file">
<did>
<unittitle>"Babylon", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34995 /locations/9"
containerid="39002091600826"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">24-31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356398"
id="ref39"
level="file">
<did>
<unittitle>"The Great Cathedral", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34996 /locations/9"
containerid="39002091600834"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">32-39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356399"
id="ref40"
level="file">
<did>
<unittitle>"Deacon Simpson", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">40-45</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356400"
id="ref41"
level="file">
<did>
<unittitle>Untitled novel</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">46</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/356401"
id="ref42"
level="subseries">
<did>
<unittitle>Plays</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/356402"
id="ref43"
level="file">
<did>
<unittitle>"Daniel", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">47</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/356403"
id="ref44"
level="subseries">
<did>
<unittitle>Poetry</unittitle>
</did>
<arrangement id="aspace_44c82ca539f3c8b82f405aac85922d65">
<head>Arrangement</head>
<p>Arranged alphabetically by title.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/356404"
id="ref45"
level="file">
<did>
<unittitle>"Anniversary Poems", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">48</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356405"
id="ref46"
level="file">
<did>
<unittitle>"Complete Poetical Works of R.A. Adams, Volume Two, Book I: Characteristics of Love", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">49</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356406"
id="ref47"
level="file">
<did>
<unittitle>"Complete Poetical Works of R.A. Adams, Volume Two, Book II: Diversities of Love", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">50</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356407"
id="ref48"
level="file">
<did>
<unittitle>"Complete Poetical Works of R.A. Adams, Volume Two, Book III: Tragedies of Love", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">51-52</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356408"
id="ref49"
level="file">
<did>
<unittitle>"Destiny of the sons of Noah", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">53-55</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356409"
id="ref50"
level="file">
<did>
<unittitle>"Events of Passion Week", typescript</unittitle>
<physloc id="aspace_47e69b312fa7dd74d984c3bb63eb850b">See: Oversize, Box 14</physloc>
<container altrender="/repositories/11/top_containers/35008 /locations/9"
containerid="39002091600958"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">14 (Oversize)</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356410"
id="ref52"
level="file">
<did>
<unittitle>"Memorial Day Poetry, Memorial Day Prose, Independence Day Poetry", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">56-57</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356411"
id="ref53"
level="file">
<did>
<unittitle>"The Messiah", Synopsis of Contents and Book I, typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34997 /locations/9"
containerid="39002091600842"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">58-59</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356412"
id="ref54"
level="file">
<did>
<unittitle>Poetic Cullings, typscript</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">60</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356413"
id="ref55"
level="file">
<did>
<unittitle>"Poetic Works, Volume One, Book I: Inspiration", typescript</unittitle>
<unitdatestructured altrender="1906" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1906">1906</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">61</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356414"
id="ref56"
level="file">
<did>
<unittitle>"Poetic Works, Volume One, Book II: Heroism", typescript</unittitle>
<unitdatestructured altrender="1906" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1906">1906</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">62</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356415"
id="ref57"
level="file">
<did>
<unittitle>"Poetic Works, Volume One, Book III: Service", typescript</unittitle>
<unitdatestructured altrender="1906" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1906">1906</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">63</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356416"
id="ref58"
level="file">
<did>
<unittitle>"Poetic Works, Volume One, Book IV: Religious Life", typescript</unittitle>
<unitdatestructured altrender="1906" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1906">1906</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">64</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356417"
id="ref59"
level="file">
<did>
<unittitle>"Poetic Works, Volume One, Books I-IV", duplicates</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">65</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356418"
id="ref60"
level="file">
<did>
<unittitle>"Some Love poems", manuscript and typescript</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">66-68</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356419"
id="ref61"
level="file">
<did>
<unittitle>Synopsis of poetical works of R.A. Adams with speciman pages from various volumes, typescript</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">69-70</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356420"
id="ref62"
level="file">
<did>
<unittitle>Untitled collection of poetry by R.A. Adams, typescript</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">71-72</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/356421"
id="ref64"
level="subseries">
<did>
<unittitle>Sermons</unittitle>
</did>
<arrangement id="aspace_a540c10a4a1af351d9884054375d12d7">
<head>Arrangement</head>
<p>Arranged alphabetically by title.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/356422"
id="ref65"
level="file">
<did>
<unittitle>"Annual Sermons", manuscript and typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref65_c2" localtype="folder" parent="aspace_ref65_c1">73-76</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356423"
id="ref66"
level="file">
<did>
<unittitle>"Bible Way of Salvation", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">77</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356424"
id="ref67"
level="file">
<did>
<unittitle>"Church Extension - 2", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref67_c2" localtype="folder" parent="aspace_ref67_c1">78</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356425"
id="ref68"
level="file">
<did>
<unittitle>"The Church of the Living God Is the Greatest Institution in the World", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">79</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356426"
id="ref69"
level="file">
<did>
<unittitle>Church service plan for special Sundays, typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">80</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356427"
id="ref70"
level="file">
<did>
<unittitle>"Consequence of rejecting reproof", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">81</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356428"
id="ref71"
level="file">
<did>
<unittitle>"Defiant builders", typescript</unittitle>
<container altrender="/repositories/11/top_containers/34998 /locations/9"
containerid="39002091600859"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">82</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/356429"
id="ref72"
level="file">