-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path992.xml
11812 lines (11812 loc) · 571 KB
/
992.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.davisc">beinecke.davisc</recordid>
<otherrecordid localtype="BIB">7350124</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Charles T. Davis Papers
</titleproper>
<titleproper localtype="filing">Davis (Charles T.) Papers</titleproper>
<author>by Beinecke staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date> 2012</date>
<num>JWJ MSS 91</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">7350124</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-38</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="10">10</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="138">138</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:01:38-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:01</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/992" level="collection">
<did>
<unittitle>Charles T. Davis papers</unittitle>
<unitid>JWJ MSS 91</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>29.67</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">38 boxes</physdesc>
<unitdatestructured altrender="1931-1980" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1931">1931</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_856bacf261a8806d0decfd1f24fc0523">The collection contains correspondence, research and teaching files, and personal papers documenting the life of American academic Charles T. Davis. Correspondents feature literary scholars and African-American artists, writers, and cultural figures, including Doris Alexander, Anthony Appiah, Amiri Baraka, Romare Bearden, John Blassingame, Michel Fabre, Leon Forrest, Athol Fugard, Henry Louis Gates, Leon Higginbotham, Ishmael Reed, Jean Toomer, and others. Correspondents also include colleagues and students. Research and Teaching Files contain files documenting Davis's professional activity as an academic at various institutions from the 1950s through 1970s. Research files include notes and subject files on 19th and 20th century writers and African-American history, literature, and culture. Teaching files include course and lecture notes, writings by Davis and others, and administrative files. Personal papers consists of various other materials, including family papers, audiovisual material, and military and academic records.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Davis, Charles T. (Charles Twitchell), 1918-1981</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_4841633158d842cf62fcad20d171118b">
<head>Immediate Source of Acquisition</head>
<p>Gift of Charles T. Davis, 2005.</p>
</acqinfo>
<accessrestrict id="aspace_d5679065356024490364bc9720d12983">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>
<title localtype="simple" render="italic">
<part>Restricted material</part>
</title> in boxes 34-37 are restricted until 2051.</p>
<p>Box 38 contains audiovisual material. Restricted fragile. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<userestrict id="aspace_86a5f4d6223662241027c837ec7f3d2f">
<head>Conditions Governing Use</head>
<p>The Charles T. Davis 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_fa56bde8a42c1205c30985a98a3414a5">
<head>Preferred Citation</head>
<p>Charles T. Davis Papers. James Weldon Johnson Collection in the Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_15c61e1ae5ef23ad84df5f18b254e796">
<head>Processing Information</head>
<p>This collection received a basic level of processing, including rehousing and in some instances minimal organization. Descriptive information found in the Collection Contents section is drawn in large part from information supplied with the collection and from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
<p>Former call number: Uncat MSS 837.</p>
</processinfo>
<bioghist id="aspace_d3202ca18fb4625940a2dd1ad41ff2ac">
<head>Charles T. Davis (1918-1981)</head>
<p>Charles Twitchell Davis, born April 29, 1918, in Hampton, VA, was a literary critic and scholar. Davis was educated at Dartmouth College (1939), University of Chicago (1942), and New York University (1951), and taught at NYU (1948-1955), Princeton University (1955-1961), Penn State (1961-1970), University of Iowa (1970-1976) and finally Yale University (1972-1981), where he taught until his death in 1981.</p>
<p>Davis's early work was on American poetry of the 19th and early 20th centuries, but later in his career he began to focus more on black literature, culture, and history. His study of black American literature helped bring it to the fore as a significant part of the American literary tradition, and as a leader of the African-American studies program at Yale University, he was an important figure in the development of African-American studies in American universities. His books include <title localtype="simple" render="italic">
<part>Black is the Color of the Cosmos</part>
</title> (1982) and <title localtype="simple" render="italic">
<part>The Slave's Narrative</part>
</title> (1985).</p>
<p>Biographical information taken from "Charles T. Davis." <title localtype="simple" render="italic">
<part>Contemporary Black Biography</part>
</title>. Vol. 48. Detroit: Gale, 2005. <title localtype="simple" render="italic">
<part>Gale Biography In Context</part>
</title>. Web. 2 May 2012.</p>
</bioghist>
<scopecontent id="aspace_fe71fcea6f00b6d788d37a41d2cad5cc">
<head>Scope and Contents</head>
<p>The Charles T. Davis papers contains correspondence, research and teaching files, and personal papers documenting the life of American academic Charles T. Davis. Correspondents feature literary scholars and African-American artists, writers, and cultural figures, including Doris Alexander, Kwame Anthony Appiah, Amiri Baraka, Romare Bearden, John Blassingame, Michel Fabre, Leon Forrest, Athol Fugard, Henry Louis Gates, Leon Higginbotham, Ishmael Reed, Jean Toomer, and others. Correspondents also include colleagues and students. Research and Teaching Files contain files documenting Davis's professional activity as an academic at various institutions from the 1950s through 1970s. Research files include notes and subject files on 19th and 20th century writers and African-American history, literature, and culture. Teaching files include course and lecture notes, writings by Davis and others, and administrative files. Personal papers consists of various other materials, including family papers, audiovisual material, and military and academic records.</p>
</scopecontent>
<arrangement id="aspace_52047f85d523595f4f20437fa6012c3c">
<head>Arrangement</head>
<p>Organized into three series: I. Correspondence, [circa 1930s-1980]. II. Research and Teaching Files, 1936-1980. III. Personal Papers, 1931-1980.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001955"
source="lcsh">
<part localtype="topical">African Americans</part>
<part localtype="topical">History</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/sh85004341"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300028045" source="aat">
<part localtype="genre_form">Audiovisual materials</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300028633" source="aat">
<part localtype="genre_form">Sound recordings</part>
</genreform>
<persname rules="aacr">
<part localtype="agent_person">Alexander, Doris</part>
</persname>
<persname>
<part localtype="agent_person">Appiah, Anthony, 1954-</part>
</persname>
<persname>
<part localtype="agent_person">Baraka, Amiri, 1934-2014</part>
</persname>
<persname>
<part localtype="agent_person">Bearden, Romare, 1911-1988</part>
</persname>
<persname>
<part localtype="agent_person">Blassingame, John W., 1940-2000</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Davis, Charles T. (Charles Twitchell), 1918-1981</part>
</persname>
<persname>
<part localtype="agent_person">Fabre, Michel, 1933-2007</part>
</persname>
<persname>
<part localtype="agent_person">Forrest, Leon, 1937-1997</part>
</persname>
<persname>
<part localtype="agent_person">Fugard, Athol, 1932-</part>
</persname>
<persname>
<part localtype="agent_person">Gates, Henry Louis, Jr., 1950-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Higginbotham, A. Leon, Jr., 1928-1998</part>
</persname>
<persname>
<part localtype="agent_person">Reed, Ishmael, 1938-</part>
</persname>
<persname>
<part localtype="agent_person">Toomer, Jean, 1894-1967</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/365064"
id="ref941"
level="series">
<did>
<unittitle>Personal Papers</unittitle>
<unitid>Series III</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured altrender="1931-1980" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1931">1931</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_83994c0f24611755dd396a54e6b39141">
<head>Arrangement</head>
<p>Materials arranged as received by the library.</p>
</arrangement>
<scopecontent id="aspace_c548d4c2e0d314bdcb8aef8f99796927">
<head>Scope and Contents</head>
<p>Series III. Personal Papers contains additional correspondence, audiovisual material, assorted personal and militrary records, and family papers.</p>
</scopecontent>
<accessrestrict id="aspace_62c4d6bcf202f94d7d48f06460795a69">
<head>Conditions Governing Access</head>
<p>Box 38 (audiovisual material): Restricted fragile. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/364196"
id="ref13"
level="subseries">
<did>
<unittitle>Personal Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/364197"
id="ref14"
level="file">
<did>
<unittitle>Personal correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>17</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35814 /locations/9"
containerid="39002104837662"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364198"
id="ref16"
level="file">
<did>
<unittitle>Personal correspondence (continued)</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>11</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35815 /locations/9"
containerid="39002104837670"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364199"
id="ref18"
level="file">
<did>
<unittitle>Sympathy cards</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35815 /locations/9"
containerid="39002104837670"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364200"
id="ref20"
level="file">
<did>
<unittitle>Sympathy cards (continued)</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>19</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35816 /locations/9"
containerid="39002104837688"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364201"
id="ref22"
level="file">
<did>
<unittitle>Sympathy cards (continued)</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/364202"
id="ref24"
level="subseries">
<did>
<unittitle>Professional Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/364203"
id="ref25"
level="file">
<did>
<unittitle>Aaboe, Asgar</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364204"
id="ref26"
level="file">
<did>
<unittitle>Abrahams, Roger D.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364205"
id="ref27"
level="file">
<did>
<unittitle>Adams, Gleason</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364206"
id="ref28"
level="file">
<did>
<unittitle>Adams, Ruth M.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364207"
id="ref29"
level="file">
<did>
<unittitle>Agyeman, Opoku</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364208"
id="ref30"
level="file">
<did>
<unittitle>Allen, Gay</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364209"
id="ref31"
level="file">
<did>
<unittitle>Alexander, Doris</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_ad6538f7813d2e2f66ebb5c8bef45559">
<head>Scope and Contents</head>
<p>Includes letters from Lilika Marmaras, J.W. Abruquah, Edward Margolies, and Luisa De Vecchi Rocca</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/364210"
id="ref34"
level="file">
<did>
<unittitle>Alexander, Margaret Walker</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364211"
id="ref36"
level="file">
<did>
<unittitle>Aliyu, A. Y.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364212"
id="ref37"
level="file">
<did>
<unittitle>American Labor History Series</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364213"
id="ref38"
level="file">
<did>
<unittitle>Anderson, Elijah</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364214"
id="ref40"
level="file">
<did>
<unittitle>Anozie, Sunday Ogbonna</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364215"
id="ref41"
level="file">
<did>
<unittitle>Andrews, Dwight D.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364216"
id="ref42"
level="file">
<did>
<unittitle>Appiah, Anthony</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364217"
id="ref44"
level="file">
<did>
<unittitle>Aptheker, Herbert</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364218"
id="ref45"
level="file">
<did>
<unittitle>Ashton, Charlotte</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364219"
id="ref46"
level="file">
<did>
<unittitle>Austin, Ramona</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364220"
id="ref47"
level="file">
<did>
<unittitle>Baker, Houston A., Jr.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364221"
id="ref48"
level="file">
<did>
<unittitle>Ball, Jessie C.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364222"
id="ref49"
level="file">
<did>
<unittitle>Banik, Sheilea Eubanks</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364223"
id="ref50"
level="file">
<did>
<unittitle>Baraka, Amiri</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364224"
id="ref51"
level="file">
<did>
<unittitle>Barksdale, Richard K</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364225"
id="ref52"
level="file">
<did>
<unittitle>Barth, John</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364226"
id="ref54"
level="file">
<did>
<unittitle>Basic, Sonja</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364227"
id="ref55"
level="file">
<did>
<unittitle>Bateson, F. W.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364228"
id="ref56"
level="file">
<did>
<unittitle>Bearden, Romare</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364229"
id="ref57"
level="file">
<did>
<unittitle>Beckman, John</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364230"
id="ref58"
level="file">
<did>
<unittitle>Bell, Michael Edward</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364231"
id="ref59"
level="file">
<did>
<unittitle>Bell, Wendell</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364232"
id="ref60"
level="file">
<did>
<unittitle>Benston, Kim</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364233"
id="ref61"
level="file">
<did>
<unittitle>Badger, Anne</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364234"
id="ref62"
level="file">
<did>
<unittitle>Bailey, LaTanya</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364235"
id="ref63"
level="file">
<did>
<unittitle>Bercovitch, Sacvan</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364236"
id="ref64"
level="file">
<did>
<unittitle>Betsky, Celia</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364237"
id="ref66"
level="file">
<did>
<unittitle>Betsky, Seymour</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364238"
id="ref67"
level="file">
<did>
<unittitle>Birt, Rodger C.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364239"
id="ref68"
level="file">
<did>
<unittitle>Blake, Eubie</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364240"
id="ref69"
level="file">
<did>
<unittitle>Blassingame, John</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364241"
id="ref70"
level="file">
<did>
<unittitle>Boone, Sylvia (empty folder)</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364242"
id="ref71"
level="file">
<did>
<unittitle>Boone, Sylvia A.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364243"
id="ref72"
level="file">
<did>
<unittitle>Borden, John S.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364244"
id="ref73"
level="file">
<did>
<unittitle>Borman, Frank</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364245"
id="ref74"
level="file">
<did>
<unittitle>Bouchet, Edward Alexander</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">4</container>
<daoset altrender="/repositories/11/digital_objects/277169">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:16769549"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16769549"
identifier="oid:16769549"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Bouchet, Edward Alexander</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364246"
id="ref75"
level="file">
<did>
<unittitle>Bowen, Ezra</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref75_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364247"
id="ref76"
level="file">
<did>
<unittitle>Boyd, William L.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364248"
id="ref77"
level="file">
<did>
<unittitle>Bradford, Colin</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364249"
id="ref78"
level="file">
<did>
<unittitle>Branch, William B.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364250"
id="ref79"
level="file">
<did>
<unittitle>Brault, Gerard J.</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref79_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364251"
id="ref80"
level="file">
<did>
<unittitle>Brauner, Gary</unittitle>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364252"
id="ref81"
level="file">
<did>
<unittitle>Braxton, Joanne</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/35817 /locations/9"
containerid="39002104837696"
id="aspace_ref81_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/364253"