-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path806.xml
7717 lines (7717 loc) · 424 KB
/
806.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.reedj">beinecke.reedj</recordid>
<otherrecordid localtype="BIB">4509091</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Jeremy Reed Papers
</titleproper>
<titleproper localtype="filing">Reed (Jeremy) 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>2007-05-16</date>
<num>GEN MSS 678</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-28, 30-63</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 29 (Oversize), 42A</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="19">19</num> published digital objects.</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>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-22T23:00:31-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 22, 2025 at 23:00</eventdescription>
</maintenanceevent>
<maintenanceevent>
<eventtype value="revised"/>
<eventdatetime>2020-12-03</eventdatetime>
<agenttype value="unknown"/>
<agent/>
<eventdescription>Updated by Rosemary K. J. Davis to add recent acquisitions. </eventdescription>
</maintenanceevent>
<maintenanceevent>
<eventtype value="revised"/>
<eventdatetime>2010-02-10</eventdatetime>
<agenttype value="unknown"/>
<agent/>
<eventdescription>Transformed with yale.addEadidUrl.xsl. Adds @url with handle for finding aid. Overwrites @url if already present. </eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/806" level="collection">
<did>
<unittitle>Jeremy Reed papers</unittitle>
<unitid>GEN MSS 678</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>38.39</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">63 boxes </physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="2021">2021</todate>
</daterange>
</unitdatestructured>
<origination label="Creator">
<persname>
<part localtype="agent_person">Reed, Jeremy</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_880ab9422aaa7d6a81cb7f5ac1052ea6">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Boxes 21-22, 30, and 43-45, 61 (audiovisual materials): Restricted fragile material. Consult Access Services for further information.</p>
<p>Boxes 46 and 63 (born digital): Restricted fragile. Access copies of digital files may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<acqinfo id="aspace_0341773885b5df7f72aca2c7a44d336e">
<head>Immediate Source of Acquisition</head>
<p>Purchased from R. A. Gekoski Booksellers on the George Henry Nettleton Fund and the Edwin J. Beinecke Book Fund, 1998-2007.</p>
<p>Gift of Jeremy Reed, 2002, 2007, 2016, 2017, 2019.</p>
<p>May 2010 acquisition: Purchased from Jeremy Reed on the Edwin J. Beinecke Book Fund, 2010.</p>
<p>July 2013 acquisition: Purchased from Jeremy Reed on the Edwin J. Beinecke Book Fund, 2013.</p>
<p>December 2015 acquisition: Purchased from Thomas A. Glasswater Rare Books, Inc. on James Osborn and Marie Louis Fund, 2015.</p>
<p>July 2021 acquisition: Purchased from Jeremy Reed on the James Marshall and Marie-Louise Osborn Collection Fund, 2021.</p>
</acqinfo>
<arrangement id="aspace_b02e3c764135680597f2ea4f39e83ebc">
<head>Arrangement</head>
<p>The papers are organized into fifteen groupings: October 1998 Acquisition, November 1999 Acquisition, September 2002 Acquisition, May 2007 Acquisition, August 2007 Acquisition, May 2010 Acquisition, July 2013 acquisition, December 2015 acquisition, July 2016 acquisition, June 2017 acquisition, August 2017 acquisition, March 2019 acquisition, July 2019 acquisition, July 2021 acquisition [1 of 2], and July 2021 acquisition [2 of 2].</p>
</arrangement>
<bioghist id="aspace_d9edbc359b8bd90ec6557a62d140ceb5">
<head>Jeremy Reed, 1951-</head>
<p>Jeremy Reed, British author, was born March 6, 1951 in Jersey, Channel Islands. A prolific poet, novelist and translator, Reed has authored dozens of volumes of poetry, prose and cultural analysis.</p>
</bioghist>
<processinfo id="aspace_9305db3afa493dd537b190f3d9fc16ae">
<head>Processing Information</head>
<p>The Jeremy Reed Papers include materials formerly classed as Uncat MS Vault 871, Uncat MSS 363, Uncat MSS 964, and Uncat MS Vault 825.</p>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections as they are acquired, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received a basic level of processing, including rehousing and minimal organization. Portions of this finding aid are compiled from individual preliminary lists that were created at or around the time of receipt by the library. The preliminary lists were migrated to comply with current archival descriptive standards and merged into a single file in 2009, which has since been updated to reflect more recent acquisitions.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn 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>
</processinfo>
<prefercite id="aspace_bece372e2b409716c7e41237be94b9c8">
<head>Preferred Citation</head>
<p>Jeremy Reed Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<scopecontent id="aspace_5c5ffe810eb10d888b422ff364805db2">
<head>Scope and Contents</head>
<p>The Jeremy Reed Papers contain writings--including poetry, prose and translations--along with drafts, notebooks, correspondence, and other papers related to the life and work of Jeremy Reed.</p>
</scopecontent>
<userestrict id="aspace_d736536df511dee0518a682c21581b5c">
<head>Conditions Governing Use</head>
<p>The Jeremy Reed 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>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043783"
source="lcsh">
<part localtype="topical">English literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009858"
source="lcsh">
<part localtype="topical">Authors, English</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>
<part localtype="agent_person">Gascoyne, David, 1916-2001</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Raine, Kathleen, 1908-2003</part>
</persname>
<persname>
<part localtype="agent_person">Reed, Jeremy</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Enitharmon Press</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/263852"
id="ref12"
level="otherlevel"
otherlevel="accession">
<did>
<unittitle>October 1998 acquisition</unittitle>
<unitdatestructured altrender="1980-1992" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1992">1992</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_79557b835a6a0c62f7f45ba77ab315fa">(1 box)</physdesc>
</did>
<odd id="aspace_4b91b148c8f4b5ee78b46395dd254f73">
<head>General note</head>
<p>Formerly classed as Uncat MS Vault 825.</p>
</odd>
<acqinfo id="aspace_49ec30d0e4c9652549833e9bf84733e6">
<head>Immediate Source of Acquisition</head>
<p>Purchased from R. A. Gekoski Booksellers on the George Henry Nettleton Fund, 1998.</p>
</acqinfo>
<c altrender="/repositories/11/archival_objects/263853"
id="ref14"
level="file">
<did>
<unittitle>Gascoyne, David and Judy, correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>6</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1980-1992" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1992">1992</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23116 /locations/9"
containerid="39002091640053"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_56be96fece62584ced843104084a2c5d">
<head>Scope and Contents</head>
<p>Enclosures include a broadside of the poem "Rondel for the Fourth Decade" and two photographs of David Gascoyne.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/263854"
id="ref19"
level="otherlevel"
otherlevel="accession">
<did>
<unittitle>November 1999 acquisition</unittitle>
<unitdatestructured altrender="1981-1998" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1981">1981</fromdate>
<todate standarddate="1998">1998</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_163f49916a0caa3aa3a308ad6e84c504">(9 boxes)</physdesc>
</did>
<odd id="aspace_fc7d2ee12e0c023938122e09347d125c">
<head>General note</head>
<p>Formerly classed as Uncat MS Vault 871.</p>
</odd>
<acqinfo id="aspace_d95bfd8fe6345020bb717b9b91115e3a">
<head>Immediate Source of Acquisition</head>
<p>Purchased from R. A. Gekoski Booksellers on the Edwin J. Beinecke Book Fund, 1999.</p>
</acqinfo>
<c altrender="/repositories/11/archival_objects/263855"
id="ref21"
level="file">
<did>
<unittitle>Raine, Kathleen, correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>15</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1981-1990" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1981">1981</fromdate>
<todate standarddate="1990">1990</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23117 /locations/9"
containerid="39002091640061"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263856"
id="ref23"
level="file">
<did>
<unittitle>Correspondence, incoming (various)</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>17</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1980-1996" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1996">1996</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23117 /locations/9"
containerid="39002091640061"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263857"
id="ref25"
level="file">
<did>
<unittitle>Correspondence, incoming (various)</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>8</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1980-1997" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1997">1997</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23118 /locations/9"
containerid="39002091640079"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263858"
id="ref27"
level="file">
<did>
<unittitle>Lehman, John, correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1980-1989" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1980">1980</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23118 /locations/9"
containerid="39002091640079"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263859"
id="ref29"
level="file">
<did>
<unittitle>Lehman, Rosamond, correspondence</unittitle>
<unitdatestructured altrender="1983-1984" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1983">1983</fromdate>
<todate standarddate="1984">1984</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23118 /locations/9"
containerid="39002091640079"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263860"
id="ref30"
level="file">
<did>
<unittitle>Post cards and photographs</unittitle>
<unitdatestructured altrender="1982-1996" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1982">1982</fromdate>
<todate standarddate="1996">1996</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23118 /locations/9"
containerid="39002091640079"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263861"
id="ref31"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Sister Midnight</part>
</title>, holograph</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1997" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23118 /locations/9"
containerid="39002091640079"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263862"
id="ref33"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Another Tear Falls</part>
</title>, holograph</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1998" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1998">1998</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23118 /locations/9"
containerid="39002091640079"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263863"
id="ref35"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Waiting for the Man: A Biography of Lou Reed</part>
</title>, typescript and editorial correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>12</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1995" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1995">1995</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23118 /locations/9"
containerid="39002091640079"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263864"
id="ref37"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Dorian</part>
</title>, typescript and editorial correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1997" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23119 /locations/9"
containerid="39002091640087"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263865"
id="ref39"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Heartbreak Hotel: A novel about Elvis Presley in four volumes</part>
</title>, draft, notebooks, holograph</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1996" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1996">1996</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23119 /locations/9"
containerid="39002091640087"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_80792c2c0e923aeb0fa5ae67073fd0e2">
<head>Scope and Contents</head>
<p>Volume 4 is Titled "The Sun King"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/263866"
id="ref42"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Brian Jones: The Last Decadent</part>
</title>, draft, holograph</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1998" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1998">1998</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23119 /locations/9"
containerid="39002091640087"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263867"
id="ref44"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Chasing Black Rainbows</part>
</title>, typescript and editorial correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1993" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1993">1993</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23119 /locations/9"
containerid="39002091640087"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263868"
id="ref46"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Pleasure Chateau</part>
</title>, typescript and contractual agreement</unittitle>
<unitdatestructured altrender="1993" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1993">1993</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23119 /locations/9"
containerid="39002091640087"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263869"
id="ref47"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Blue Rock</part>
</title>, typescript</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1985" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1985">1985</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23119 /locations/9"
containerid="39002091640087"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263870"
id="ref49"
level="file">
<did>
<unittitle>Erotic stories, typescript</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1997" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1997">1997</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23119 /locations/9"
containerid="39002091640087"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263871"
id="ref51"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Bitter Blue</part>
</title>, typescript and manuscript, and editorial correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1996" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1996">1996</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23119 /locations/9"
containerid="39002091640087"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263872"
id="ref53"
level="file">
<did>
<unittitle>Unidentified prose, typescript</unittitle>
<unitdatestructured altrender="1995" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1995">1995</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23120 /locations/9"
containerid="39002091640095"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263873"
id="ref54"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Prairies of Fever</part>
</title> (translation from Arabic to English), hologrpah and typescript</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>9</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1988" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1988">1988</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23120 /locations/9"
containerid="39002091640095"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
<scopecontent id="aspace_6081505d130adf0d6dcd9f7fb21c5892">
<head>Scope and Contents</head>
<p>Accompanied by two notebooks containing translations of Arabic poets</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/263874"
id="ref57"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Poetry, Madness and Gender</part>
</title>, typescript</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1989" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1989">1989</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23120 /locations/9"
containerid="39002091640095"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263875"
id="ref59"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Madness: The Price of Poetry</part>
</title>, typescript and two corrected drafts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>6</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1989" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1989">1989</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23120 /locations/9"
containerid="39002091640095"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263876"
id="ref61"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Isidore</part>
</title>, draft and revised copies with typescript</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>8</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1990" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1990">1990</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23120 /locations/9"
containerid="39002091640095"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263877"
id="ref63"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Red Eclipse</part>
</title>, typescript with two drafts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>7</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1989" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1989">1989</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23121 /locations/9"
containerid="39002091640103"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263878"
id="ref65"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Lipstick, Sex and Poetry</part>
</title>, typescript</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1991" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1991">1991</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23121 /locations/9"
containerid="39002091640103"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263879"
id="ref67"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Conglomerate: Warhol/Bowie/Ballard</part>
</title>, typescript, second draft and editorial correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>6</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1993" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1993">1993</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23121 /locations/9"
containerid="39002091640103"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263880"
id="ref69"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Inhabiting Shadows: A Novel</part>
</title>, typescript</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1990" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1990">1990</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23121 /locations/9"
containerid="39002091640103"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263881"
id="ref71"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Delirium: An Appreciation of Arthur Rimbaud</part>
</title>, typescript and editorial correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1991" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1991">1991</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23121 /locations/9"
containerid="39002091640103"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263882"
id="ref73"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Novalis: Hymns to the Night</part>
</title> (translation from German to English), typescript and editorial correspondence</unittitle>
<unitdatestructured altrender="1989" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1989">1989</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23121 /locations/9"
containerid="39002091640103"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263883"
id="ref74"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Heartbreak Hotel</part>
</title>, notebooks, holograph</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>6</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1998" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1998">1998</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23121 /locations/9"
containerid="39002091640103"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263884"
id="ref76"
level="file">
<did>
<unittitle>Poetry notebooks, holograph</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>34</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1988-1989" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1988">1988</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23122 /locations/9"
containerid="39002091640111"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263885"
id="ref78"
level="file">
<did>
<unittitle>Poetry notebooks, holograph</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>28</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1990-1991" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="1991">1991</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23123 /locations/9"
containerid="39002091640129"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263886"
id="ref80"
level="file">
<did>
<unittitle>Poetry notebooks, holograph</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>8</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1992-1993" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1992">1992</fromdate>
<todate standarddate="1993">1993</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23124 /locations/9"
containerid="39002091640137"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263887"
id="ref82"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Volcano Smoke at Diamond Beach</part>
</title>, holograph (copy), typescript and correspondence</unittitle>
<unitdatestructured altrender="1991" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1991">1991</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23124 /locations/9"
containerid="39002091640137"
id="aspace_ref82_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263888"
id="ref83"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Coastguard's House</part>
</title>, typescript and correspondence</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1990" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1990">1990</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23124 /locations/9"
containerid="39002091640137"
id="aspace_ref83_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/263889"
id="ref85"