-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path963.xml
9873 lines (9873 loc) · 517 KB
/
963.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.eady">beinecke.eady</recordid>
<otherrecordid localtype="BIB">12232319</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Cornelius Eady Papers
</titleproper>
<titleproper localtype="filing">Eady (Cornelius) 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>2014</date>
<num>JWJ MSS 146</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">12232319</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-35, 36 (Oversize), 37-41</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 42 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="17">17</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="2">2</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-21T23:06:33-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Tuesday January 21, 2025 at 23:06</eventdescription>
</maintenanceevent>
<maintenanceevent>
<eventtype value="revised"/>
<eventdatetime>2023-08-07</eventdatetime>
<agenttype value="unknown"/>
<agent/>
<eventdescription>Finding aid revised to contextualize oppressive and harmful descriptive language. See the processing note for more information.</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/963" level="collection">
<did>
<unittitle>Cornelius Eady Papers</unittitle>
<unitid>JWJ MSS 146</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<descriptivenote>
<p>In English.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>38.96</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">42 boxes</physdesc>
<unitdatestructured altrender="1968-2012" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1968">1968</fromdate>
<todate standarddate="2012">2012</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_a72fe9341e3ccf4e4fa2e3291df3c8b2">The Cornelius Eady Papers contains writings, correspondence, printed material, electronic files, and audiovisual material that document the professional activities of African American poet, author, and educator Cornelius Eady.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Eady, Cornelius, 1954-</part>
</persname>
</origination>
</did>
<scopecontent id="aspace_83582fc2b7784f2539a2584d992b5386">
<head>Scope and Contents</head>
<p>The Cornelius Eady Papers contain writings, correspondence, electronic records, audiovisual material, and printed material created and accumulated by American poet and educator Cornelius Eady, documenting his life and work as well as literary organizations including Cave Canem, and African American arts and letters broadly.</p>
</scopecontent>
<arrangement id="aspace_416132d3fadac3927bfe1775170638d5">
<head>Arrangement</head>
<p>Not arranged in any particular order, as received by the Beinecke Library.</p>
</arrangement>
<accessrestrict id="aspace_409735f59e26d727099a201faf881db8">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Boxes 37-40 (computer discs and audiovisual material): Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
<p>Box 41 (Student evaluations): Restricted until 2094. Consult the appropriate curator for further information.</p>
</accessrestrict>
<userestrict id="aspace_dda4e3449986323b3d1e19fbe589c79e">
<head>Conditions Governing Use</head>
<p>The Cornelius Eady 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>
<bioghist id="aspace_8851009a3142402d65bbd6ab31457fea">
<head>Cornelius Eady (1954-)</head>
<p>Cornelius Eady, American poet, born 1954. In 1996 he co-founded Cave Canem, a nonprofit organization dedicated to the cultivation of African American poets.</p>
</bioghist>
<acqinfo id="aspace_097cf411ce8fad97c1cbe1d090ebd98c">
<head>Immediate Source of Acquisition</head>
<p>Purchased from James S. Jaffe Rare Books on the Edwin J. Beinecke Book Fund, 2013.</p>
</acqinfo>
<prefercite id="aspace_df6d9de942e4e5a4aaa5953a0e4837d8">
<head>Preferred Citation</head>
<p>Cornelius Eady Papers. James Weldon Johnson Collection in the Yale Collection of Americaln Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<scopecontent id="aspace_10c5ab0f76550dfd6630c7be3a1850b6">
<head>Scope and Contents</head>
<p>The Cornelius Eady Papers contains writings, correspondence, printed material, electronic files, and audiovisual material that document the professional activities of African American poet, author, and educator Cornelius Eady. Writings span the length of Eady's career from his first published book of poetry, <title>
<part>Kartunes</part>
</title> (West Orange, N.J.: Warthog Press, 1980), to the collection <title>
<part>Hardheaded Weather</part>
</title> (New York: G.P. Putnam's Sons, 2008). In addition to poetry, writings include numerous drafts and associated material documenting his collaborative works of musical theater: <title>
<part>You Don't Miss Your Water</part>
</title>, <title>
<part>Running Man</part>
</title>, <title>
<part>Fangs</part>
</title>, and <title>
<part>Brutal Imagination</part>
</title>.</p>
<p>Other papers in the collection document Eady's involvement in American arts and letters through his contributions to educational and professional organizations, especially Cave Canem, a nonprofit organization dedicated to the cultivation of African American poets. Correspondence and Writings of Others include numerous poetry manuscripts accumulated by Eady in the course of his activities as a teacher and mentor to other poets.</p>
</scopecontent>
<relatedmaterial id="aspace_b2b4945d5de70a1ce65ce736e80c1c3c">
<head>Related Materials</head>
<p>Cave Canem Records (JWJ MSS 130). Beinecke Rare Book and Manuscript Library, Yale University.</p>
</relatedmaterial>
<processinfo id="aspace_9b933c15060431dcfdea72d897cfbcaf">
<head>Processing Information</head>
<p>This collection contains files for the Community of Writers. The Community of Writers previously used the oppressive and harmful term "squaw" in its name, based on its location in what was formerly known as "Squaw Valley," California, now called Olympic Valley. This language has been retained due to its use at the time the materials were created and to promote searchability and discoverability of the collections. The use of this name is not an endorsement of the language it contains.</p>
</processinfo>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001883"
source="lcsh">
<part localtype="topical">African American poets</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004389"
source="lcsh">
<part localtype="topical">American poetry</part>
<part localtype="topical">African American authors</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004387"
source="lcsh">
<part localtype="topical">American poetry</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2007100768"
source="lcsh">
<part localtype="topical">American poetry</part>
<part localtype="temporal">21st century</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">21st century</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">21st century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">21st century</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, American</part>
<part localtype="temporal">21st century</part>
<part localtype="genre_form">Archives</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Audiovisual materials</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Audiovisual materials</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">21st century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Born digital</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Born digital</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">21st century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Photographs</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Photographs</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">21st century</part>
</genreform>
<occupation source="local">
<part localtype="occupation">African American poets</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">African American poets</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">21st century</part>
</occupation>
<persname>
<part localtype="agent_person">Eady, Cornelius, 1954-</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Cave Canem (Organization)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/333425"
id="ref2"
level="file">
<did>
<unittitle>"Writing the Medical Experience: A Workshop"</unittitle>
<unitdatestructured altrender="2007, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2007">2007, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref2_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333426"
id="ref326"
level="file">
<did>
<unittitle>"The Writer's Voice of Billings YMCA," grant application</unittitle>
<unitdatestructured altrender="1992" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1992">1992</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref326_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333427"
id="ref6"
level="file">
<did>
<unittitle>Poems</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>8</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1980, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980">1980, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref6_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333431"
id="ref5"
level="file">
<did>
<unittitle>"Dreaming in Hi-Fi," songs by Cornelius Eady</unittitle>
<unitdatestructured altrender="1996" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1996">1996</datesingle>
</unitdatestructured>
<physdesc id="aspace_d5afd4fc4c809d7f1c91ba548bcec174">1 compact disc</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_ref5_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
<accessrestrict id="aspace_0fd4dcbeda9dcb235c4c8bcb5ee5f10a"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/3503192"
id="aspace_58b1d9eb6ad95554cb465657a812b56a"
level="item">
<did>
<unittitle>DREAMING IN HI-FI Songs by Cornelius Eady Carnegie Mellon University Press BONUS CD 1996</unittitle>
<unitid>2013-ycal-55-0001</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>CD-R</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>408476588</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">408.48 Megabytes.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_58b1d9eb6ad95554cb465657a812b56a_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/333432"
id="ref328"
level="file">
<did>
<unittitle>Contract</unittitle>
<unitdatestructured altrender="1980" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980">1980</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref328_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333433"
id="ref13"
level="file">
<did>
<unittitle>Printed material</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333434"
id="ref14"
level="file">
<did>
<unittitle>Business cards</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333435"
id="ref17"
level="file">
<did>
<unittitle>"The Shirt Off Your Back," biographies, pictures, and tentative orders (mailing list)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333436"
id="ref18"
level="file">
<did>
<unittitle>Writings sent to Sarah Micklem by M. Wilber</unittitle>
<unitdatestructured altrender="1981" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1981">1981</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333437"
id="ref19"
level="file">
<did>
<unittitle>"Kartunes," worksheets and proof</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333438"
id="ref20"
level="file">
<did>
<unittitle>"The War Against The Obvious: New and Selected Poems by Cornelius Eady"</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333439"
id="ref21"
level="file">
<did>
<unittitle>"Lucky House: Poems on a New House"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333440"
id="ref22"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1980-1984, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1984">1984</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333441"
id="ref24"
level="file">
<did>
<unittitle>Poems, drafts, mostly from Kartunes and The Modern World</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33916 /locations/9"
containerid="39002104742888"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333442"
id="ref26"
level="file">
<did>
<unittitle>Envelopes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33919 /locations/9"
containerid="39002104742896"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333443"
id="ref27"
level="file">
<did>
<unittitle>Poems of others (photocopies)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33919 /locations/9"
containerid="39002104742896"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333445"
id="ref329"
level="file">
<did>
<unittitle>"Passing into Dawn," by Matthew Fox</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33919 /locations/9"
containerid="39002104742896"
id="aspace_ref329_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333446"
id="ref331"
level="file">
<did>
<unittitle>"Every room we ever slept in," poems by Jason Shinder</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33919 /locations/9"
containerid="39002104742896"
id="aspace_ref331_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333447"
id="ref30"
level="file">
<did>
<unittitle>Poems of Lewis A. Brunnemer</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/33919 /locations/9"
containerid="39002104742896"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333448"
id="ref312"
level="file">
<did>
<unittitle>Newsletters</unittitle>
<unitdatestructured altrender="1989-1993" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1989">1989</fromdate>
<todate standarddate="1993">1993</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33919 /locations/9"
containerid="39002104742896"
id="aspace_ref312_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333449"
id="ref31"
level="file">
<did>
<unittitle>Poetry Center Publicity</unittitle>
<unitdatestructured altrender="1986-1990" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1986">1986</fromdate>
<todate standarddate="1990">1990</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33919 /locations/9"
containerid="39002104742896"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333450"
id="ref33"
level="file">
<did>
<unittitle>"You Don't Miss Water," working draft</unittitle>
<unitdatestructured altrender="1995" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1995">1995</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33919 /locations/9"
containerid="39002104742896"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333451"
id="ref28"
level="file">
<did>
<unittitle>Unsorted papers</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>7</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1990s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33919 /locations/9"
containerid="39002104742896"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_228dbb5b3e9a92b175c0f549875a45bc">
<head>Scope and Contents</head>
<p>Includes correspondence, notes, ephemera, records of boards, organizations, and grant programs that Eady was involved in (including the National Writers' Voice Project and the National Endowment for the Humanities), and papers relating to Stony Brook University.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/333452"
id="ref36"
level="file">
<did>
<unittitle>Photographs</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1980s-2000s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33920 /locations/9"
containerid="39002104742904"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333461"
id="ref40"
level="file">
<did>
<unittitle>Cave Canem African American Writer's Group, St. Mark's Poetry Project</unittitle>
<unitdatestructured altrender="2003 March 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2003-03-14">2003 March 14</datesingle>
</unitdatestructured>
<physdesc id="aspace_f44c5255d8b166de9478cb8f19ebc82a">3 compact discs</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
<accessrestrict id="aspace_837667ba385e51bb037ff41a4f572d6f"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/3503193"
id="aspace_a46e1f0556c044fa126dc9aebfc9d9dd"
level="item">
<did>
<unittitle>CAVE CANEM AFRICAN-AMERICAN WRITER'S GROUP St. Mark's Poetry Project Friday, March 14, 2003 Disk 1</unittitle>
<unitid>2013-ycal-55-0002</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>CD-R</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>733701740</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">733.70 Megabytes.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_a46e1f0556c044fa126dc9aebfc9d9dd_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503194"
id="aspace_d523bb136a05b0eb372b48cd0e369bdc"
level="item">
<did>
<unittitle>CAVE CANEM AFRICAN-AMERICAN WRITER'S GROUP St. Mark's Poetry Project Friday, March 14, 2003 Disc 2</unittitle>
<unitid>2013-ycal-55-0003</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>CD-R</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>737904764</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">737.90 Megabytes.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_d523bb136a05b0eb372b48cd0e369bdc_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503195"
id="aspace_f0a4969a63036b3657fbf9c20ed881fa"
level="item">
<did>
<unittitle>CAVE CANEM AFRICAN-AMERICAN WRITER'S GROUP St. Mark's Poetry Project Friday, March 14, 2003 Disk 3</unittitle>
<unitid>2013-ycal-55-0004</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>CD-R</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>672669692</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">627.67 Megabytes.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_f0a4969a63036b3657fbf9c20ed881fa_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/333462"
id="ref41"
level="file">
<did>
<unittitle>Kinship (You Don't Miss Your Water), working draft</unittitle>
<unitdatestructured altrender="1990s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/33920 /locations/9"
containerid="39002104742904"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/333463"
id="ref42"
level="file">
<did>
<unittitle>Running Man scripts, poems, drafts, Cave Canem Foundation proposals </unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_b6a73274aee69f2e6e08648578d3486d">8 3.5' floppy disks</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
<accessrestrict id="aspace_c2966d9c753888f0b00b2ccc03ca0ab9"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<c altrender="/repositories/11/archival_objects/3503196"
id="aspace_595ebb52e3dec39cc6c9968a361c7bb6"
level="item">
<did>
<unittitle>RUNNING MAN REVISED SCRIPT FANGS 11.00</unittitle>
<unitid>2013-ycal-55-0005</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>3.5_floppy_disk</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1474560</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.47 Megabytes. This reflects the size of the carrier media, but may not accurately reflect the extent of digital files available for research.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_595ebb52e3dec39cc6c9968a361c7bb6_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503197"
id="aspace_58f515f73010bfde7f6908d878e8038d"
level="item">
<did>
<unittitle>RUNNING MAN SCRIPT 99</unittitle>
<unitid>2013-ycal-55-0006</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>3.5_floppy_disk</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1474560</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.47 Megabytes. This reflects the size of the carrier media, but may not accurately reflect the extent of digital files available for research.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_58f515f73010bfde7f6908d878e8038d_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503198"
id="aspace_07022d4475806c28bb4979208526cc6f"
level="item">
<did>
<unittitle>RUNNING MAN NEW SCRIPT 12.98 COPY</unittitle>
<unitid>2013-ycal-55-0007</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>3.5_floppy_disk</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1474560</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.47 Megabytes. This reflects the size of the carrier media, but may not accurately reflect the extent of digital files available for research.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_07022d4475806c28bb4979208526cc6f_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503199"
id="aspace_ba69abfe26eba40b510ef09a0e171d22"
level="item">
<did>
<unittitle>Cave Canem 99 -Foundatoin Proposals 99 + Laken 98</unittitle>
<unitid>2013-ycal-55-0008</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>3.5_floppy_disk</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1474560</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.47 Megabytes. This reflects the size of the carrier media, but may not accurately reflect the extent of digital files available for research.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_ba69abfe26eba40b510ef09a0e171d22_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503200"
id="aspace_b942322c2dc5041060bc7e29e334aee7"
level="item">
<did>
<unittitle>CORNELIUS; PERSONAL (SM) "GATHERING" Disk doubled BU (1/30/92) Memos, Mom's stationary, Quilt pattern, RENO, pyramid (51 K) freehand</unittitle>
<unitid>2013-ycal-55-0009</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>3.5_floppy_disk</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1474560</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.47 Megabytes. This reflects the size of the carrier media, but may not accurately reflect the extent of digital files available for research.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_b942322c2dc5041060bc7e29e334aee7_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503201"
id="aspace_499b0cb2b6eb682d8af61365389ddd48"
level="item">
<did>
<unittitle>Recent 12-99</unittitle>
<unitid>2013-ycal-55-0010</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>3.5_floppy_disk</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1474560</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.47 Megabytes. This reflects the size of the carrier media, but may not accurately reflect the extent of digital files available for research.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_499b0cb2b6eb682d8af61365389ddd48_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503202"
id="aspace_fe821674436ef30c5794829c5138e4c7"
level="item">
<did>
<unittitle>WORKING DRAFTS 2.00</unittitle>
<unitid>2013-ycal-55-0011</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>3.5_floppy_disk</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1474560</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.47 Megabytes. This reflects the size of the carrier media, but may not accurately reflect the extent of digital files available for research.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_fe821674436ef30c5794829c5138e4c7_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503203"
id="aspace_fa0a6626138e7c9ffffeb588babb1a86"
level="item">
<did>
<unittitle>POEM Exercises</unittitle>
<unitid>2013-ycal-55-0012</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>3.5_floppy_disk</unittype>
</physdescstructured>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1474560</quantity>
<unittype>bytes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.47 Megabytes. This reflects the size of the carrier media, but may not accurately reflect the extent of digital files available for research.</physdesc>
<container altrender="/repositories/11/top_containers/33918 /locations/9"
containerid="39002104743266"
id="aspace_fa0a6626138e7c9ffffeb588babb1a86_c1"
label="Mixed Materials"
localtype="box">40</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/333464"
id="ref43"
level="file">
<did>