-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11844.xml
4497 lines (4497 loc) · 277 KB
/
11844.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.gustafson ">beinecke.gustafson </recordid>
<otherrecordid localtype="BIB">11682587</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the R. Eric Gustafson Papers </titleproper>
<titleproper localtype="filing">Gustafson (R. Eric) Papers</titleproper>
<author>by Brooke McManus</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>June 2022</date>
<num>GEN MSS 997</num>
</publicationstmt>
<notestmt>
<controlnote localtype="onsite">
<p>Boxes: 1, 2 (Oversize)</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 3-7, 8 (Oversize), 9-19</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-08T23:51:47-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:51</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11844" level="collection">
<did>
<unittitle>R. Eric Gustafson papers</unittitle>
<unitid>GEN MSS 997</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>Chiefly in English, with some materials in French and Spanish.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>16.33</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">19 boxes</physdesc>
<unitdatestructured altrender="1934-2017" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="2017">2017</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_f38b68649ae966b27cb5566fc4fe518d">The collection consists of correspondence, writings, professional and personal papers, photographs, printed material, computer and audiovisual media, and other papers documenting the career and life of American author, curator, and gallerist Eric Gustafson. Also included are correspondence, ephemera, and photographs of Navajo artist R. C. Gorman.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Gustafson, R. Eric</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_4e4d8f2ce1990b64bf1b713899ac4fed">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Bolerium Books, 2010. Gift of Eric Gustafson, 2010, 2011. Purchased from Eric Gustafson 2016, 2017, and 2019.</p>
</acqinfo>
<arrangement id="aspace_b27f0e12c26dabf3e600fbed5229f5dd">
<head>Arrangement</head>
<p>Organized into five series: I. July 2010 Acquisition, 1968-2009. II. November 2011 Acquisition, undated. III. November 2016 Acquisition, 1950-2016. IV. September 2017 Acquisition, 1934-2017. V. January 2019 Acquisition, circa 2011-2013.</p>
</arrangement>
<bioghist id="aspace_0e4279bed21cebe4918828201fce1967">
<head>R. Eric Gustafson (1935-)</head>
<p>R. Eric Gustafson is an American writer, curator, and gallerist. He is the author of two memoirs, <title>
<part>Cinderella is a Man: A Picturesque Passage to Serenity</part>
</title> (1998) and <title>
<part>Last Guy Waltzing: A Tale of Reinvention</part>
</title> (2013). Gustafson was born in 1935 in the Bronx, New York City. He received a B.A. from Queens College in 1957 and an M.F.A. in theater from Carnegie Mellon University in 1960. During the 1960s, he worked at the New York auction house Parke-Bernet Galleries as a consultant to high-profile clients such as Greta Garbo, Elizabeth Taylor, and Jacqueline Kennedy. Gustafson later managed art galleries, including the American Gallery of Theater Design in New York and the Jamison Gallery in Santa Fe, New Mexico. He curated 16 theater design exhibitions in New York, Santa Fe, and Italy, including "International Theater Designs" at Cooper-Hewitt Museum and "Designs for a Prima Donna: Dame Joan Sutherland" at Library for Performing Arts at the Lincoln Center. In 1984, he founded the Apollo Muses Center for the Arts in New Jersey, a non-profit presenting organization to showcase the work of young artists; the group held events and performances at Lu Shan Farm, an estate owned by his longtime friend, philanthropist Lila Hotz Luce Tyng. As a travel writer, he published numerous articles and two books about his journeys to India, <title>
<part>India: Paradox and Treasures</part>
</title> (2005) and <title>
<part>Expect the Unexpected: Adventures of a Westerner Sitting in the Lap of Mother India</part>
</title> (2009). Gustafson also authored the historical art book <title>
<part>The Court Theaters of Europe</part>
</title> (1982), which accompanied his lecture series of the same name. After many years of visiting Santa Fe for professional or personal reasons, he moved to the city permanently in 2006. In 2017, Gustafson published <title>
<part>My Beloved Southwest : Scrapbook of articles, essays, photos and art covering a period of almost fifty years in The Land of Enchantment</part>
</title>.</p>
</bioghist>
<prefercite id="aspace_7ce7fe71bffe6061d011881f32b9b075">
<head>Preferred Citation</head>
<p>R. Eric Gustafson Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_b7117f4cbf21bec316d1b97befa816b1">
<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>Various acquisitions associated with the collection have not been merged and organized as a whole. Each acquisition is described separately in the contents list below, titled according to month and year of acquisition.</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>
<scopecontent id="aspace_5b80b03b2d8257675c2b0f192aa23786">
<head>Scope and Contents</head>
<p>The collection consists of correspondence, writings, professional and personal papers, photographs, printed material, computer and audiovisual media, and other papers documenting the career and life of American author, curator, and gallerist Eric Gustafson. Also included are correspondence, ephemera, and photographs of Navajo artist R. C. Gorman. Among the other correspondents are artists Erté and Toshiko Takaezu, photographer Cecil Beaton, actors Celeste Holm and Ruth Warrick, opera singer Frederica von Stade, and philanthropist Lila Tyng. The collection contains drafts of works by Gustafson including <title>
<part>Cinderella is a Man</part>
</title>, <title>
<part>Expect the Unexpected</part>
</title>, <title>
<part>India: Paradox and Treasures</part>
</title>, <title>
<part>Last Guy Waltzing</part>
</title>, and <title>
<part>My Beloved Southwest</part>
</title>, in addition to "The Marchesa la marchetta chronicles," an essay about his friendship with Gorman. Other materials concern the Apollo Muses Center for the Arts, Gustafson's theater design exhibitions and work with galleries in New York and New Mexico, and his lecture series "The Court Theatres of Europe." The collection further contains scrapbooks and photograph albums related to his early life, career, and travels, as well as passports, journals, address and phone books, and calendars.</p>
</scopecontent>
<accessrestrict id="aspace_4e73f1acd4b04b1930f62602a8155b11">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
<p>Box 10 (computer media): Restricted fragile material. Access copies of computer files may be requested. Consult Access Services for further information.</p>
<p>Boxes 11-15 (audiovisual material): Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<userestrict id="aspace_d0b484ec0c4c00df149fd0a532662426">
<head>Conditions Governing Use</head>
<p>The R. Eric Gustafson 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/sh85008000"
source="lcsh">
<part localtype="topical">Art galleries, Commercial</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="topical">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85033269"
source="lcsh">
<part localtype="topical">Costume design</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Indians of North America</part>
<part localtype="geographic">Navajo Nation, Arizona, New Mexico & Utah</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85008295"
source="lcsh">
<part localtype="topical">Navajo artists</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85090345"
source="lcsh">
<part localtype="topical">Navajo Indians</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008112865"
source="lcsh">
<part localtype="topical">Theaters</part>
<part localtype="topical">Stage-setting and scenery</part>
<part localtype="topical">Exhibitions</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh91000035"
source="lcsh">
<part localtype="topical">Travel writing</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85147671"
source="lcsh">
<part localtype="topical">Women philanthropists</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85064883"
source="lcsh">
<part localtype="geographic">India</part>
<part localtype="topical">Description and travel</part>
</geogname>
<occupation source="local">
<part localtype="occupation">Art museum curators</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Artists</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local_beinecke">
<part localtype="occupation">Authors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Painters</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<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/300374824" source="aat">
<part localtype="genre_form">Born digital</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Scrapbooks</part>
</genreform>
<persname>
<part localtype="agent_person">Beaton, Cecil, 1904-1980</part>
</persname>
<persname>
<part localtype="agent_person">Erté</part>
</persname>
<persname>
<part localtype="agent_person">Gorman, R. C. (Rudolph Carl), 1932-2005</part>
</persname>
<persname>
<part localtype="agent_person">Gustafson, R. Eric</part>
</persname>
<persname>
<part localtype="agent_person">Holm, Celeste, 1917-2012</part>
</persname>
<persname>
<part localtype="agent_person">Takaezu, Toshiko</part>
</persname>
<persname source="local_beinecke">
<part localtype="agent_person">Tyng, Lila, 1899-1999</part>
</persname>
<persname>
<part localtype="agent_person">Von Stade, Frederica</part>
</persname>
<persname>
<part localtype="agent_person">Warrick, Ruth</part>
</persname>
<corpname source="local_beinecke">
<part localtype="agent_corporate_entity">Apollo Muses Center for the Arts</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3251949"
id="aspace_b8a7909c2587601a0f7ceca19d9035c3"
level="series">
<did>
<unittitle>July 2010 Acquisition</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.75</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1968-2009" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1968">1968</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
</did>
<acqinfo id="aspace_0cf1f16012b4dac4525f97668415ed50">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Bolerium Books on the Edwin J. Beinecke Book Fund, 2010.</p>
</acqinfo>
<arrangement id="aspace_f8d3193fd8c5d7ea313a715ac07a69bf">
<head>Arrangement</head>
<p>Arranged by material type.</p>
</arrangement>
<bioghist id="aspace_2d1d804a01846015a68756c2801fbb82">
<head>R. C. Gorman (1931-2005)</head>
<p>R. C. (Rudolph Carl) Gorman was a Native American artist of the Navajo Nation.</p>
</bioghist>
<scopecontent id="aspace_abb2ddeda8d884d3abb0ed4da72b6682">
<head>Scope and Contents</head>
<p>This series consists of correspondence from R. C. Gorman to his friend Eric Gustafson, printed material, and photographs. Printed ephemera, some inscribed and signed by Gorman, includes cards with representations of Gorman's work, publicity, such as invitations to events, exhibition catalogs, and posters, and secondary material documenting Gorman's life, work, and popular reception.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3252739"
id="aspace_068bce74e859cdd217af2c06f72facc4"
level="file">
<did>
<unittitle>Clippings</unittitle>
<unitdatestructured altrender="1977-2009" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/371658"
containerid="39002104675161"
encodinganalog="archive legal"
id="aspace_068bce74e859cdd217af2c06f72facc4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_068bce74e859cdd217af2c06f72facc4_c2"
localtype="folder"
parent="aspace_068bce74e859cdd217af2c06f72facc4_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3252740"
id="aspace_08e626d636a5de26c23e44f43be0be10"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1974-2005" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1974">1974</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/371658"
containerid="39002104675161"
encodinganalog="archive legal"
id="aspace_08e626d636a5de26c23e44f43be0be10_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_08e626d636a5de26c23e44f43be0be10_c2"
localtype="folder"
parent="aspace_08e626d636a5de26c23e44f43be0be10_c1">2-4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3252741"
id="aspace_f6d753bfa6b2ef4be74de4ed54ecead1"
level="file">
<did>
<unittitle>Photographs</unittitle>
<unitdatestructured altrender="1987-2005" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1987">1987</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/371658"
containerid="39002104675161"
encodinganalog="archive legal"
id="aspace_f6d753bfa6b2ef4be74de4ed54ecead1_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f6d753bfa6b2ef4be74de4ed54ecead1_c2"
localtype="folder"
parent="aspace_f6d753bfa6b2ef4be74de4ed54ecead1_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3252742"
id="aspace_e716017c6a7ceb86933085e7cc232cbf"
level="file">
<did>
<unittitle>Printed materials</unittitle>
<unitdatestructured altrender="1968-2000" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1968">1968</fromdate>
<todate standarddate="2000">2000</todate>
</daterange>
</unitdatestructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/371658"
containerid="39002104675161"
encodinganalog="archive legal"
id="aspace_e716017c6a7ceb86933085e7cc232cbf_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_e716017c6a7ceb86933085e7cc232cbf_c2"
localtype="folder"
parent="aspace_e716017c6a7ceb86933085e7cc232cbf_c1">6-11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3252743"
id="aspace_25f6cb94d8b38fcaa72ec52cd9dd9c17"
level="file">
<did>
<unittitle>Schedule</unittitle>
<unitdatestructured altrender="1980" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980">1980</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371658"
containerid="39002104675161"
encodinganalog="archive legal"
id="aspace_25f6cb94d8b38fcaa72ec52cd9dd9c17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_25f6cb94d8b38fcaa72ec52cd9dd9c17_c2"
localtype="folder"
parent="aspace_25f6cb94d8b38fcaa72ec52cd9dd9c17_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3252744"
id="aspace_34cd6bbac07181ad6c17beeb6e947b0d"
level="file">
<did>
<unittitle>Clippings</unittitle>
<unitdatestructured altrender="2008-2009" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2008">2008</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371659"
containerid="39002098702195"
encodinganalog="flat box (24d 1h 30w)"
id="aspace_34cd6bbac07181ad6c17beeb6e947b0d_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_34cd6bbac07181ad6c17beeb6e947b0d_c2"
localtype="folder"
parent="aspace_34cd6bbac07181ad6c17beeb6e947b0d_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3252745"
id="aspace_a573451fa574ca49ae0803e53af553e8"
level="file">
<did>
<unittitle>Printed materials</unittitle>
<unitdatestructured altrender="1979-1981" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1979">1979</fromdate>
<todate standarddate="1981">1981</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371659"
containerid="39002098702195"
encodinganalog="flat box (24d 1h 30w)"
id="aspace_a573451fa574ca49ae0803e53af553e8_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_a573451fa574ca49ae0803e53af553e8_c2"
localtype="folder"
parent="aspace_a573451fa574ca49ae0803e53af553e8_c1">14-15</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3493575"
id="aspace_d50e17751457468f0b0e77e1625e33ef"
level="series">
<did>
<unittitle>November 2016 Acquisition</unittitle>
<unitid>Series III</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>12.50</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">13 boxes</physdesc>
<unitdatestructured altrender="1950–2016" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="2016">2016</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_2c9e34e59be46f07df762fc9bee98892">
<head>Scope and Contents</head>
<p>This series consists of correspondence, writings, professional and personal papers, photographs, electronic files, audiovisual material, and other papers of Eric Gustafson. Included are drafts, notes, ephemera, publicity, and correspondence for works by Gustafson such as Cinderella is a Man, Expect the Unexpected, Last Guy Waltzing, and India: Paradox and Treasures, in addition to a number of travel articles; papers related to the Apollo Muses Center for the Art; files on exhibitions curated by Gustafson; and slides and notes for his lecture series "The Court Theatres of Europe." The series contains correspondence and photographs of R. C. Gorman, Lila Tyng, and Ruth Warrick, as well as scrapbooks, material related to Gustafson's early life, and a diary from his stay at the Betty Ford Clinic.</p>
</scopecontent>
<arrangement id="aspace_f92a86b661ae8935642d7aa6b6dae5e2">
<head>Arrangement</head>
<p>Organized into six subseries: Correspondence and Subject Files, Writings, Professional Papers, Personal Papers, Photographs and Slides, and Computer and Audiovisual Media.</p>
</arrangement>
<acqinfo id="aspace_d94e0cd0810a4c30a7ed75d047f762ea">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Eric Gustafson on the Edwin J. Beinecke Book Fund, 2016.</p>
</acqinfo>
<c altrender="/repositories/11/archival_objects/3450836"
id="aspace_9f90db26a1c42cbc8eadda2afda1fdf8"
level="file">
<did>
<unittitle>"The Marchesa la marchetta chronicles," computer printout</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_9f90db26a1c42cbc8eadda2afda1fdf8_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_9f90db26a1c42cbc8eadda2afda1fdf8_c2"
localtype="folder"
parent="aspace_9f90db26a1c42cbc8eadda2afda1fdf8_c1">16</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3493576"
id="aspace_4ff5aea84f275db59f36d4d6a4d4b15b"
level="series">
<did>
<unittitle>September 2017 Acquisition</unittitle>
<unitid>Series IV</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.83</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1934–2017" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="2017">2017</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_e5f14b1abe0483c8f2798f46e131afb3">
<head>Scope and Contents</head>
<p>This series contains writings, correspondence, photographs, ephemera, and other papers by or relating to Eric Gustafson. Included are research materials and drafts of My Beloved Southwest, Last Man Waltzing, and Cinderella is a Man; letters from friends, colleagues, and public figures such as R. C. Gorman, Frederica von Stade, Kitty Carlisle Hart, Dina Merrill, Robert F. Kennedy, Cecil Beaton, and Erté; a file on the death and estate of Lila Tyng; and catalogs and ephemera for festivals, exhibitions, and other events, such as the Festival of Two Worlds in Spoleto, Italy, which featured one of Gustafson's theater design exhibitions. The series also contains performance photographs or publicity stills of Alvin Ailey, Rosemary Clooney, Judith Jamison, and Frank Sinatra, among others, and photocopied photographs of Gustafson with Harry Truman.</p>
</scopecontent>
<arrangement id="aspace_862b792cdf7079f266f5f5dcf2d56b5d">
<head>Arrangement</head>
<p>Materials maintain order found at time of acquisition.</p>
</arrangement>
<acqinfo id="aspace_7282233ec6ed4cb9d0fd1a7aaaa5e52a">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Eric Gustafson on the Edwin J. Beinecke Book Fund, 2017.</p>
</acqinfo>
<c altrender="/repositories/11/archival_objects/3493578"
id="aspace_5393fe30a5e177bf1357c6eae4256fa1"
level="subseries">
<did>
<unittitle>Correspondence and Subject Files</unittitle>
</did>
<scopecontent id="aspace_cb857e9b11c1701493697c20286b5cf9">
<head>Scope and Contents</head>
<p>This subseries consists of files compiled by Eric Gustafson on friends and colleagues, such as R. C. Gorman, Celeste Holm, Lila Tyng, Tashiko Takaezu, Ruth Warrick, and Hugh Keelan and Frank Daykin, who served as music directors of the Apollo Muses Center. Each file contains an assortment of correspondence, photographs, and ephemera related to these individuals. Also included are several files of mixed correspondence with letters by Gustafson, Bill Moyers, Martha Mitchell, David Halliday, Greta Keller, Henry R. Luce, Sir Harold Acton, William Hurt, Harry Spiro, Kitty Carlisle Hart, Freddy Wittop, Calla Hay, Seymour Bernstein, Lloyd Moss, Maria Benitez, Miangul Aurangzeb, Valmai Howe Elkins, and Forrest Moses, among others.</p>
</scopecontent>
<arrangement id="aspace_26956511ac805eb7eb2120b4203c1d18">
<head>Arrangement</head>
<p>Arranged alphabetically by correspondent or folder title.</p>
</arrangement>
<relatedmaterial id="aspace_a785b1fc0901cbba03cc6583caa6cb49">
<head>Related Materials</head>
<p>Associated materials: Correspondence can also be found in Writings, Professional Papers, Personal Papers, and Photographs.</p>
</relatedmaterial>
<c altrender="/repositories/11/archival_objects/3493603"
id="aspace_6f29f33ec00ac34d202762391d51bc68"
level="file">
<did>
<unittitle>Assorted letters and cards</unittitle>
<unitdatestructured altrender="1978–2005" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1978">1978</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_6f29f33ec00ac34d202762391d51bc68_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_6f29f33ec00ac34d202762391d51bc68_c2"
localtype="folder"
parent="aspace_6f29f33ec00ac34d202762391d51bc68_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493604"
id="aspace_9c1c06ea4038b3e713dc86f3fe49c9c0"
level="file">
<did>
<unittitle>Aya, Ysabel</unittitle>
<unitdatestructured altrender="circa 1950s-1972, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="1972">1972</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_9c1c06ea4038b3e713dc86f3fe49c9c0_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_9c1c06ea4038b3e713dc86f3fe49c9c0_c2"
localtype="folder"
parent="aspace_9c1c06ea4038b3e713dc86f3fe49c9c0_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493605"
id="aspace_59fa707edb43bdb1114b5f57d6da202a"
level="file">
<did>
<unittitle>Celebs: notes, cards, et al.</unittitle>
<unitdatestructured altrender="1964–1998" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1964">1964</fromdate>
<todate standarddate="1998">1998</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_59fa707edb43bdb1114b5f57d6da202a_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_59fa707edb43bdb1114b5f57d6da202a_c2"
localtype="folder"
parent="aspace_59fa707edb43bdb1114b5f57d6da202a_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493606"
id="aspace_65d5a2b63537affb07d0e10f1934602d"
level="file">
<did>
<unittitle>Daykin, Frank</unittitle>
<unitdatestructured altrender="1989-2005, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1989">1989</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_65d5a2b63537affb07d0e10f1934602d_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_65d5a2b63537affb07d0e10f1934602d_c2"
localtype="folder"
parent="aspace_65d5a2b63537affb07d0e10f1934602d_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493607"
id="aspace_049ce0f495655892b0e447eabf4acc03"
level="file">
<did>
<unittitle>Gorman, R. C.</unittitle>
<unitdatestructured altrender="1971–2006" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1971">1971</fromdate>
<todate standarddate="2006">2006</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_049ce0f495655892b0e447eabf4acc03_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_049ce0f495655892b0e447eabf4acc03_c2"
localtype="folder"
parent="aspace_049ce0f495655892b0e447eabf4acc03_c1">21-24</container>
</did>
<scopecontent id="aspace_10b8039ae0fbd3cb8c38ffd07e57781c">
<head>Scope and Contents</head>
<p>Includes photographs of Gorman and Gustafson in Italy, and friends such as Elizabeth Taylor and Ruth Warrick.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3493608"
id="aspace_71a1043492099c613d7b2e58a337e443"
level="file">
<did>
<unittitle>Griffin, Gillett</unittitle>
<unitdatestructured altrender="2002-2005, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2002">2002</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_71a1043492099c613d7b2e58a337e443_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_71a1043492099c613d7b2e58a337e443_c2"
localtype="folder"
parent="aspace_71a1043492099c613d7b2e58a337e443_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493609"
id="aspace_0537c3bcaed7e4470157887c174d3f64"
level="file">
<did>
<unittitle>Holm, Celeste</unittitle>
<unitdatestructured altrender="1992-1993, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1992">1992</fromdate>
<todate standarddate="1993">1993</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_0537c3bcaed7e4470157887c174d3f64_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_0537c3bcaed7e4470157887c174d3f64_c2"
localtype="folder"
parent="aspace_0537c3bcaed7e4470157887c174d3f64_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493610"
id="aspace_340f38a4235945f44b05dfcc6e0f0f72"
level="file">
<did>
<unittitle>Keelan, Hugh</unittitle>
<unitdatestructured altrender="1983–1987" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1983">1983</fromdate>
<todate standarddate="1987">1987</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_340f38a4235945f44b05dfcc6e0f0f72_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_340f38a4235945f44b05dfcc6e0f0f72_c2"
localtype="folder"
parent="aspace_340f38a4235945f44b05dfcc6e0f0f72_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493611"
id="aspace_fa8b504f41a9e5ee9c5f98da8ae42d58"
level="file">
<did>
<unittitle>Letters</unittitle>
<unitdatestructured altrender="1958–2015" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1958">1958</fromdate>
<todate standarddate="2015">2015</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_fa8b504f41a9e5ee9c5f98da8ae42d58_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_fa8b504f41a9e5ee9c5f98da8ae42d58_c2"
localtype="folder"
parent="aspace_fa8b504f41a9e5ee9c5f98da8ae42d58_c1">28-29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493612"
id="aspace_7fccfd9cc336ee057d53736eb42f67fb"
level="file">
<did>
<unittitle>McCourt, James</unittitle>
<unitdatestructured altrender="1984–2015" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1984">1984</fromdate>
<todate standarddate="2015">2015</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_7fccfd9cc336ee057d53736eb42f67fb_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_7fccfd9cc336ee057d53736eb42f67fb_c2"
localtype="folder"
parent="aspace_7fccfd9cc336ee057d53736eb42f67fb_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493613"
id="aspace_a5b080ee17902bf96d4ae85ce70623d4"
level="file">
<did>
<unittitle>Mustoe, Anne</unittitle>
<unitdatestructured altrender="1999–2004" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1999">1999</fromdate>
<todate standarddate="2004">2004</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_a5b080ee17902bf96d4ae85ce70623d4_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_a5b080ee17902bf96d4ae85ce70623d4_c2"
localtype="folder"
parent="aspace_a5b080ee17902bf96d4ae85ce70623d4_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493614"
id="aspace_e2fcd42545243123f818d3b37f8ca10a"
level="file">
<did>
<unittitle>Takaezu, Toshiko</unittitle>
<unitdatestructured altrender="1987–2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1987">1987</fromdate>
<todate standarddate="2011">2011</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_e2fcd42545243123f818d3b37f8ca10a_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_e2fcd42545243123f818d3b37f8ca10a_c2"
localtype="folder"
parent="aspace_e2fcd42545243123f818d3b37f8ca10a_c1">32-33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493615"
id="aspace_e1ca928f4411c226896cdee8ad7dbd1a"
level="file">
<did>
<unittitle>Tyng, Lila Luce</unittitle>
<unitdatestructured altrender="1950–1999" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_e1ca928f4411c226896cdee8ad7dbd1a_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_e1ca928f4411c226896cdee8ad7dbd1a_c2"
localtype="folder"
parent="aspace_e1ca928f4411c226896cdee8ad7dbd1a_c1">34-36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493616"
id="aspace_e9d7861fa7ab6be595b7bd6654bef0c5"
level="file">
<did>
<unittitle>Von Stade, Frederica</unittitle>
<unitdatestructured altrender="1992–2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1992">1992</fromdate>
<todate standarddate="2011">2011</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_e9d7861fa7ab6be595b7bd6654bef0c5_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_e9d7861fa7ab6be595b7bd6654bef0c5_c2"
localtype="folder"
parent="aspace_e9d7861fa7ab6be595b7bd6654bef0c5_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493617"
id="aspace_23c12cad5c6c22ae9a676581bf753816"
level="file">
<did>
<unittitle>Warrick, Ruth</unittitle>
<unitdatestructured altrender="1957–2005" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1957">1957</fromdate>
<todate standarddate="2005">2005</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_23c12cad5c6c22ae9a676581bf753816_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_23c12cad5c6c22ae9a676581bf753816_c2"
localtype="folder"
parent="aspace_23c12cad5c6c22ae9a676581bf753816_c1">38-40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493618"
id="aspace_066bbab9b936cd244a872f4da5d74710"
level="file">
<did>
<unittitle>Whitacre, Bruce</unittitle>
<unitdatestructured altrender="1991–2016" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1991">1991</fromdate>
<todate standarddate="2016">2016</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_066bbab9b936cd244a872f4da5d74710_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_066bbab9b936cd244a872f4da5d74710_c2"
localtype="folder"
parent="aspace_066bbab9b936cd244a872f4da5d74710_c1">41</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3493579"
id="aspace_361c966a09d952d35cc01dcd58df399c"
level="subseries">
<did>
<unittitle>Writings</unittitle>
</did>
<scopecontent id="aspace_3fde6a3d515c8d1339f151541edd61e6">
<head>Scope and Contents</head>
<p>This subseries contains drafts, correspondence, annotated printouts, photographs, ephemera, and other materials related to books such as Cinderella is a Man, Last Guy Waltzing, India: Paradox and Treasures, and Expect the Unexpected, as well as travel articles by Gustafson.</p>
</scopecontent>
<arrangement id="aspace_2540efc846a66939d2a9ebe6b06a25fa">
<head>Arrangement</head>
<p>Arranged alphabetically by title or folder title.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3493619"
id="aspace_df494dc64f2e0d0d649a9a3b53beb40f"
level="file">
<did>
<unittitle>Assorted manuscripts: drafts and essays, including Robert Butts's lengthy descriptions of Apollo Muses</unittitle>
<unitdatestructured altrender="1985–2014" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1985">1985</fromdate>
<todate standarddate="2014">2014</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_df494dc64f2e0d0d649a9a3b53beb40f_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_df494dc64f2e0d0d649a9a3b53beb40f_c2"
localtype="folder"
parent="aspace_df494dc64f2e0d0d649a9a3b53beb40f_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3493620"
id="aspace_5f2f70672141f24573c307e60d923ba9"
level="file">
<did>
<unittitle>
<title>
<part>Cinderella is a Man</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3493688"
id="aspace_2c70ac2e786ed43fd7a2b8d8f77e3585"
level="item">
<did>
<unittitle>Notes and early drafts</unittitle>
<unitdatestructured altrender="circa 1998" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1998">1998</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/387938 /locations/9"
containerid="39002140988024"
encodinganalog="Paige 15"
id="aspace_2c70ac2e786ed43fd7a2b8d8f77e3585_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_2c70ac2e786ed43fd7a2b8d8f77e3585_c2"
localtype="folder"