-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1501.xml
1313 lines (1313 loc) · 78.3 KB
/
1501.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.jeffers">beinecke.jeffers</recordid>
<otherrecordid localtype="BIB">8391182</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Robinson Jeffers Collection
</titleproper>
<titleproper localtype="filing">Jeffers (Robinson) Collection</titleproper>
<author>by Christopher Geissler, Tom Hyry, and Beinecke Staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>May 2008</date>
<num>YCAL MSS 284</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">8391182</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-5</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="1">1</num> published digital object. And that object are comprised of <num localtype="files" altrender="2">2</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T01:08:07-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 01:08</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1501" level="collection">
<did>
<unittitle>Robinson Jeffers collection</unittitle>
<unitid>YCAL MSS 284</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.67</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1951">1951</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1933">1933</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_200421d7dda180758dcc6bc2b82d85cf">The collection consists of manuscripts of Robinson Jeffers's poetry and a small amount of correspondence and other papers related to Jeffers.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Jeffers, Robinson, 1887-1962</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_15b683cee8b4ee906b0636c26bd1da09">
<head>Immediate Source of Acquisition</head>
<p>Acquired by gift and purchase, 1949-2004.</p>
</acqinfo>
<accessrestrict id="aspace_da2a093370573b2f2765ef291db69230">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_5c926446eaf94e15c307f63848ba0bbc">
<head>Conditions Governing Use</head>
<p>The Robinson Jeffers Collection 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>
<prefercite id="aspace_2357107be0c54b8ac2d272c3cd6b090a">
<head>Preferred Citation</head>
<p>Robinson Jeffers Collection. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_59c4e0ebfadba17d70f854aaefda2852">
<head>Processing Information</head>
<p>Former call numbers: Za Jeffers and Uncat MSS 689.</p>
<p>Most of the descriptive information used in the inventory of this finding aid was derived from folder notes and catalog cards created by previous staff members of the Beinecke Library.</p>
</processinfo>
<relatedmaterial id="aspace_702955d57fc751aa30fee52b29373447">
<head>Associated Materials</head>
<p>Photographs of Robinson Jeffers (Za J355 +G1), Beinecke Rare Book and Manuscript Library, Yale University.</p>
<p>Pamphlets by and about Robinson Jeffers, including newspaper clippings and other ephemera (Za J355 +1), Beinecke Rare Book and Manuscript Library, Yale University.</p>
</relatedmaterial>
<altformavail id="aspace_1b2c206cab699a0572c43462dba76bf3">
<head>Existence and Location of Copies</head>
<p>Microfilm available for portions of the John Hay Whitney Gift including Autograph manuscript of "Cawdor" (Film #2777) and Manuscripts of "Roan stallion," "The tower beyond tragedy," and an unpublished poem (Film #903)</p>
</altformavail>
<bioghist id="aspace_b51668e4b9126090e3c99c8088bed05d">
<head>Robinson Jeffers</head>
<p>Robinson Jeffers (1887-1962) was born John Robinson Jeffers in Pittsburgh, Pennsylvania, the son of the Reverend Dr. William Hamilton Jeffers and Annie Robinson Tuttle. He was educated by his father and at European boarding schools. In 1902, Jeffers entered the University of Western Pennsylvania (now the University of Pittsburgh), but was graduated from Occidental College, California, three years later. He pursued graduate studies in literature and philosophy at the Universities of Southern California and Zurich, before enrolling in the Medical School at the University of Southern California in September 1907. In 1910 he left medical school to study forestry for one year at the University of Washington.</p>
<p>While studying at the University of Southern California, Jeffers met Una Call Kuster, the wife of a prominent Los Angeles attorney. Their involvement and Kuster's ensuing divorce was a public scandal that was widely reported. Jeffers and Kuster were married in 1913 and one year later settled in Carmel, California where Jeffers eventually built the stone cottage and tower he called "Tor House." A daughter was born in 1914 but died in infancy; twin sons were born in 1916. In 1912 Jeffers privately published his first volume of poetry, <title localtype="simple" render="italic">
<part>Flagons and Apples</part>
</title>. In 1916 his second volume, <title localtype="simple" render="italic">
<part>Californians</part>
</title>, was commercially published. <title localtype="simple" render="italic">
<part>Tamar and Other Poems</part>
</title> (1924), his third volume, proved both a formal and critical breakthrough and was reissued in an expanded edition the following year under the title <title localtype="simple" render="italic">
<part>Roan Stallion, Tamar and other Poems</part>
</title>. Over a period encompassing five decades, Jeffers published nearly two-dozen volumes of poetry. In 1954 he published his last volume, <title localtype="simple" render="italic">
<part>Hungerfield and Other Poems</part>
</title>, an expanded edition of his <title localtype="simple" render="italic">
<part>Hungerfield</part>
</title> (1952) which included a eulogy for Una Jeffers who died in 1950. A volume of Jeffers' uncollected poems, <title localtype="simple" render="italic">
<part>The Beginning and the End and Other Poems</part>
</title>, was published posthumously in 1963.</p>
</bioghist>
<scopecontent id="aspace_7084a54aa999ee45019352e6b253b8c4">
<head>Scope and Contents</head>
<p>The Robinson Jeffers Collection encompasses accessions of single manuscripts, small groups of manuscripts, and other papers pertaining to Robinson Jeffers, acquired by the library from a variety of sources. Materials incorporated into this collection have been organized into three series documenting the gifts of John Hay Whitney, Robert M. Leylan, and materials from other sources. The collection spans the years 1922-1951, with the bulk of material dating from 1922-1933.</p>
<p>The bulk of the collection consists of manuscript drafts of Jeffers' early narrative and lyrical poems. The John Hay Whitney Gift materials contain significant annotation and are inscribed with descriptive and analytical commentary. Additionally, a single folded sheet labeled "Genesis of Tamar," includes plans for the stairway of the tower at Tor House. The Robert M. Leylan Gift includes full drafts of shorter poems and passages from longer and unidentified poems. The third series, Materials from Other Sources, incorporates a typescript copy of a study of the poetry of Robinson Jeffers by Howard Trivers and annotated by Robert M. Leylan.</p>
<p>The limited correspondence in each series includes letters from Robinson and Una Jeffers, the book dealer Barnet B. Ruder, and the Jeffers bibliographer S. S. Alberts, concerning the various manuscript materials.</p>
</scopecontent>
<arrangement id="aspace_145d21c7f3f4e8cb9e5b9f29b442f879">
<head>Arrangement</head>
<p>Organized into four series: I. John Hay Whitney Gift, II. Robert M. Leylan Gift, III. Materials from Other Sources. IV. 2004 Addition.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004341"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85103735"
source="lcsh">
<part localtype="topical">Poets, American</part>
</subject>
<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">Poets</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname>
<part localtype="agent_person">Jeffers, Robinson, 1887-1962</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2115299"
id="aspace_e0e1b2d0f26023908f9dc0bf46ab9ee5"
level="series">
<did>
<unittitle>2004 Addition</unittitle>
<unitid>Series IV</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.21</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1920-1928" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1928">1928</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/578864"
id="ref15"
level="subseries">
<did>
<unittitle>Writings</unittitle>
<unitdatestructured altrender="1922-1933" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1922">1922</fromdate>
<todate standarddate="1933">1933</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_43ef2eca2fda9852af84519e60be64a1">
<head>Scope and Contents</head>
<p>The writings consist of bound volumes of manuscripts of Jeffers' poems. The file titles were transcribed directly from the spines of the volumes. One volume, "Manuscript Poems" consists of multiple shorter works by Jeffers.</p>
</scopecontent>
<arrangement id="aspace_9f85c1db1c8ab7492689ed2f7c015702">
<head>Arrangement</head>
<p>Arranged alphabetically by title of the poem.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/578865"
id="ref16"
level="file">
<did>
<unittitle>"Cawdor"</unittitle>
<unitdatestructured altrender="1927-1929" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1929">1929</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70342 /locations/9"
containerid="39002075268715"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">1</container>
</did>
<odd id="aspace_1a5055fe7258bfdeecf4f9fa37fe2617">
<head>General note</head>
<p>Original manuscript written in pencil on 137 numbered leaves, 28 cm.; inscribed on the first and last leaves by the author; with a long autograph inscription concerning the poem, signed and dated January 1929, on a separate leaf, and with an autograph letter signed from Una (Mrs. Robinson) Jeffers to Barnet B. Ruder concerning the manuscript, January 15, 1929, laid in.</p>
</odd>
<altformavail id="aspace_3050261db7fa1208724978169896e909">
<head>Existence and Location of Copies</head>
<p>Film #2777</p>
</altformavail>
</c>
<c altrender="/repositories/11/archival_objects/578866"
id="ref19"
level="file">
<did>
<unittitle>"Dear Judas"; "The Loving Shepherdess"</unittitle>
<unitdatestructured altrender="1928-1930" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1930">1930</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70342 /locations/9"
containerid="39002075268715"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">2</container>
</did>
<c altrender="/repositories/11/archival_objects/578867"
id="ref20"
level="file">
<did>
<unittitle>"Dear Judas"</unittitle>
<unitdatestructured altrender="1928-1930" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1930">1930</todate>
</daterange>
</unitdatestructured>
</did>
<odd id="aspace_2eac7699b7198682fbeaea7f6366ede3">
<head>General note</head>
<p>Original manuscript, written in pencil on 40 numbered leaves, plus 2 pages numbered 41 and 42, 28 cm.; with an autograph inscription concerning the poem, signed and dated September 8, 1930, on a separate leaf.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578868"
id="ref22"
level="file">
<did>
<unittitle>"The Loving Shepherdess"</unittitle>
<unitdatestructured altrender="1929-1930" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1929">1929</fromdate>
<todate standarddate="1930">1930</todate>
</daterange>
</unitdatestructured>
</did>
<odd id="aspace_95f5b8f5f2b9a6f257f9992bbb2bd6f2">
<head>General note</head>
<p>Original manuscript, written in pencil on 64 numbered leaves, 28 cm.; with an autograph inscription concerning the poem, signed and dated September 8, 1930, on a separate leaf.</p>
</odd>
</c>
</c>
<c altrender="/repositories/11/archival_objects/578869"
id="ref24"
level="file">
<did>
<unittitle>"Descent to the Dead"</unittitle>
<unitdatestructured altrender="1928-1932" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1932">1932</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70342 /locations/9"
containerid="39002075268715"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">3</container>
</did>
<odd id="aspace_723fc39e0dd7b07812110633b404ce59">
<head>General note</head>
<p>Original manuscript, written in pencil on 25 numbered leaves (some leaves written on both sides and on verso of letters) plus 1 leaf of index, 28 cm.; with an autograph inscription concerning the poems, signed and dated April 27, 1932, on a separate leaf.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578870"
id="ref26"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Give Your Heart to the Hawks and Other Poems</part>
</title>
</unittitle>
<unitdatestructured altrender="1929-1933" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1929">1929</fromdate>
<todate standarddate="1933">1933</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70343 /locations/9"
containerid="39002075268723"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">4</container>
</did>
<odd id="aspace_5321454ad37733813ca03cde70978ee0">
<head>General note</head>
<p>Original manuscript, written chiefly in pencil on 254 leaves (some written on both sides), 28 cm.; with an autograph inscription concerning the manuscript and dated December 1933.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578871"
id="ref28"
level="file">
<did>
<unittitle>Manuscript poems</unittitle>
<unitdatestructured altrender="circa 1927, undated"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1927">circa 1927, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70344 /locations/9"
containerid="39002075268731"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">5</container>
</did>
<c altrender="/repositories/11/archival_objects/578872"
id="ref29"
level="file">
<did>
<unittitle>"Ascent to the Sierras" and "The Summit Redwood"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_d508151ec78d8519f127fcf38dc71109">
<head>General note</head>
<p>Original manuscript,written in pencil on 2 leaves, 28 cm; inscribed,"Original manuscript of 'Ascent to the Sierras.' Robinson Jeffers," with verso inscription,"Original manuscript of 'The Summit Redwood.' Robinson Jeffers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578873"
id="ref31"
level="file">
<did>
<unittitle>"Ascent to the Sierras"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_2be4d3a5d0485704ce57e65eb7762e63">
<head>General note</head>
<p>Original typescript, with manuscript corrections, on 2 leaves, 28 cm.; inscribed "Second draft. Robinson Jeffers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578874"
id="ref33"
level="file">
<did>
<unittitle>"The Bird with the Dark Plumes"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_e2a3889f6e6c4b84361c2d0859eb7a9f">
<head>General note</head>
<p>Original manuscript, written in pencil on 1 leaf, 28 cm.; inscribed "Original manuscript of 'The Bird with the Dark Plumes.' Robinson Jeffers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578875"
id="ref35"
level="file">
<did>
<unittitle>"Bixby's Landing"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_d8c0e623b96a40b3dab0da4a772c900e">
<head>General note</head>
<p>Original manuscript, written in pencil on 2 leaves, 17x22 cm.; inscribed "Original manuscript of 'Bixby's Landing.' . . . Robinson Jeffers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578876"
id="ref37"
level="file">
<did>
<unittitle>"Contrast"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_97799a14f92917ae28919d9835a8c65a">
<head>General note</head>
<p>Original typescript with manuscript corrections in pencil, 1 leaf, 28 cm.; inscribed "Second draft, Robinson Jeffers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578877"
id="ref39"
level="file">
<did>
<unittitle>"Fawn's Foster Mother"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_f5bc4551b96901b95746831c547a723a">
<head>General note</head>
<p>Original typescript, with manuscript corrections in pencil, 1 leaf, 28 cm.; inscribed "Second draft. Robinson Jeffers." Cancelled title: "The woman who nursed a fawn."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578878"
id="ref41"
level="file">
<did>
<unittitle>"Meditation on Saviors"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_e4f8ac3f37344ced6abc5783d313ace1">
<head>General note</head>
<p>Original manuscript, written in pencil on 7 leaves, 28 cm. (leaf 6, 18x25 cm.); inscribed "Original manuscript of 'Meditation on saviors.' Robinson Jeffers." Versos of leaves 1, 4, 5, and 6 have manuscript notes and drafts.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578879"
id="ref43"
level="file">
<did>
<unittitle>"Meditation on Saviors"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_c01f65dbd56737896c457a8b9544df40">
<head>General note</head>
<p>Original typescript, on 7 leaves, 28 cm.; inscribed "Second draft of 'Medtation on Saviors.' Robinson Jeffers." Cancelled titles: "Commentary on the women at Point Sur," "The peace or the people," and "Meditation on Redeemers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578880"
id="ref45"
level="file">
<did>
<unittitle>"Ocean"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_14dac4e4ec66e33f3025882dcb148a3f">
<head>General note</head>
<p>Original typescript with manuscript corrections in pencil, 1 leaf, 28 cm.; inscribed "Second draft. Robinson Jeffers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578881"
id="ref47"
level="file">
<did>
<unittitle>"A Redeemer"</unittitle>
<unitdatestructured altrender="circa 1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">circa 1927</datesingle>
</unitdatestructured>
</did>
<odd id="aspace_c55181f938f4a7ab7fae4343930b5918">
<head>General note</head>
<p>Original manuscript, written in pencil, on 5 leaves, 16-28 cm.; inscribed "'A Redeemer. . . . Robinson Jeffers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578882"
id="ref49"
level="file">
<did>
<unittitle>"A Redeemer"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_c8eac6d3b29c5b4ca8356e5fba5afe81">
<head>General note</head>
<p>Original typescript, with minor manuscript corrections in pencil, 4 leaves, 28 cm.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578883"
id="ref51"
level="file">
<did>
<unittitle>"Soliloquy"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_31f44975c20edfb74ab8ef65150a5507">
<head>General note</head>
<p>Original typescipt, with manuscript corrections in pencil, 1 leaf, 28 cm.; inscribed "Revised second draught of 'Soliloquy.' Robinson Jeffers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578884"
id="ref53"
level="file">
<did>
<unittitle>"The Summit Redwood"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_d40f168b3f28b52c88900a32b76aef8a">
<head>General note</head>
<p>Original typescript, with corrections in pencil, 2 leaves, 28 cm.; inscribed "(Second draft.) Robinson Jeffers."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578885"
id="ref55"
level="file">
<did>
<unittitle>"To a Young Artist"</unittitle>
<unitdatestructured altrender="circa 1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">circa 1927</datesingle>
</unitdatestructured>
</did>
<odd id="aspace_033d23949a9658e4a28a893f7bee2caf">
<head>General note</head>
<p>Original manuscript on 1 leaf, 28 cm.; inscribed "Original manuscript of 'To a Young Artist.' Robinson Jeffers." Written on verso, beginning of an autograph letter addressed "Dear Ben," Carmel, California, July 1, 1927.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578886"
id="ref57"
level="file">
<did>
<unittitle>"Tor House"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
</did>
<odd id="aspace_03304c638b551aa86a5befa079a5dd89">
<head>General note</head>
<p>Original typescript, with manuscript corrections in pencil, 1 leaf, 28 cm.; inscribed "Second draft. Robinson Jeffers."</p>
</odd>
</c>
</c>
<c altrender="/repositories/11/archival_objects/578887"
id="ref59"
level="file">
<did>
<unittitle>"Roan Stallion," "The Tower Beyond Tragedy," & an unpublished poem</unittitle>
<unitdatestructured altrender="1924-1925" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1925">1925</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70344 /locations/9"
containerid="39002075268731"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">6</container>
</did>
<altformavail id="aspace_d0f0655d02402950698be3b9b53860f6">
<head>Existence and Location of Copies</head>
<p>Film 903</p>
</altformavail>
<c altrender="/repositories/11/archival_objects/578888"
id="ref60"
level="file">
<did>
<unittitle>"Roan Stallion"</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
</did>
<odd id="aspace_6265b2ee45541d5cf10835b9043355e4">
<head>General note</head>
<p>Original manuscript, [19] pages, 27.5x33 cm.; pages [5]-[19] are written on versos of leaves numbered 54, 84-85, 90-93, 99-101, 118-119, and 120-122 of typewritten manuscript of a long narrative poem on Christ by Jeffers. Inscribed: "First draught of 'Roan Stallion' May-June 1925. R. J."</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578889"
id="ref62"
level="file">
<did>
<unittitle>"The Tower Beyond Tragedy"</unittitle>
<unitdatestructured altrender="1924-1925" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1925">1925</todate>
</daterange>
</unitdatestructured>
</did>
<odd id="aspace_1b73fb190791117ff6bdbf5403df6e63">
<head>General note</head>
<p>Original manuscript, [55] pages, 15.5x33; written in part on versos of discarded business letters, leaves numbered 87-89, 113-194, and 216-227 of typewritten manuscript of a long narrative poem on Christ by Jeffers, and on other leaves of discarded typescript. Inscribed: "First draught of 'The Tower Beyond Tragedy,' 1924-1925. R. J."</p>
</odd>
</c>
</c>
<c altrender="/repositories/11/archival_objects/578890"
id="ref65"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Roan Stallion, Tamar, and Other Poems</part>
</title>
</unittitle>
<unitdatestructured altrender="[1925?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">[1925?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70344 /locations/9"
containerid="39002075268731"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref65_c2" localtype="folder" parent="aspace_ref65_c1">7</container>
</did>
<odd id="aspace_506931db2979c3b2f97c7a95e15ca9b9">
<head>General note</head>
<p>Galley proofs, with manuscript corrections, 73 leaves; page proofs, with manuscript corrections, 81 leaves; pages (13-127) clipped from a copy of <title localtype="simple" render="italic">
<part>Tamar and other poems</part>
</title> ([1924]), from which galleys 29-73 were set.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578891"
id="ref67"
level="file">
<did>
<unittitle>Genesis of "Tamar"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[after 1922 Feb 22]-1925</unitdate>
<container altrender="/repositories/11/top_containers/70344 /locations/9"
containerid="39002075268731"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref67_c2" localtype="folder" parent="aspace_ref67_c1">8</container>
<daoset altrender="/repositories/11/digital_objects/211508">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2003550"
identifier="oid:2003550"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1013399/full/!150,150/0/default.jpg"
identifier="oid:2003550"
linktitle="recto"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2003550"
identifier="oid:2003550"
linktitle="recto"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Genesis of "Tamar"</p>
</descriptivenote>
</daoset>
</did>
<c altrender="/repositories/11/archival_objects/578892"
id="ref68"
level="file">
<did>
<unittitle>"Tamar"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[after 1922 Feb 22]</unitdate>
</did>
<odd id="aspace_7313438a56f2cad9490cad27bf136a73">
<head>General note</head>
<p>Original manuscript, written in pencil, 1 leaf, 36x63 (folded); contains the first germ of the Tamar story, with notes for its expansion; original manuscript of first and final draft of the poem 'Continent's end' from the Tamar volume; original manuscripts of fragments of two other short poems, never finished; and plans for the stairway of the granite tower which Jeffers built beside his house. Written on verso of Los Angeles Trust & Savings Bank statement dated January 17, 1922 to February 17, 1922.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578893"
id="ref70"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1925 Nov 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925-11-25">1925 Nov 25</datesingle>
</unitdatestructured>
</did>
<odd id="aspace_da4a5e761647254eed163a4344e91ba2">
<head>General note</head>
<p>Robinson Jeffers, typed letter signed to Donald Friede, 1 leaf (28 cm.), inscribed Carmel, California</p>
</odd>
</c>
</c>
<c altrender="/repositories/11/archival_objects/578894"
id="ref72"
level="file">
<did>
<unittitle>"Tamar" (negative copy)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">after 1922 Feb 22</unitdate>
<container altrender="/repositories/11/top_containers/70344 /locations/9"
containerid="39002075268731"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/578895"
id="ref73"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Thurso's Landing and Other Poems</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">before 1932</unitdate>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">10</container>
</did>
<odd id="aspace_6a982f32786e97d68fa89752a26f8ada">
<head>General note</head>
<p>Original manuscript, 195 numbered leaves, plus 1 leaf of index, 28 cm.; with an autograph inscription concerning the manuscript, signed and dated April 27, 1932.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578896"
id="ref75"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Women at Point Sur</part>
</title>
</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/578897"
id="ref76"
level="file">
<did>
<unittitle>Original manuscript</unittitle>
<unitdatestructured altrender="1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">1927</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">11</container>
</did>
<odd id="aspace_79402a1c61f324bfeeb7000824211743">
<head>General note</head>
<p>131 numbered leaves, 28 cm.; inscribed by the author to Donald Friede, with a note concerning the manuscript.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578898"
id="ref78"
level="file">
<did>
<unittitle>Galley proofs and page proofs</unittitle>
<unitdatestructured altrender="1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">1927</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">12</container>
</did>
<odd id="aspace_4f5b1535986f001bcd0121a3ad2b418b">
<head>General note</head>
<p>Galley proofs, 45 leaves, and page proofs, 55 leaves, with manuscript corrections.</p>
</odd>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/578899"
id="ref82"
level="subseries">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1951 May 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1951-05-24">1951 May 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref82_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref82_c2" localtype="folder" parent="aspace_ref82_c1">13</container>
</did>
<odd id="aspace_f256c23899cdb4e227199c94f10b47ee">
<head>General note</head>
<p>Robinson Jeffers, autograph letter signed to John Hay Whitney, 1 leaf (28 cm.), inscribed Tor House, Carmel, California</p>
</odd>
</c>
</c>
<c altrender="/repositories/11/archival_objects/578863"
id="ref13"
level="series">
<did>
<unittitle>John Hay Whitney Gift</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1922-1951, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1922">1922</fromdate>
<todate standarddate="1951">1951</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_77bba8093440a155753b7c105d2c2314">(4 boxes)</physdesc>
</did>
<custodhist id="aspace_78b0a6ff1c12229e65a6b4d82c0476d4">
<head>Custodial History</head>
<p>Gift of John Hay Whitney, 1951.</p>
</custodhist>
<arrangement id="aspace_bc3a0d9b2d875163618a8493d76f55eb">
<head>Arrangement</head>
<p>Organized into two subseries: Writings and Correspondence.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/578901"
id="ref88"
level="subseries">
<did>
<unittitle>Writings</unittitle>
<unitdatestructured altrender="1929-1932, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1929">1929</fromdate>
<todate standarddate="1932">1932</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_5d28bdd773e899eec722b54682033a02">
<head>Arrangement</head>
<p>Arranged alphabetically by title.</p>
</arrangement>
<scopecontent id="aspace_448a806b1164d7586733cc3a0b2a997a">
<head>Scope and Contents</head>
<p>Includes autograph and typescript copies of manuscripts of Jeffers' poetry.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/578902"
id="ref89"
level="file">
<did>
<unittitle>"Birds"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref89_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref89_c2" localtype="folder" parent="aspace_ref89_c1">14</container>
</did>
<odd id="aspace_466fd6572d168bb25299bdcb59fafbd3">
<head>General note</head>
<p>Autograph manuscript: [2] pages, 14.5 cm. With positive photostat.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578903"
id="ref91"
level="file">
<did>
<unittitle>"The Broken Balance"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">before 1929</unitdate>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref91_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref91_c2" localtype="folder" parent="aspace_ref91_c1">15</container>
</did>
<odd id="aspace_c09fb455ab13b3095a14f522b49d250b">
<head>General note</head>
<p>Original manuscript, 1 leaf, 28 cm.; from Section IV of the poem. Published in <title localtype="simple" render="italic">
<part>Dear Judas and Other Poems</part>
</title> (1929). With positive photostat.</p>
<p>Received laid in to limited edition of S. S. Alberts, <title localtype="simple" render="italic">
<part>A Bibliography of the Works of Robinson Jeffers</part>
</title> (1933).</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578904"
id="ref93"
level="file">
<did>
<unittitle>"Day After To-morrow"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref93_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref93_c2" localtype="folder" parent="aspace_ref93_c1">16</container>
</did>
<odd id="aspace_89e5bf2f9843d6f2f8915feca17f578f">
<head>General note</head>
<p>Original typescript, with manuscript corrections in pencil, 1 leaf, 28 cm. With positive photostat.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578905"
id="ref95"
level="file">
<did>
<unittitle>"Hands"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref95_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref95_c2" localtype="folder" parent="aspace_ref95_c1">17</container>
</did>
<odd id="aspace_97b38aac906071d7415bfac146a2d61d">
<head>General note</head>
<p>Autograph manuscript, 1 leaf, 27 cm. Original title: "The Cave of Hands." With positive photostat.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578906"
id="ref97"
level="file">
<did>
<unittitle>"Hooded Night"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref97_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref97_c2" localtype="folder" parent="aspace_ref97_c1">18</container>
</did>
<odd id="aspace_57fe95128298f6af29b835be7dbdb76b">
<head>General note</head>
<p>Autograph manuscript, [1] page, 28 cm. On verso, original manuscript verses discarded from his "Cawdor." With positive photostat.</p>
</odd>
</c>
<c altrender="/repositories/11/archival_objects/578907"
id="ref99"
level="file">
<did>
<unittitle>[Poems]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/70345 /locations/9"
containerid="39002075268749"
id="aspace_ref99_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref99_c2" localtype="folder" parent="aspace_ref99_c1">19</container>
</did>
<scopecontent id="aspace_c0266370a7b1474688351b06dad40b78">
<head>Scope and Contents</head>
<p>Original manuscripts (positive photostats), 10 leaves, 28 cm.; includes poems entitled "The enemy," "Post mortem," "Credo," "Day after to-morrow," passages from "Cawdor," and other unidentified poems. (Originals written on both sides of 5 leaves.)</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/578908"
id="ref103"
level="subseries">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1929-1932" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1929">1929</fromdate>
<todate standarddate="1932">1932</todate>
</daterange>
</unitdatestructured>