-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1477.xml
1267 lines (1267 loc) · 69.5 KB
/
1477.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.dialpress">beinecke.dialpress</recordid>
<otherrecordid localtype="BIB">7911031</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Dial Press Records
</titleproper>
<titleproper localtype="filing">Dial Press Records</titleproper>
<author>by Molly Wheeler</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>April 20, 2007</date>
<num>YCAL MSS 253</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">7911031</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-10, 13-19</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 11-12</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="3">3</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>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T01:05:57-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:05</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1477" level="collection">
<did>
<unittitle>Dial Press records</unittitle>
<unitid>YCAL MSS 253</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>9.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">19 boxes</physdesc>
<unitdatestructured altrender="1924-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_7b051976062ddc15bc011790899737e2">The Dial Press Records contain publicity files, catalogs, photographs, and other materials that document the workings of this twentieth-century press.</abstract>
<origination label="Creator">
<corpname>
<part localtype="agent_corporate_entity">Dial Press</part>
</corpname>
</origination>
</did>
<acqinfo id="aspace_6f5056b06a5cacb84f4e7ead540c1887">
<head>Immediate Source of Acquisition note</head>
<p>Gift of Donna A. Schrader, 1987.</p>
</acqinfo>
<accessrestrict id="aspace_badc639158a693b987965723c2fc274e">
<head>Information about Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<userestrict id="aspace_486463e60f90b042dc6ba67c2d28371d">
<head>Ownership & Copyright</head>
<p>The Dial Press Records are 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_8d3dc1c93bd2660a3ded537f335b5457">
<head>Cite As</head>
<p>Dial Press Records. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<bioghist id="aspace_085b77ef3261d7d6b77a76cc1156673a">
<head>Dial Press</head>
<p>Founded in 1923, the Dial Press was a distinctly separate entity from the <title localtype="simple" render="italic">
<part>Dial Magazine</part>
</title> although they were housed in the same building and Scofield Thayer worked with both. Many accounts state 1924 as the founding date, but this was the year of the Press's first imprint. The Dial Press logo design was based on the signet ring of founder Lincoln MacVeagh. Early ads were headlined "At the sign of the cupid and the Lion" and later just the logo was used. Early authors included Elizabeth Bowen, W.R. Burnett and Glenway Wescott. After MacVeagh sold the Press in 1933, it was fairly inactive until 1938, when it changed ownership again. Under B.C. Hoffman, the character of the firm changed to include books of more popular appeal. In 1945, two popular titles were Gladys Schmitt's <title localtype="simple" render="italic">
<part>David, The King</part>
</title> and Frank Yerby's<title localtype="simple" render="italic">
<part>The Foxes of Harrow.</part>
</title>Between 1963 and 1965, the Press published several popular books, including James Baldwin's <title localtype="simple" render="italic">
<part>The Fire Next Time</part>
</title>, Herbert Gold's <title localtype="simple" render="italic">
<part>Salt</part>
</title>, Thomas Berger's <title localtype="simple" render="italic">
<part>Little Big Man</part>
</title>, and Norman Mailer's <title localtype="simple" render="italic">
<part>An American Dream.</part>
</title>
</p>
<p>The following chronology provides dates for key events:</p>
<p>1923: The Dial Press was founded by Lincoln MacVeagh at 461 Park Avenue South in Manhattan. Scofield Thayer, publisher of the <title localtype="simple" render="italic">
<part>Dial Magazine</part>
</title>, was the its first editor.</p>
<p>1933: MacVeagh sold Dial Press to Max Solap.</p>
<p>1938: Max Solap sold Dial Press to B.C. Hoffman.</p>
<p>1961: Dial Press Books for Young Readers was created.</p>
<p>1963: Dell Publishing Company acquired 60% of the Dial Press stock but the Press remained an independent subsidiary.</p>
<p>1964: Dial Press moved to 750 Third Avenue.</p>
<p>1969: The Dial Press became wholly owned by Dell Publishing Company.</p>
<p>1973: Dial Press made another move to Dag Hammarskjold Plaza.</p>
<p>1976: Doubleday bought Dell Publishing .</p>
<p>1985: Doubleday dissolved Dial Press on April 16.</p>
</bioghist>
<scopecontent id="aspace_607111ee47c18e4ef9df58f1a10f1ede">
<head>Description of the Papers</head>
<p>The Dial Press Records document the workings of this twentieth-century press and consist primarily of publicity files. Author biographies, bibliographies, and book synopses reveal the way in which Dial Press publicized its authors and titles. Also included are catalogs listing all Dial Press publications. The Records span the years 1924 to 1984.</p>
</scopecontent>
<arrangement id="aspace_29d155ff58696c4e02ad04ea96099767">
<head>Arrangement</head>
<p>The Dial Press Records are organized into two Series: Publicity Files and Catalogs.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004320"
source="lcsh">
<part localtype="topical">American fiction</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85108871"
source="lcsh">
<part localtype="topical">Publishers and publishing</part>
</subject>
<persname>
<part localtype="agent_person">Baldwin, James, 1924-1987</part>
</persname>
<persname>
<part localtype="agent_person">Bourjaily, Vance, 1922-2010</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Brokhin, Yuri, 1934-</part>
</persname>
<persname>
<part localtype="agent_person">Brown, Raphael, 1912-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Cohen, Jerry S., 1925-</part>
</persname>
<persname>
<part localtype="agent_person">Condon, Richard, 1915-1996</part>
</persname>
<persname>
<part localtype="agent_person">Gaines, Ernest J., 1933-</part>
</persname>
<persname>
<part localtype="agent_person">Gold, Herbert, 1924-</part>
</persname>
<persname>
<part localtype="agent_person">Lester, Julius, 1939-2018</part>
</persname>
<persname>
<part localtype="agent_person">Ludlum, Robert, 1927-2001</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">MacVeagh, Lincoln, 1890-1972</part>
</persname>
<persname>
<part localtype="agent_person">Mailer, Norman, 1923-2007</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Marty, Martin E., 1928-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Mintz, Morton, 1922-</part>
</persname>
<persname>
<part localtype="agent_person">Thayer, Scofield, 1889-1982</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Yerby, Frank, 1916-1991</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Dell Publishing Company</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Dial Books for Young Readers</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Dial Press</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/565051"
id="ref11"
level="series">
<did>
<unittitle>Publicity Files</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>7.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">15 boxes</physdesc>
<unitdatestructured altrender="1924-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_45f5d802f137623f360f15883afee14b">
<head>Arrangement</head>
<p>The series is organized into five subseries: General Publicity Files; Author Biography Files; Index Cards; Photographs and Slides; and Other Papers.</p>
</arrangement>
<scopecontent id="aspace_01a4fb7120cb27775456fae81ce67f6d">
<head>Scope and Contents</head>
<p>General Publicity Files consists of biographies, bibliographies, book synopses, and ephemera used in book jackets, press releases and in disseminating information to press, libraries, and bookstores. The files document publications for each year between 1951 and 1983 and the files for most years begin with a typescript list of published titles and prices.</p>
<p>Author Biography Files contains brief biographies of Dial Press authors that were used as sources for publicity information.</p>
<p>Index Cards consists of three card indices to Dial Press publications. The first indexes, by author, pre-1962 titles stored in a warehouse; each card contains only author, title, date, and warehouse location. The second is a title index, 1962-1982, which lists the author, price, and publication date, and for some titles also includes information about the editor, agent, serial rights, illustrations, and contents. The third index, "Special Authors," contains cards for a small selection of authors such as James Baldwin, Robert Ludlum, and Norman Mailer, which seem to have been culled from the title index.</p>
<p>Other Papers includes documentation of author publication receptions and publicity tours, Dial Press logo samples and stamp, guest books, stationery, and reviews of Dial Press titles. Of particular interest is a collection of correspondence and printed materials documenting the history of the Dial Press.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/565052"
id="ref13"
level="subseries">
<did>
<unittitle>General Publicity Files</unittitle>
<unitdatestructured altrender="1924-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_d56b04c7dd15bed271a56298aca78ce9">
<head>Arrangement</head>
<p>General Publicity Files is arranged chronologically. The bulk of the material was originally housed in three-ring binders, arranged by year and then alphabetically by author. The binders were disassembled during processing but the foldered files remain in original order.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/565053"
id="ref14"
level="file">
<did>
<unittitle>1951-1964</unittitle>
<container altrender="/repositories/11/top_containers/69213 /locations/9"
containerid="39002099456221"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1-14</container>
<daoset altrender="/repositories/11/digital_objects/206904">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:2057695"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2057695"
identifier="oid:2057695"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>1951-1964</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565054"
id="ref15"
level="file">
<did>
<unittitle>1965-1967</unittitle>
<container altrender="/repositories/11/top_containers/69214 /locations/9"
containerid="39002099456239"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">15-22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565055"
id="ref16"
level="file">
<did>
<unittitle>1968-1970</unittitle>
<container altrender="/repositories/11/top_containers/69215 /locations/9"
containerid="39002099456247"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">23-28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565056"
id="ref17"
level="file">
<did>
<unittitle>1970-1972</unittitle>
<container altrender="/repositories/11/top_containers/69216 /locations/9"
containerid="39002099456254"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">29-34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565057"
id="ref18"
level="file">
<did>
<unittitle>1973-1976</unittitle>
<container altrender="/repositories/11/top_containers/69217 /locations/9"
containerid="39002099456262"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">35-42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565058"
id="ref19"
level="file">
<did>
<unittitle>1977-1979</unittitle>
<container altrender="/repositories/11/top_containers/69218 /locations/9"
containerid="39002099456270"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">43-48</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565059"
id="ref20"
level="file">
<did>
<unittitle>1979-1981</unittitle>
<container altrender="/repositories/11/top_containers/69219 /locations/9"
containerid="39002099456288"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">7</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">49-54</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565060"
id="ref21"
level="file">
<did>
<unittitle>1981-1983</unittitle>
<container altrender="/repositories/11/top_containers/69220 /locations/9"
containerid="39002099456296"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">55-60</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565061"
id="ref22"
level="file">
<did>
<unittitle>1983</unittitle>
<container altrender="/repositories/11/top_containers/69221 /locations/9"
containerid="39002099456304"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">61</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/565062"
id="ref24"
level="subseries">
<did>
<unittitle>Author Biography Files</unittitle>
<unitdatestructured altrender="1961-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/565063"
id="ref25"
level="file">
<did>
<unittitle>A-O</unittitle>
<unitdatestructured altrender="circa 1961-1983"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69221 /locations/9"
containerid="39002099456304"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">62-70</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565064"
id="ref26"
level="file">
<did>
<unittitle>P-Z</unittitle>
<unitdatestructured altrender="circa 1961-1983"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69222 /locations/9"
containerid="39002099456312"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">71-73</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565065"
id="ref27"
level="file">
<did>
<unittitle>Baldwin, James</unittitle>
<unitdatestructured altrender="1971-1979" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1971">1971</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69222 /locations/9"
containerid="39002099456312"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">74</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565066"
id="ref28"
level="file">
<did>
<unittitle>Bourjaily, Vance</unittitle>
<unitdatestructured altrender="1970-1982" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1982">1982</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69222 /locations/9"
containerid="39002099456312"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">75</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565067"
id="ref29"
level="file">
<did>
<unittitle>Brokhin, Yuri</unittitle>
<unitdatestructured altrender="1981-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1981">1981</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69222 /locations/9"
containerid="39002099456312"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">76-77</container>
</did>
<scopecontent id="aspace_029b5ea69b183b86b81fc47419dc2436">
<head>Scope and Contents</head>
<p>Includes printed material regarding Brokhin's 1983 murder</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/565068"
id="ref31"
level="file">
<did>
<unittitle>Condon, Richard</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1977">1977</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69222 /locations/9"
containerid="39002099456312"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">78</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565069"
id="ref32"
level="file">
<did>
<unittitle>Gaines, Ernest J.</unittitle>
<unitdatestructured altrender="1967-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1967">1967</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69222 /locations/9"
containerid="39002099456312"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">79</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565070"
id="ref33"
level="file">
<did>
<unittitle>Ludlum, Robert</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1977">1977</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69222 /locations/9"
containerid="39002099456312"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">80</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565071"
id="ref34"
level="file">
<did>
<unittitle>Yerby, Frank</unittitle>
<unitdatestructured altrender="1979" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1979">1979</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1982" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1982">1982</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69222 /locations/9"
containerid="39002099456312"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">81</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/565072"
id="ref35"
level="subseries">
<did>
<unittitle>Index cards</unittitle>
<unitdate label="creation" unitdatetype="inclusive">Before 1962-1980</unitdate>
</did>
<c altrender="/repositories/11/archival_objects/565073"
id="ref36"
level="file">
<did>
<unittitle>"Old Dial Books, Filed By Author, Stored in Warehouse"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">Before 1962</unitdate>
<container altrender="/repositories/11/top_containers/69223 /locations/4051"
containerid="39002099456387"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565074"
id="ref37"
level="file">
<did>
<unittitle>"Dial titles filed by title"</unittitle>
<unitdatestructured altrender="1962-1982" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1962">1962</fromdate>
<todate standarddate="1982">1982</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69224 /locations/4051"
containerid="39002099456395"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565075"
id="ref38"
level="file">
<did>
<unittitle>"Special Authors" index</unittitle>
<unitdatestructured altrender="1958-1980" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1958">1958</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69225 /locations/9"
containerid="39002099456320"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">13</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">82-83</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/565076"
id="ref39"
level="subseries">
<did>
<unittitle>Photographs and slides</unittitle>
<unitdatestructured altrender="circa 1970, undated"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1970">circa 1970, undated</datesingle>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/565077"
id="ref40"
level="file">
<did>
<unittitle>Slides of various publicity materials</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/69225 /locations/9"
containerid="39002099456320"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">13</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">84-85</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565078"
id="ref41"
level="file">
<did>
<unittitle>Photographs</unittitle>
<unitdatestructured altrender="circa 1970, undated"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1970">circa 1970, undated</datesingle>
</unitdatestructured>
<physloc id="aspace_1b727139de9d19333a1922c2949283c0">Stored in: Oversize, Box 19, Folders 121-123</physloc>
</did>
<scopecontent id="aspace_e2b5c5b0db415f16882d4d449b94784b">
<head>Scope and Contents</head>
<p>Photographs of James Baldwin, H. Rap Brown, Robert Condon, Herbert Gold, Julius Lester, and Frank Yerby</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/565079"
id="ref44"
level="subseries">
<did>
<unittitle>Other Papers</unittitle>
<unitdatestructured altrender="1924-1980, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_46350db259726dafcea54ff4353848eb">
<head>Arrangement</head>
<p>Other Papers is chiefly arranged by material format and then alphabetically or chronologically within each format group.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/565080"
id="ref45"
level="file">
<did>
<unittitle>Dial Press logo</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/565081"
id="ref46"
level="file">
<did>
<unittitle>Dial Press logo, printed materials</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/69225 /locations/9"
containerid="39002099456320"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">13</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">86</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565082"
id="ref47"
level="file">
<did>
<unittitle>Dial Press logo stamp</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/69225 /locations/9"
containerid="39002099456320"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">13</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">87</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/565083"
id="ref48"
level="file">
<did>
<unittitle>History of Dial Press, correspondence and printed materials</unittitle>
<unitdatestructured altrender="1924-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69225 /locations/9"
containerid="39002099456320"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">13</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">88-90</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565084"
id="ref49"
level="file">
<did>
<unittitle>Guest book</unittitle>
<unitdatestructured altrender="1965" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1965">1965</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1977">1977</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69225 /locations/9"
containerid="39002099456320"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">13</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">91</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565085"
id="ref50"
level="file">
<did>
<unittitle>Guest book</unittitle>
<unitdatestructured altrender="1966-1982" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1966">1966</fromdate>
<todate standarddate="1982">1982</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69225 /locations/9"
containerid="39002099456320"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">13</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">92</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565086"
id="ref51"
level="file">
<did>
<unittitle>Blank invitations for author publication receptions and Dial Press holiday cards</unittitle>
<unitdatestructured altrender="1966-1980" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1966">1966</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69226 /locations/9"
containerid="39002099456338"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">14</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">93</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565087"
id="ref52"
level="file">
<did>
<unittitle>Publicity stationery</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/69226 /locations/9"
containerid="39002099456338"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">14</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">94</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565088"
id="ref53"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Oh, Promised Land</part>
</title> by James Street, publicity announcement</unittitle>
<unitdatestructured altrender="1940" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1940">1940</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69226 /locations/9"
containerid="39002099456338"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">14</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">95</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565089"
id="ref54"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Publisher's Weekly</part>
</title> Volume 148 Number 24 December 1946</unittitle>
<unitdatestructured altrender="1946" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1946">1946</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69226 /locations/9"
containerid="39002099456338"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">14</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">96</container>
</did>
<scopecontent id="aspace_52ff7f6569e822d0213ba5bde94d3084">
<head>Scope and Contents</head>
<p>Includes Dial Press titles</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/565090"
id="ref56"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Dial Souvenir Sampler</part>
</title>
</unittitle>
<unitdatestructured altrender="1964" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1964">1964</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/69226 /locations/9"
containerid="39002099456338"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">14</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">97</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565091"
id="ref57"
level="file">
<did>
<unittitle>National Book Award certificate to Martin E. Marty for <title localtype="simple" render="italic">
<part>Righteous Empire</part>
</title>
</unittitle>
<unitdatestructured altrender="1972" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1972">1972</datesingle>
</unitdatestructured>
<physloc id="aspace_2d22e724397df255f66a3dec80d08c3f">Stored in: Oversize, Box 19, Folder 124</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565092"
id="ref59"
level="file">
<did>
<unittitle>Book reviews</unittitle>
<unitdatestructured altrender="1963-1974" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1963">1963</fromdate>
<todate standarddate="1974">1974</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/565093"
id="ref61"
level="file">
<did>
<unittitle>Baldwin, James,<title localtype="simple" render="italic">
<part>The Fire Next Time</part>
</title>
</unittitle>
<unitdatestructured altrender="1963" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1963">1963</datesingle>
</unitdatestructured>
<physloc id="aspace_ca5aab53ae3dab6ea8a2465d970a713d">Stored in: Oversize, Box 19, Folder 125</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565094"
id="ref62"
level="file">
<did>
<unittitle>Baldwin, James, <title localtype="simple" render="italic">
<part>If Beale Street Could Talk</part>
</title>
</unittitle>
<unitdatestructured altrender="1974" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1974">1974</datesingle>
</unitdatestructured>
<physloc id="aspace_704717a1a46320c1c88419f204800233">Stored in: Oversize, Box 19, Folder 126</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565095"
id="ref63"
level="file">
<did>
<unittitle>Baldwin, James, <title localtype="simple" render="italic">
<part>Little Man, Little Man</part>
</title>
</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1977">1977</datesingle>
</unitdatestructured>
<physloc id="aspace_87f5cc938f95d8b0fe4aff3e65a76d73">Stored in: Oversize, Box 19, Folder 126a</physloc>
</did>
</c>
<c altrender="/repositories/11/archival_objects/565096"
id="ref64"
level="file">
<did>
<unittitle>Condon, Richard, <title localtype="simple" render="italic">
<part>Mile High</part>
</title>
</unittitle>
<unitdatestructured altrender="1969" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1969">1969</datesingle>