-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path12021.xml
12628 lines (12626 loc) · 748 KB
/
12021.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.robards">beinecke.robards</recordid>
<otherrecordid localtype="BIB">16066716</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Jason Robards Papers </titleproper>
<titleproper localtype="filing">Robards (Jason) Papers</titleproper>
<author>by Janet Lopes and Michael Rush</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>December 2021</date>
<num>YCAL MSS 1393</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-61, 63-73, 75-80, 84, 86, 87 (Oversize), 88-89, 98, 101 (Oversize), 102, 105-128, 129 (Oversize), 130-136, 138-140, 142-143, 144-145 (Oversize) (Cold Storage), 146-147 (Record Album Storage), 148-153</p>
<p>Folder: 96 (Broadside)</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 62 (Oversize), 74, 81-83 (Oversize), 90-92 (Oversize), 99-100 (Oversize), 103-104, 137, 141</p>
<p>Folders: 85 (Broadside), 93 (Broadside), 94 (Broadside, oversize), 95 (Broadside), 97 (Broadside, 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>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-27T23:00:46-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Monday January 27, 2025 at 23:00</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/12021" level="collection">
<did>
<unittitle>Jason Robards papers</unittitle>
<unitid>YCAL MSS 1393</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>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>104.01</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">147 boxes + 6 broadside</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1856">1856</fromdate>
<todate standarddate="2002">2002</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1908">1908</fromdate>
<todate standarddate="2002">2002</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_85431e9c490b56dacf016578d30923b8">This collection consists of papers documenting the life and work or American actor Jason Robards. Scripts, many of which are annotated, document many of Robard's roles on stage, film, and television. Playscripts contain several by Eugene O'Neill, including <title render="italic">
<part>Hughie</part>
</title>, <title render="italic">
<part>Ah, Wilderness!</part>
</title>, and <title render="italic">
<part>A Moon for the Misbegotten</part>
</title>. Correspondence consists of letters and other papers relating to a variety of theatrical, film, and television productions starring Robards; personal correspondence including correspondence with Robards's parents, Hope Maxine Milburn and Jason Robards Sr., letters received during Robards's naval service during the Second World War, condolence letters following his father's death, and fan correspondence; and business correspondence documenting potential roles and various projects, including Robards's charitable work. Other papers in the collecton include scrapbooks, press materials, clippings, a costume, props, realia, photographs, posters, lobby cards, artwork, annotated and inscribed books, awards, and audiovisual materials documenting Robards's acting career, as well as that of his father, Jason Robards, Sr. The collection also includes personal papers, which consist of calendars, planners, biographical materials, and memorials to Robards following his death in 2000.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Robards, Jason</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_03e09362fc4079971f77e1eed64127cd">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
<p>Boxes 143-152 (audiovisual materials): Restricted fragile. Reference copies may be requested. Consult Access Services for further information.</p>
<p>Box 153 (health records): Restricted until 2071.</p>
</accessrestrict>
<userestrict id="aspace_ca24cb6028ec30eae50d9f735836c4a6">
<head>Conditions Governing Use</head>
<p>The Jason Robards Papers is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the auhors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<acqinfo id="aspace_0e2277aba21d107780343501466e05e8">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Shannon O'Connor Robards and Jake O'Neill Robards on the Sinclair Lewis Fund, 2020 and gift of Shannon O'Connor Robards and Jake O'Neill Robards, 2020.</p>
</acqinfo>
<scopecontent id="aspace_150fbada44fc1164df4948409d5de21f">
<head>Content Description</head>
<p>This collection consists of papers documenting the life and work or American actor Jason Robards. Scripts, many of which are annotated, document many of Robard's roles on stage, film, and television. Playscripts contain several by Eugene O'Neill, including <title render="italic">
<part>Hughie</part>
</title>, <title render="italic">
<part>Ah, Wilderness!</part>
</title>, and <title render="italic">
<part>A Moon for the Misbegotten</part>
</title>. Correspondence consists of letters and other papers relating to a variety of theatrical, film, and television productions starring Robards; personal correspondence including correspondence with Robards's parents, Hope Maxine Milburn and Jason Robards Sr., letters received during Robards's naval service during the Second World War, condolence letters following his father's death, and fan correspondence; and business correspondence documenting potential roles and various projects, including Robards's charitable work. Other papers in the collecton include scrapbooks, press materials, clippings, a costume, props, realia, photographs, posters, lobby cards, artwork, annotated and inscribed books, awards, and audiovisual materials documenting Robards's acting career, as well as that of his father, Jason Robards, Sr. The collection also includes personal papers, which consist of calendars, planners, biographical materials, and memorials to Robards following his death in 2000.</p>
</scopecontent>
<prefercite id="aspace_e78192311adc1914a05d0296960776b2">
<head>Preferred Citation</head>
<p>Jason Robards Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<arrangement id="aspace_d6f6dc717095099a76a26b564164ef57">
<head>Arrangement</head>
<p>The collection is organized into ten series: I. Scripts, 1951-1999. II. Correspondence, 1908-2002. III. Scrapbooks, press, and clippings, circa 1920s-2000. IV. Personal papers, 1914-2002. V. Costume, props, and realia, 1964-1966, undated. VI. Photographs, 1920-2000. VII. Posters, lobby cards, and artwork, 1856-1995. VIII. Annotated and inscribed books, 1866-1995. IX. Awards, 1955-2002. X. Audiovisual materials, 1965-2001.</p>
</arrangement>
<bioghist id="aspace_e61afcbee11864a8ec01543f682fc755">
<head>Jason Robards</head>
<p>Jason Robards, Jr. (1922-2000) was a prolific American stage and film actor whose career stretched from the late 1940s, following his service in the United State Navy during the Second World War, until his death from lung cancer in 2000. On the stage, Robards repeatedly performed in plays by Eugene O'Neill, often in collaboration with director José Quintero, and originated the role of Jamie Tyrone, Jr. in <title render="italic">
<part>Long Day's Journey into Night</part>
</title> in 1956. He was nominated for eight Tony Awards, winning Best Performance by a Leading Actor in a Play for his work in <title render="italic">
<part>The Disenchanted</part>
</title> (1959). On screen, Robards appeared in over sixty films, including <title render="italic">
<part>All the President's Men</part>
</title> and <title render="italic">
<part>Julia</part>
</title>, for which he won the Academy Award for Best Supporting Actor in consecutive years, in 1976 and 1977, respectively. Robards was married four times, and had six children.</p>
</bioghist>
<processinfo id="aspace_f3d9091c0b8cbe7b78aef6d7394a24f7">
<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 as they are acquired, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received a basic level of processing, including rehousing and minimal organization.</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 or revisions in arrangement and description.</p>
</processinfo>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh93009171"
source="lcsh">
<part localtype="topical">Actors</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh87006129"
source="lcsh">
<part localtype="topical">Motion picture actors and actresses</part>
<part localtype="geographic">United States</part>
</subject>
<subject source="local">
<part localtype="topical">Motion pictures</part>
<part localtype="topical">Production and direction</part>
<part localtype="geographic">United States</part>
</subject>
<subject source="local">
<part localtype="topical">Television</part>
<part localtype="topical">Production and direction</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2005007593"
source="lcsh">
<part localtype="topical">Television actors and actresses</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85134560"
source="lcsh">
<part localtype="topical">Theater</part>
<part localtype="geographic">United States</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300028045" source="aat">
<part localtype="genre_form">Audiovisual materials</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/page/aat/300266810" source="aat">
<part localtype="genre_form">Costumes (character dress)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300208593" source="aat">
<part localtype="genre_form">Lobby cards</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027221" source="aat">
<part localtype="genre_form">Posters</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026487" source="aat">
<part localtype="genre_form">Scripts (documents)</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Actors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname>
<part localtype="agent_person">O'Neill, Eugene, 1888-1953</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Milburn, Hope Maxine, 1895-1992</part>
</persname>
<persname>
<part localtype="agent_person">Robards, Jason</part>
</persname>
<persname>
<part localtype="agent_person">Robards, Jason, 1892-1963</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3356743"
id="aspace_2b85bf03b14614b159e938b779bc18c2"
level="series">
<did>
<unittitle>Scripts</unittitle>
<unitid>Series I</unitid>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1951">1951</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_5bba68564376d62a553892b01b22ba0f">
<head>Arrangement</head>
<p>Organized into three subseries: Playscripts, 1951-1996; Filmscripts, 1962-1997; and Television scripts, 1963-1999.</p>
</arrangement>
<scopecontent id="aspace_446c729441094fa50061ac7ff9a14220">
<head>Scope and Contents</head>
<p>This series consists of scripts documenting Jason Robards's work as an actor in theater, film and television.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3357998"
id="aspace_040b771671ec51667c4af428fd14bc3b"
level="subseries">
<did>
<unittitle>Playscripts</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1951">1951</fromdate>
<todate standarddate="1996">1996</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_5f228a89f2f66271e6142fdfcf84a939">
<head>Arrangement</head>
<p>Arranged chronologically.</p>
</arrangement>
<scopecontent id="aspace_1f478e57a4b940be8561e15d9e87e196">
<head>Scope and Contents</head>
<p>This subseries consists of playscripts for theatrical productions starring Jason Robards.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3383194"
id="aspace_e5330134f3fe47d14ee5eb8d7ed84a87"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Stalag 17</part>
</title> (1957), signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951">1951</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378857 /locations/9"
containerid="39002140964736"
encodinganalog="archive half legal"
id="aspace_e5330134f3fe47d14ee5eb8d7ed84a87_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358371"
id="aspace_cdcf3f6d8bae400173f639e175700406"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Disenchanted</part>
</title> (1958-1959), annotated script and playbill</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/378857 /locations/9"
containerid="39002140964736"
encodinganalog="archive half legal"
id="aspace_cdcf3f6d8bae400173f639e175700406_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_463264f3bbc338f271d9f501e3d6a8a9">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3358010"
id="aspace_3e9b3d86bc3459c212f70e0c8fe48def"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Disenchanted</part>
</title> (1958-1959), annotated</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/378857 /locations/9"
containerid="39002140964736"
encodinganalog="archive half legal"
id="aspace_3e9b3d86bc3459c212f70e0c8fe48def_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358319"
id="aspace_e0683db8b5ff2c3951f475b0e70fc73a"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Toys in the Attic</part>
</title> (1960-1961), signed and annotated</unittitle>
<unitdatestructured altrender="1959 November 5"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1959-11-05">1959 November 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378857 /locations/9"
containerid="39002140964736"
encodinganalog="archive half legal"
id="aspace_e0683db8b5ff2c3951f475b0e70fc73a_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358372"
id="aspace_200781bf0e3a3bfaf5ecf5e13b419b4e"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Toys in the Attic</part>
</title> (1960-1961), annotated</unittitle>
<unitdatestructured altrender="1960 January 11"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1960-01-11">1960 January 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378857 /locations/9"
containerid="39002140964736"
encodinganalog="archive half legal"
id="aspace_200781bf0e3a3bfaf5ecf5e13b419b4e_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_8f7750db5a5f8c0cf316330c3fef9388">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3358373"
id="aspace_6ca4567837c034044b6568f935a07017"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Big Fish, Little Fish</part>
</title> (1961), annotated</unittitle>
<unitdatestructured altrender="1960 December 27"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1960-12-27">1960 December 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378857 /locations/9"
containerid="39002140964736"
encodinganalog="archive half legal"
id="aspace_6ca4567837c034044b6568f935a07017_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358002"
id="aspace_b2a42e5cde5195e2f4860ea6b31946e9"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Big Fish, Little Fish</part>
</title> (1961), annotated</unittitle>
<unitdatestructured altrender="1960 December 27"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1960-12-27">1960 December 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378858 /locations/9"
containerid="39002140964744"
encodinganalog="archive half legal"
id="aspace_b2a42e5cde5195e2f4860ea6b31946e9_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_23fe931bb8202e5be81073d9f6dc365c">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3358003"
id="aspace_6998b9c95e4fb713fe870a8a4e8f0495"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Big Fish, Little Fish</part>
</title> (1961)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/378858 /locations/9"
containerid="39002140964744"
encodinganalog="archive half legal"
id="aspace_6998b9c95e4fb713fe870a8a4e8f0495_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358320"
id="aspace_78ff39b896d35a63ba1cdc0706f9789d"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>A Thousand Clowns</part>
</title> (1962-1963)</unittitle>
<unitdatestructured altrender="1961 June 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1961-06-14">1961 June 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378858 /locations/9"
containerid="39002140964744"
encodinganalog="archive half legal"
id="aspace_78ff39b896d35a63ba1cdc0706f9789d_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358321"
id="aspace_6fa24f81f5d5d38aa0a50256ad6d69ab"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>A Thousand Clowns</part>
</title> (1962-1963)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/378858 /locations/9"
containerid="39002140964744"
encodinganalog="archive half legal"
id="aspace_6fa24f81f5d5d38aa0a50256ad6d69ab_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358377"
id="aspace_40934ef14730e972d02bc839d1cdab43"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>But for Whom Charlie</part>
</title> (1964), signed and annotated</unittitle>
<unitdatestructured altrender="1964 March" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1964-03">1964 March</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378908 /locations/9"
containerid="39002140964751"
encodinganalog="archive half legal"
id="aspace_40934ef14730e972d02bc839d1cdab43_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
<scopecontent id="aspace_d4f9ad2b42f822cd45cbffa23323ba58">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3384206"
id="aspace_2dd57248ec7595e4962b0e42f67a26ba"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Later Plays of Eugene O'Neill</part>
</title> including <title localtype="simple" render="italic">
<part>Hughie</part>
</title> (1964-1965) and <title localtype="simple" render="italic">
<part>Ah, Wilderness</part>
</title> (1988), signed</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1967">1967</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378908 /locations/9"
containerid="39002140964751"
encodinganalog="archive half legal"
id="aspace_2dd57248ec7595e4962b0e42f67a26ba_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358958"
id="aspace_1751c40123f847df972d96a4647a56cd"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Hughie</part>
</title> (1964-1965), signed and annotated</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1981, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1981">1981, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378908 /locations/9"
containerid="39002140964751"
encodinganalog="archive half legal"
id="aspace_1751c40123f847df972d96a4647a56cd_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358381"
id="aspace_5580719457c5ea36a45808b708950a96"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Devils</part>
</title> (1965-1966), signed and annotated, and in-laid newspaper clipping</unittitle>
<unitdatestructured altrender="1965 May-October"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1965-05">1965 May</fromdate>
<todate standarddate="1965-10">1965 October</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378909 /locations/9"
containerid="39002140964769"
encodinganalog="archive legal"
id="aspace_5580719457c5ea36a45808b708950a96_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_7ff3d7d5f91b1c44cb9a7e8d75eb6432">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3358383"
id="aspace_f207ca3fe20bf7fce260d65b122d88c1"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>We Bombed in New Haven</part>
</title> (1968), signed and annotated</unittitle>
<unitdatestructured altrender="1968 June 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1968-06-11">1968 June 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378909 /locations/9"
containerid="39002140964769"
encodinganalog="archive legal"
id="aspace_f207ca3fe20bf7fce260d65b122d88c1_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_2b1437515ff6bb1068719f6d5195a99e">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3358346"
id="aspace_0fd973340b3973b46fb0f3000e008b66"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>An Unpleasant Evening with H. L. Mencken</part>
</title> (1972)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1970">1970</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378909 /locations/9"
containerid="39002140964769"
encodinganalog="archive legal"
id="aspace_0fd973340b3973b46fb0f3000e008b66_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_6466492b064d5da78e5d21071d2ac3d8">
<head>Scope and Contents</head>
<p>Considered role in this play at one time.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3358009"
id="aspace_eec39c307d4f84c42a2e4e8e55df65e2"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Country Girl</part>
</title> (1972), two copies, signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951">1951</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378909 /locations/9"
containerid="39002140964769"
encodinganalog="archive legal"
id="aspace_eec39c307d4f84c42a2e4e8e55df65e2_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358940"
id="aspace_509b4a05ac6e704d6c9d2fb99125e401"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Country Girl</part>
</title> (1972), signed and annotated</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/378910 /locations/9"
containerid="39002140964777"
encodinganalog="archive legal"
id="aspace_509b4a05ac6e704d6c9d2fb99125e401_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
<scopecontent id="aspace_6675a5ab8b10921604c8863dcbfdd0da">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3358323"
id="aspace_6f3f0d2cac70b28cc94328a2e1197701"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>A Moon for the Misbegotten</part>
</title> (1973-1974), signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1958">1958</datesingle>
</unitdatestructured>
<materialspec id="aspace_ed031affe697e3209c5485ce47f39e5c">Removed from binder.</materialspec>
<container altrender="/repositories/11/top_containers/378910 /locations/9"
containerid="39002140964777"
encodinganalog="archive legal"
id="aspace_6f3f0d2cac70b28cc94328a2e1197701_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3387106"
id="aspace_4b5acdfee6b55c49a76ec100672ab8c9"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>A Moon for the Misbegotten</part>
</title> (1973-1974), script of theater cues</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1973">1973</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378910 /locations/9"
containerid="39002140964777"
encodinganalog="archive legal"
id="aspace_4b5acdfee6b55c49a76ec100672ab8c9_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3383198"
id="aspace_16fd98f6aaced570a0394c987593585c"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>A Touch of the Poet</part>
</title> (1977-1978), signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1976">1976</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378910 /locations/9"
containerid="39002140964777"
encodinganalog="archive legal"
id="aspace_16fd98f6aaced570a0394c987593585c_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358004"
id="aspace_33f6f389348b32ff4daee7067194eda2"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Brute and Other Farces</part>
</title>, signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1986">1986</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378910 /locations/9"
containerid="39002140964777"
encodinganalog="archive legal"
id="aspace_33f6f389348b32ff4daee7067194eda2_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358922"
id="aspace_de47fe8889ea9d13ac3e53aec1cf3351"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>A Month of Sundays</part>
</title> (1987), signed and annotated</unittitle>
<unitdatestructured altrender="1987 January" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1987-01">1987 January</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378911 /locations/9"
containerid="39002140964785"
encodinganalog="archive legal"
id="aspace_de47fe8889ea9d13ac3e53aec1cf3351_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
<scopecontent id="aspace_004d27e70ecdbdb3432b23570cc8c50b">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3358000"
id="aspace_05ec2fe7eb03833c1d28fde81adacd5a"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Ah, Wilderness</part>
</title> (1988), signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1960">1960</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378911 /locations/9"
containerid="39002140964785"
encodinganalog="archive legal"
id="aspace_05ec2fe7eb03833c1d28fde81adacd5a_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358001"
id="aspace_75d8d6dc405b08f9c367c73aebe6a06a"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Ah, Wilderness</part>
</title> (1988), signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1988">1988</datesingle>
</unitdatestructured>
<materialspec id="aspace_fbe380a60939c41b70898239d1bd04e0">Removed from binder.</materialspec>
<container altrender="/repositories/11/top_containers/378911 /locations/9"
containerid="39002140964785"
encodinganalog="archive legal"
id="aspace_75d8d6dc405b08f9c367c73aebe6a06a_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358933"
id="aspace_6e2389afd23f5429cc8575d005d5a818"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Established Price</part>
</title> (1990), signed and annotated</unittitle>
<unitdatestructured altrender="1989 February" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1989-02">1989 February</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378911 /locations/9"
containerid="39002140964785"
encodinganalog="archive legal"
id="aspace_6e2389afd23f5429cc8575d005d5a818_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
<scopecontent id="aspace_afc96c3cdd814351b2a3850300f6d30e">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3358937"
id="aspace_2fca02e6336232eda296871285a2558a"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Park Your Car in Harvard Yard</part>
</title> (1991-1992), signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1991">1991</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378911 /locations/9"
containerid="39002140964785"
encodinganalog="archive legal"
id="aspace_2fca02e6336232eda296871285a2558a_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
<scopecontent id="aspace_a7a1bb1ee27308939c4f59a503113805">
<head>Scope and Contents</head>
<p>Leatherbound script.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3359101"
id="aspace_5ab5a4b8ad45c3481b033f37d4f01f6c"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Intoxicated by My Illness</part>
</title> and <title localtype="simple" render="italic">
<part>Kafka was the Rage</part>
</title> (1993), staged reading from the works of Anatola Broyard, signed and annotated</unittitle>
<unitdatestructured altrender="1993 October 19-20"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1993-10-19">1993 October 19</fromdate>
<todate standarddate="1993-10-20">1993 October 20</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378912 /locations/9"
containerid="39002140964793"
encodinganalog="archive legal"
id="aspace_5ab5a4b8ad45c3481b033f37d4f01f6c_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358324"
id="aspace_128b1e1d1bf3d58eb149cdbf6a0622a8"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>No Man's Land</part>
</title> (1994), signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1975">1975</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378912 /locations/9"
containerid="39002140964793"
encodinganalog="archive legal"
id="aspace_128b1e1d1bf3d58eb149cdbf6a0622a8_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3384203"
id="aspace_0b33833e18a5960ade65f7c911410d32"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Complete Works: Four</part>
</title> by Harold Pinter including <title localtype="simple" render="italic">
<part>No Man's Land</part>
</title> (1994), signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1981">1981</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378912 /locations/9"
containerid="39002140964793"
encodinganalog="archive legal"
id="aspace_0b33833e18a5960ade65f7c911410d32_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358325"
id="aspace_c9b4f61bb868f5d7dcb32aab45e2ad89"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>No Man's Land</part>
</title> (1994), signed and annotated</unittitle>
<unitdatestructured altrender="1993 December" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1993-12">1993 December</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378912 /locations/9"
containerid="39002140964793"
encodinganalog="archive legal"
id="aspace_c9b4f61bb868f5d7dcb32aab45e2ad89_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358326"
id="aspace_9e52ebeabdabc050b5cfc6e9540c863e"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Moonlight</part>
</title> (1995), signed and annotated</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1995">1995</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/378912 /locations/9"
containerid="39002140964793"
encodinganalog="archive legal"
id="aspace_9e52ebeabdabc050b5cfc6e9540c863e_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358082"
id="aspace_272383e5d281ffef068887402c3960ff"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Molly Sweeney</part>
</title> (1996), in-laid pages and signed</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/378912 /locations/9"
containerid="39002140964793"
encodinganalog="archive legal"
id="aspace_272383e5d281ffef068887402c3960ff_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3358083"
id="aspace_846c63a0c75db99aa6a0e1caa3b401c0"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Molly Sweeney</part>
</title> (1996), annotated</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/378912 /locations/9"
containerid="39002140964793"
encodinganalog="archive legal"
id="aspace_846c63a0c75db99aa6a0e1caa3b401c0_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3357841"
id="aspace_2ec8bed32cc4db5486a156bcabafb6e2"
level="subseries">
<did>
<unittitle>Filmscripts</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1962">1962</fromdate>
<todate standarddate="1997">1997</todate>
</daterange>