-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11860.xml
1125 lines (1125 loc) · 65.4 KB
/
11860.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.jacksonr">beinecke.jacksonr</recordid>
<otherrecordid localtype="BIB">16481435</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Roger Jackson Collection of Henry Miller and Irving Stettner </titleproper>
<titleproper localtype="filing">Jackson (Roger) Collection of Henry Miller and Irving Stettner</titleproper>
<author>by Nora Soto</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>November 2022</date>
<num>YCAL MSS 1530</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-12, 14, 15 (Oversize)</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 13, 16 (Oversize)</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:59:14-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:59</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11860" level="collection">
<did>
<unittitle>Roger Jackson collection of Henry Miller and Irving Stettner</unittitle>
<unitid>YCAL MSS 1530</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>15.4</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">16 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1978">1978</fromdate>
<todate standarddate="2012">2012</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_e7cc350cb03c2381fc132697a7d0a69b">The collection contains printed material, writings, correspondence, and artwork by or relating to publisher Roger Jackson and authors Henry Miller and Irving Stettner.</abstract>
<origination label="Creator">
<persname relator="col">
<part localtype="agent_person">Jackson, Roger</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_d0164d1af07c0f4288cb570565f9df89">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<acqinfo id="aspace_14369d1ed71aa1bf1c44005d276efdd5">
<head>Immediate Source of Acquisition</head>
<p>Gift of Roger Jackson, 2017.</p>
</acqinfo>
<arrangement id="aspace_8893fca981ebca90a3b2099d43fc2d7b">
<head>Arrangement</head>
<p>Organized into two series: I. Roger Jackson Papers Relating to Henry Miller, 1993–2012. II. Roger Jackson Collection of Irving Stettner, 1978–2003.</p>
</arrangement>
<bioghist id="aspace_717b244690640e10f851e9a013b6f4b0">
<head>Roger Jackson (1948–)</head>
<p>Roger Jackson is an American collector, editor, and small press publisher of works by and about Henry Miller. Based in Ann Arbor, Michigan since 1993, he has published over 120 works including books, broadsides, and ephemera. He edited several bibliographies, catalogs, and other reference works about Miller, including <title>
<part>Henry Miller: A Bibliography of Primary Sources</part>
</title> (1993–1994), <title>
<part>Henry Miller: A Personal Archive</part>
</title> (1994), and <title>
<part>Henry Miller: His Life in Ephemera, 1914–1980</part>
</title> (2012). Since 2004 Jackson has been managing editor of <title>
<part>Nexus: The International Henry Miller Journal</part>
</title>.</p>
</bioghist>
<bioghist id="aspace_187feeb0815078c44dc7c561ed713790">
<head>Henry Miller (1891–1980)</head>
<p>Henry Miller was an American author and painter. A full biographical note for Henry Miller is provided in the finding aid for the Henry Miller Papers (YCAL MSS 472).</p>
</bioghist>
<bioghist id="aspace_97b1c11de918930bea067ec87409466b">
<head>Irving Stettner (1922–2004) </head>
<p>Irving Stettner was an American poet, author, and watercolorist who maintained friendships with Miller and Jackson. He was editor and publisher of <title>
<part>Stroker</part>
</title>, a small art and literary magazine to which Miller regularly contributed from 1978 until his death in 1980. His books <title>
<part>Henry Miller, Anaïs Nin, and Me</part>
</title> (1999) and <title>
<part>On Henry Miller and the Wo Hop Mystery</part>
</title> (1995) were published by Jackson, with whom Stettner left his correspondence with Miller for safekeeping.</p>
</bioghist>
<prefercite id="aspace_159aaabb2a73240a5301a2adf45518da">
<head>Preferred Citation</head>
<p>Roger Jackson Collection of Henry Miller and Irving Stettner. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_15365808fa774fc7b1d0284286dcc0c0">
<head>Processing Information</head>
<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, 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.</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. Information in brackets is also supplied by staff.</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>
<scopecontent id="aspace_912d31eb274f30dc893b296fd9bb86ea">
<head>Content Description</head>
<p>The collection contains printed material, writings, correspondence, and artwork by or relating to publisher Roger Jackson and authors Henry Miller and Irving Stettner. Printed material and ephemera produced by Roger Jackson are largely by and about Miller, and includes the works of Natasha Bernstein, Elmer Gertz, Peter Gowland, Bern Porter, Jack L. Saunders, Irving Stettner, Hoki Tokuda, Pascal Vrebos, and Colin Wilson. The collection also contains Jackson's proposed editing projects, original and photocopied correspondence of Miller and Stettner, and watercolor paintings by Stettner.</p>
</scopecontent>
<separatedmaterial id="aspace_34b89ecc347d131eb8b06355a13dae71">
<head>Separated Materials</head>
<p>Seventy-seven volumes of <title>
<part>Stroker</part>
</title> received with the collection were removed for separate cataloging and can be accessed by searching the library's online catalog.</p>
</separatedmaterial>
<userestrict id="aspace_083068bc0d4b9f53e1cc64d98d07b7dd">
<head>Conditions Governing Use</head>
<p>The Roger Jackson Collection of Henry Miller and Irving Stettner 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/sh85004341"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Artists, 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">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Publishers</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85108871"
source="lcsh">
<part localtype="topical">Publishers and publishing</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Publishers and publishing</part>
<part localtype="geographic">Michigan</part>
<part localtype="geographic">Ann Arbor</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Publishers and publishing</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85077700"
source="lcsh">
<part localtype="topical">Small presses</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Small presses</part>
<part localtype="geographic">Michigan</part>
<part localtype="geographic">Ann Arbor</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Books</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300264821" source="aat">
<part localtype="genre_form">Printed ephemera</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300078925" source="aat">
<part localtype="genre_form">Watercolors (paintings)</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Artists</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname>
<part localtype="agent_person">Bernstein, Natasha</part>
</persname>
<persname>
<part localtype="agent_person">Gertz, Elmer, 1906-2000</part>
</persname>
<persname>
<part localtype="agent_person">Gowland, Peter</part>
</persname>
<persname>
<part localtype="agent_person">Jackson, Roger</part>
</persname>
<persname>
<part localtype="agent_person">Miller, Henry, 1891-1980</part>
</persname>
<persname>
<part localtype="agent_person">Porter, Bern, 1911-2004</part>
</persname>
<persname>
<part localtype="agent_person">Saunders, Jack L.</part>
</persname>
<persname>
<part localtype="agent_person">Stettner, Irving, 1922-</part>
</persname>
<persname>
<part localtype="agent_person">Tokuda, Hoki</part>
</persname>
<persname>
<part localtype="agent_person">Vrebos, Pascal</part>
</persname>
<persname>
<part localtype="agent_person">Wilson, Colin, 1931-2013</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Roger Jackson (Publisher)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3529262"
id="aspace_b8fc94136bc511c9f8eb4964b254fae4"
level="series">
<did>
<unittitle>Roger Jackson Papers Relating to Henry Miller</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>10.2</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">13 boxes</physdesc>
<unitdatestructured altrender="1993–2012" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1993">1993</fromdate>
<todate standarddate="2012">2012</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_2f56f6a4ef0a6ea4eecd9f3bf021abf5">
<head>Scope and Contents</head>
<p>This series contains printed material published by Roger Jackson from 1993 to 2012; advertising fliers, circulars, and brochures for his publishing house; two editing projects by Jackson; and a catalog of Jackson's publications.</p>
<p>Printed material consists of books, pamphlets, cards, and broadsides, the majority of which are by or about Henry Miller. Reference works by Jackson include two volumes of <title>
<part>Henry Miller: A Bibliography of Primary Sources</part>
</title>; <title>
<part>Henry Miller: A Bibliography of Watercolors</part>
</title>; <title>
<part>Henry Miller: A Personal Archive</part>
</title>; <title>
<part>Henry Miller and the "Nudies," 1953–1997</part>
</title>; and <title>
<part>Henry Miller: His Life in Ephemera, 1914–1980</part>
</title>. Publications featuring the work of Henry Miller include <title>
<part>Farewell from France: A Letter to Huntington Cairns, April 30 1939</part>
</title>; <title>
<part>From "Tropic of Cancer"</part>
</title>; and <title>
<part>The Mezzotints</part>
</title>. Other works about Miller include <title>
<part>Henry Miller: Book of Tributes, 1931–1994</part>
</title>; <title>
<part>Henry Miller and Elmer Gertz: Selected Letters, 1964–1975</part>
</title>; and <title>
<part>The Henry Miller–Herbert Read Letters, 1935–1958</part>
</title>.</p>
<p>Works by Irving Stettner in this series consist of the books <title>
<part>Henry Miller, Anaïs Nin, and Me</part>
</title> and <title>
<part>On Henry Miller and the Wo Hop Mystery</part>
</title>, and two illustrated postcards. There are also over forty publications by artist and writer Bern Porter, including <title>
<part>Bern Porter's Pillow Book</part>
</title>; <title>
<part>My Affair with Anaïs Nin</part>
</title>; <title>
<part>Questions about Henry Miller That No One Ever Asked Me–With Answers</part>
</title>; <title>
<part>So Far: A Bern Porter Miscellany</part>
</title>; <title>
<part>These 50 Years Gone</part>
</title>; and <title>
<part>The World of Bern</part>
</title>. Other writers present in this series include Natasha Bernstein, Elmer Gertz, Peter Gowland, Jack L. Saunders, Hoki Tokuda, Pascal Vrebos, and Colin Wilson.</p>
</scopecontent>
<arrangement id="aspace_6b805d002ae1ba84bca38a467a9d39a9">
<head>Arrangement</head>
<p>Organized into four subseries: Printed Material, Publisher's Advertisements, Unpublished Works by Roger Jackson, and Catalog of Works Published by Roger Jackson. Within each subseries, materials maintain order found at time of acquisition.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3529264"
id="aspace_618fea183f4676c77b46da745ecc70dd"
level="subseries">
<did>
<unittitle>Printed Material</unittitle>
</did>
<scopecontent id="aspace_8b43a0f4433d21bc6a3fbe3620551b5d">
<head>Scope and Contents</head>
<p>This subseries contains approximately 190 editions of all 121 works published by Jackson from 1993 to 2012, including books, pamphlets, cards, and broadsides. Printed material is arranged in chronological order by publication date, and titles with multiple editions are grouped together following the earliest printing. All publications were assigned catalog numbers from 1 to 121 by Jackson. Unique editions of the same title are identified by a letter after the catalog number.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3529270"
id="aspace_b6b638e7797c300f12712bbe659085af"
level="file">
<did>
<unittitle>#1–4</unittitle>
<unitdatestructured altrender="1993–1994" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1993">1993</fromdate>
<todate standarddate="1994">1994</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391120 /locations/9"
containerid="39002137192994"
encodinganalog="Paige 15"
id="aspace_b6b638e7797c300f12712bbe659085af_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b6b638e7797c300f12712bbe659085af_c2"
localtype="folder"
parent="aspace_b6b638e7797c300f12712bbe659085af_c1">1-9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529271"
id="aspace_f5574ccc5ec924dbc1c7cfb14e663209"
level="file">
<did>
<unittitle>#5–12</unittitle>
<unitdatestructured altrender="1994–1995" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1994">1994</fromdate>
<todate standarddate="1995">1995</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391121 /locations/9"
containerid="39002137193000"
encodinganalog="Paige 15"
id="aspace_f5574ccc5ec924dbc1c7cfb14e663209_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_f5574ccc5ec924dbc1c7cfb14e663209_c2"
localtype="folder"
parent="aspace_f5574ccc5ec924dbc1c7cfb14e663209_c1">10-28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529272"
id="aspace_936d40ac0c15d2654790c34ba05fab91"
level="file">
<did>
<unittitle>#13–34</unittitle>
<unitdatestructured altrender="1995–1996" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1995">1995</fromdate>
<todate standarddate="1996">1996</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391122 /locations/9"
containerid="39002137193018"
encodinganalog="Paige 15"
id="aspace_936d40ac0c15d2654790c34ba05fab91_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_936d40ac0c15d2654790c34ba05fab91_c2"
localtype="folder"
parent="aspace_936d40ac0c15d2654790c34ba05fab91_c1">29-58</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529273"
id="aspace_7c6cf299fdbd0fd0c5a0da8f04f18e99"
level="file">
<did>
<unittitle>#35–75</unittitle>
<unitdatestructured altrender="1996–1998" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
<todate standarddate="1998">1998</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391123 /locations/9"
containerid="39002137193026"
encodinganalog="Paige 15"
id="aspace_7c6cf299fdbd0fd0c5a0da8f04f18e99_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_7c6cf299fdbd0fd0c5a0da8f04f18e99_c2"
localtype="folder"
parent="aspace_7c6cf299fdbd0fd0c5a0da8f04f18e99_c1">59-103</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529274"
id="aspace_1453f2e25d40e0dfdf8f638957b0f6e2"
level="file">
<did>
<unittitle>#76–108</unittitle>
<unitdatestructured altrender="1998–2001" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1998">1998</fromdate>
<todate standarddate="2001">2001</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391124 /locations/9"
containerid="39002137193034"
encodinganalog="Paige 15"
id="aspace_1453f2e25d40e0dfdf8f638957b0f6e2_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_1453f2e25d40e0dfdf8f638957b0f6e2_c2"
localtype="folder"
parent="aspace_1453f2e25d40e0dfdf8f638957b0f6e2_c1">104-137</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529275"
id="aspace_0e2144cfd09189ce3adbca333925284d"
level="file">
<did>
<unittitle>#109–120</unittitle>
<unitdatestructured altrender="2002–2008" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2002">2002</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391125 /locations/9"
containerid="39002137193042"
encodinganalog="archive legal"
id="aspace_0e2144cfd09189ce3adbca333925284d_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_0e2144cfd09189ce3adbca333925284d_c2"
localtype="folder"
parent="aspace_0e2144cfd09189ce3adbca333925284d_c1">138-148</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529276"
id="aspace_b49baf8658ab85cba5d589c5bd3fb6ab"
level="file">
<did>
<unittitle>#29b. Porter, Bern. <title>
<part>"A Sex Oriented, Woman Connected Guy Doing His Own Thing": Bern Porter on Henry Miller, A Manuscript Sample</part>
</title>
</unittitle>
<unitdatestructured altrender="1996" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391126 /locations/9"
containerid="39002137193091"
encodinganalog="archive half legal"
id="aspace_b49baf8658ab85cba5d589c5bd3fb6ab_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_b49baf8658ab85cba5d589c5bd3fb6ab_c2"
localtype="folder"
parent="aspace_b49baf8658ab85cba5d589c5bd3fb6ab_c1">150</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529277"
id="aspace_ef2c827120715ce5dc0efd9ec0c65003"
level="file">
<did>
<unittitle>#104a. Gowland, Peter. <title>
<part>Henry Miller: 18 Individual Portraits and an Introductory Essay</part>
</title>
</unittitle>
<unitdatestructured altrender="2000" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391126 /locations/9"
containerid="39002137193091"
encodinganalog="archive half legal"
id="aspace_ef2c827120715ce5dc0efd9ec0c65003_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_ef2c827120715ce5dc0efd9ec0c65003_c2"
localtype="folder"
parent="aspace_ef2c827120715ce5dc0efd9ec0c65003_c1">151</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529278"
id="aspace_95d5d077a698f8e501fec89be0343ee9"
level="file">
<did>
<unittitle>#107. Jackson, Roger. <title>
<part>Henry Miller and the "Nudies," 1953–1997</part>
</title>
</unittitle>
<unitdatestructured altrender="2000" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391127 /locations/9"
containerid="39002137193059"
id="aspace_95d5d077a698f8e501fec89be0343ee9_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529279"
id="aspace_94a00482dff6581d172ccfde57c258c2"
level="file">
<did>
<unittitle>#111. Porter, Bern. <title>
<part>The World of Bern</part>
</title>
</unittitle>
<unitdatestructured altrender="2002" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2002">2002</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391128 /locations/9"
containerid="39002137193067"
id="aspace_94a00482dff6581d172ccfde57c258c2_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529280"
id="aspace_05dd04e36c0f7401fa3327eea6a6a53c"
level="file">
<did>
<unittitle>#112b. Vrebos, Pascal. <title>
<part>444 Ocampo Drive: A Crazy Week with Henry Miller</part>
</title>
</unittitle>
<unitdatestructured altrender="2003" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2003">2003</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391129 /locations/9"
containerid="39002137193075"
id="aspace_05dd04e36c0f7401fa3327eea6a6a53c_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529281"
id="aspace_539aeb506c141203db0de4711dd940d7"
level="file">
<did>
<unittitle>#121. Jackson, Roger. <title>
<part>Henry Miller: His Life in Ephemera, 1914–1980</part>
</title>
</unittitle>
<unitdatestructured altrender="2012" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2012">2012</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391130 /locations/9"
containerid="39002137193083"
id="aspace_539aeb506c141203db0de4711dd940d7_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529282"
id="aspace_efd3471ab0399ca47ed9a5c514ee8307"
level="file">
<did>
<unittitle>#121. Supplementary materials to <title>
<part>Henry Miller: His Life in Ephemera, 1914–1980</part>
</title>
</unittitle>
<unitdatestructured altrender="2012" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2012">2012</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391125 /locations/9"
containerid="39002137193042"
encodinganalog="archive legal"
id="aspace_efd3471ab0399ca47ed9a5c514ee8307_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_efd3471ab0399ca47ed9a5c514ee8307_c2"
localtype="folder"
parent="aspace_efd3471ab0399ca47ed9a5c514ee8307_c1">149</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3529265"
id="aspace_09efcc933d2bc26e0eff35d8873bfd69"
level="subseries">
<did>
<unittitle>Publisher's Advertisements</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3529283"
id="aspace_bd330d64cc23cc92167de9161e9086c6"
level="file">
<did>
<unittitle>Fliers, circulars, and brochures</unittitle>
<unitdatestructured altrender="1993–2012" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1993">1993</fromdate>
<todate standarddate="2012">2012</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391131 /locations/9"
containerid="39002137193109"
encodinganalog="archive legal"
id="aspace_bd330d64cc23cc92167de9161e9086c6_c1"
label="Mixed Materials"
localtype="box">12</container>
<container id="aspace_bd330d64cc23cc92167de9161e9086c6_c2"
localtype="folder"
parent="aspace_bd330d64cc23cc92167de9161e9086c6_c1">152-157</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3529266"
id="aspace_fd02a0a931b35fb213cad56e91623cb1"
level="subseries">
<did>
<unittitle>Unpublished Works by Roger Jackson</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3529284"
id="aspace_501d5b0d1522cda3125cf3c745d9595d"
level="file">
<did>
<unittitle>"Henry Miller and <title>
<part>The New York Times</part>
</title>, 1939–1999: A Research Bibliography"</unittitle>
<unitdatestructured altrender="2002" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2002">2002</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391131 /locations/9"
containerid="39002137193109"
encodinganalog="archive legal"
id="aspace_501d5b0d1522cda3125cf3c745d9595d_c1"
label="Mixed Materials"
localtype="box">12</container>
<container id="aspace_501d5b0d1522cda3125cf3c745d9595d_c2"
localtype="folder"
parent="aspace_501d5b0d1522cda3125cf3c745d9595d_c1">158-159</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529285"
id="aspace_2a3e6f2003ede0fa2201becf83d9ebf9"
level="file">
<did>
<unittitle>"Henry Miller Letters to Abe Elkus, 1930"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">circa 2007</unitdate>
<container altrender="/repositories/11/top_containers/391131 /locations/9"
containerid="39002137193109"
encodinganalog="archive legal"
id="aspace_2a3e6f2003ede0fa2201becf83d9ebf9_c1"
label="Mixed Materials"
localtype="box">12</container>
<container id="aspace_2a3e6f2003ede0fa2201becf83d9ebf9_c2"
localtype="folder"
parent="aspace_2a3e6f2003ede0fa2201becf83d9ebf9_c1">160</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3529267"
id="aspace_adf0d0bf3efe51fa955076ab8924fad8"
level="subseries">
<did>
<unittitle>Catalog of Works Published by Roger Jackson</unittitle>
</did>
<scopecontent id="aspace_ea7dac5c28ccbf7991b02a69bb959fd8">
<head>Scope and Contents</head>
<p>This catalog, prepared for the Beinecke Rare Book and Manuscript Library by Jackson, contains detailed bibliographical information for all 121 works in the Printed Material subseries. Each entry lists a catalog number, title, author or editor, edition, page count, trim size, binding and paper type, illustration count, ISBN, publication date, and publication price, as well as images and publisher's notes pertaining to the work. The catalog also includes Jackson's description of other material in this collection.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3529286"
id="aspace_c6208ab75a8419e54e04df6c389fde46"
level="file">
<did>
<unittitle>Catalog</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/391132"
containerid="39002137193117"
id="aspace_c6208ab75a8419e54e04df6c389fde46_c1"
label="Mixed Materials"
localtype="box">13</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3529263"
id="aspace_3336bf8606dba89c6bc551b9d32c1b37"
level="series">
<did>
<unittitle>Roger Jackson Collection of Irving Stettner</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5.2</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured altrender="1978–2003" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1978">1978</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_e36416e33a28ee94e254865cde7ef468">
<head>Scope and Contents</head>
<p>This series contains letters exchanged by Irving Stettner and Henry Miller from 1978 to 1980, and watercolor paintings by Stettner.</p>
</scopecontent>
<arrangement id="aspace_4186598dff99c3fa474fc388f15e86d9">
<head>Arrangement</head>
<p>Organized into two subseries: Henry Miller and Irving Stettner Correspondence, and Watercolors.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3529268"
id="aspace_a5f7f4a1e6072d04fcd4e9a032d22e05"
level="subseries">
<did>
<unittitle>Henry Miller and Irving Stettner Correspondence</unittitle>
</did>
<scopecontent id="aspace_16096ab9f4914f57bf1d1a31828fc4fd">
<head>Scope and Contents</head>
<p>Correspondence consists of photocopies of Miller's letters to Stettner and Stettner's original letters to Miller.</p>
</scopecontent>
<arrangement id="aspace_70641bdcad35bd840a372a2ee1dae311">
<head>Arrangement</head>
<p>Arranged alphabetically by correspondent.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3529287"
id="aspace_ab8df0806da7de5f1e90dd974b912176"
level="file">
<did>
<unittitle>Miller, Henry to Irving Stettner (photocopies)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/391161 /locations/9"
containerid="39002137193125"
encodinganalog="Paige 15"
id="aspace_ab8df0806da7de5f1e90dd974b912176_c1"
label="Mixed Materials"
localtype="box">14</container>
<container id="aspace_ab8df0806da7de5f1e90dd974b912176_c2"
localtype="folder"
parent="aspace_ab8df0806da7de5f1e90dd974b912176_c1">161-163</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529288"
id="aspace_1c0ddca01cffe8c57477c2bc98ef082a"
level="file">
<did>
<unittitle>Stettner, Irving to Henry Miller</unittitle>
<unitdatestructured altrender="1978 February–1980 December"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1978-02">1978 February</fromdate>
<todate standarddate="1980-12">1980 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391161 /locations/9"
containerid="39002137193125"
encodinganalog="Paige 15"
id="aspace_1c0ddca01cffe8c57477c2bc98ef082a_c1"
label="Mixed Materials"
localtype="box">14</container>
<container id="aspace_1c0ddca01cffe8c57477c2bc98ef082a_c2"
localtype="folder"
parent="aspace_1c0ddca01cffe8c57477c2bc98ef082a_c1">164-174</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3529269"
id="aspace_30eae61bfe6ffaac25fd80119445f851"
level="subseries">
<did>
<unittitle>Watercolors</unittitle>
</did>
<scopecontent id="aspace_cc4a9988323622909d00f558ebe27dba">
<head>Scope and Contents</head>
<p>This subseries contains fourteen watercolors, many of which Stettner inscribed to Jackson.</p>
</scopecontent>
<arrangement id="aspace_c9b7f8621da32393363cf6c91e4101c0">
<head>Arrangement</head>
<p>Arranged in chronological order.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3529289"
id="aspace_c3aa1a8f3794d9025b125f5eb5a6fe03"
level="file">
<did>
<unittitle>Untitled</unittitle>
<unitdatestructured altrender="1989" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1989">1989</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391133 /locations/9"
containerid="39002137193133"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_c3aa1a8f3794d9025b125f5eb5a6fe03_c1"
label="Mixed Materials"
localtype="box">15 (Oversize)</container>
<container id="aspace_c3aa1a8f3794d9025b125f5eb5a6fe03_c2"
localtype="folder"
parent="aspace_c3aa1a8f3794d9025b125f5eb5a6fe03_c1">175</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529290"
id="aspace_ac7cae76bfaa8f589b1ded9e5a1a00bd"
level="file">
<did>
<unittitle>"Ne Plus Ultra"</unittitle>
<unitdatestructured altrender="1993" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1993">1993</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391134"
containerid="39002137193141"
id="aspace_ac7cae76bfaa8f589b1ded9e5a1a00bd_c1"
label="Mixed Materials"
localtype="box">16 (Oversize)</container>
<container id="aspace_ac7cae76bfaa8f589b1ded9e5a1a00bd_c2"
localtype="folder"
parent="aspace_ac7cae76bfaa8f589b1ded9e5a1a00bd_c1">188</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529291"
id="aspace_bc0b63f5be3913cd893cba0612cc6a90"
level="file">
<did>
<unittitle>"Electric Eclectic"</unittitle>
<unitdatestructured altrender="1994" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1994">1994</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391133 /locations/9"
containerid="39002137193133"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_bc0b63f5be3913cd893cba0612cc6a90_c1"
label="Mixed Materials"
localtype="box">15 (Oversize)</container>
<container id="aspace_bc0b63f5be3913cd893cba0612cc6a90_c2"
localtype="folder"
parent="aspace_bc0b63f5be3913cd893cba0612cc6a90_c1">176</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529292"
id="aspace_1a93ad4716cdb2128020c1440ccd8d49"
level="file">
<did>
<unittitle>"Euphoria Gloria"</unittitle>
<unitdatestructured altrender="1994" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1994">1994</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391133 /locations/9"
containerid="39002137193133"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_1a93ad4716cdb2128020c1440ccd8d49_c1"
label="Mixed Materials"
localtype="box">15 (Oversize)</container>
<container id="aspace_1a93ad4716cdb2128020c1440ccd8d49_c2"
localtype="folder"
parent="aspace_1a93ad4716cdb2128020c1440ccd8d49_c1">177</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529293"
id="aspace_c0855422e3745032458cb69ab39f701f"
level="file">
<did>
<unittitle>Untitled</unittitle>
<unitdatestructured altrender="1995" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1995">1995</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391133 /locations/9"
containerid="39002137193133"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_c0855422e3745032458cb69ab39f701f_c1"
label="Mixed Materials"
localtype="box">15 (Oversize)</container>
<container id="aspace_c0855422e3745032458cb69ab39f701f_c2"
localtype="folder"
parent="aspace_c0855422e3745032458cb69ab39f701f_c1">178</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529294"
id="aspace_6c3157450c751a623f79cb94beb0ca25"
level="file">
<did>
<unittitle>"Adagio"</unittitle>
<unitdatestructured altrender="1996" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391133 /locations/9"
containerid="39002137193133"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_6c3157450c751a623f79cb94beb0ca25_c1"
label="Mixed Materials"
localtype="box">15 (Oversize)</container>
<container id="aspace_6c3157450c751a623f79cb94beb0ca25_c2"
localtype="folder"
parent="aspace_6c3157450c751a623f79cb94beb0ca25_c1">179</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529295"
id="aspace_8eab1b2fdb91e970a469050587d9d887"
level="file">
<did>
<unittitle>"Of the Quick and the Dead"</unittitle>
<unitdatestructured altrender="1996" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391133 /locations/9"
containerid="39002137193133"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_8eab1b2fdb91e970a469050587d9d887_c1"
label="Mixed Materials"
localtype="box">15 (Oversize)</container>
<container id="aspace_8eab1b2fdb91e970a469050587d9d887_c2"
localtype="folder"
parent="aspace_8eab1b2fdb91e970a469050587d9d887_c1">180</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529296"
id="aspace_2f2920c7b45531f999456298aaac5097"
level="file">
<did>
<unittitle>Untitled</unittitle>
<unitdatestructured altrender="1996" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/391133 /locations/9"
containerid="39002137193133"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_2f2920c7b45531f999456298aaac5097_c1"
label="Mixed Materials"
localtype="box">15 (Oversize)</container>
<container id="aspace_2f2920c7b45531f999456298aaac5097_c2"
localtype="folder"
parent="aspace_2f2920c7b45531f999456298aaac5097_c1">181</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3529297"
id="aspace_b7793b6f68b98f6786a60aa954fd72d2"
level="file">
<did>
<unittitle>"Aller-retour Nirvana"</unittitle>
<unitdatestructured altrender="1997" label="creation" unitdatetype="inclusive">