-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path5814.xml
5737 lines (5737 loc) · 293 KB
/
5814.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.fordpl">beinecke.fordpl</recordid>
<otherrecordid localtype="BIB">3754330</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Paul Leicester Ford Papers </titleproper>
<titleproper localtype="filing">Ford (Paul Leicester) Papers</titleproper>
<author>by Ellen Doon and Clayton McGahee</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>2014</date>
<num>YCAL MSS 488</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">37543303754330</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-27, 28-29 (Oversize)</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 30, 31 (art), 32-33 (art)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="4">4</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="30">30</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:26:01-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:26</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/5814" level="collection">
<did>
<unittitle>Paul Leicester Ford papers</unittitle>
<unitid>YCAL MSS 488</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>In English.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>10.35</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">30 boxes + 3 art</physdesc>
<unitdatestructured altrender="1736-1902"
calendar="gregorian"
era="ce"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1736">1736</fromdate>
<todate standarddate="1902">1902</todate>
</daterange>
</unitdatestructured>
<unitdatestructured altrender="1885-1902"
calendar="gregorian"
era="ce"
label="creation"
unitdatetype="bulk">
<daterange>
<fromdate standarddate="1885">1885</fromdate>
<todate standarddate="1902">1902</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_b21254de29be4fc1f61a391eeaa7fbdd">The collection consists of correspondence, writings, and personal papers of the American historian and author Paul Leicester Ford. The correspondence is largely professional and documents Ford's work as an editor, historian, bibliographer, novelist and playwright. Ford's correspondents include John Kendrick Bangs, Samuel L. Clemens, Edward Everett Hale, Thomas Wentworth Higginson, Rudyard Kipling, and S. Weir Mitchell; earlier letters written to others by James Fennimore Cooper and Jared Sparks are also present. Writings include notes and research materials, most concerning colonial and Federal-period America; drafts; printed versions of published articles; scripts and music for dramatic productions; and publicity for specific works as well as about Ford generally. The novel Janice Meredith and its dramatic adaptation starring Mary Mannering are partiuclarly well represented in the collection; also present is an unfinished historical novel about Elizabeth Chudleigh, Countess of Bristol, along with contemporary printed documentation concerning her trial for bigamy. The collection also contains examples of Ford's work as an editor/printer on his home press, including his genealogy of Noah Webster; a heavily extra-illustrated copy of Websteriana containing autograph manuscript fragments of Webster's dictionary; a genealogy of Gordon L. Ford; and a pamphlet entitled "1814. New London. Pettypaug Point." Some papers documenting the historical research of Worthington C. Ford are present, as well as ephemera from Gordon L. Ford's participation in events commemorating the centenary of Washington's inauguration. The collection also includes photographs and paintings of Ford, including two miniatures; a miniature of "Janice Meredith"; photographs of his parents and siblings; and portrait paintings of Ford's ancestors Noah Webster (by Samuel F. B. Morse) and Rebecca Greenleaf Webster (by Jared Bradley Flagg).</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Ford, Paul Leicester, 1865-1902</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_acq">
<head>Immediate Source of Acquisition</head>
<p>Gift of Lesta Ford Clay and Albert G. Clay, 1954-1977.</p>
</acqinfo>
<accessrestrict id="aspace_arest">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_urest">
<head>Conditions Governing Use</head>
<p>The Paul Leicester Ford Papers is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_cite">
<head>Preferred Citation</head>
<p>Paul Leicester Ford Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_pi">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received some preliminary processing at the time of acquisition. Further organization, rehousing, and description were carried out in 2012. Information included in the Description of Papers note and Collection Contents section is drawn from an initial survey of the contents. Folder titles appearing in the contents list below were transcribed from the folders in 2012. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles were supplied by staff during basic processing. This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
<p>Former call numbers: ZA Ford, Uncat ZA Ford, ZA F755 +1, Uncat Za file.</p>
</processinfo>
<separatedmaterial id="aspace_sm">
<head>Separated Materials</head>
<p>Books and some other printed items received with the collection were removed for separate cataloging at the time of acquisition and can be accessed by searching the library's online catalog.</p>
</separatedmaterial>
<relatedmaterial id="aspace_relma">
<head>Associated Materials</head>
<p>Paul Leicester Ford Papers, Manuscripts and Archives Division, The New York Public Library, Astor, Lenox and Tilden Foundations.</p>
</relatedmaterial>
<bioghist id="aspace_bh1">
<head>Paul Leicester Ford (1865-1902)</head>
<p>American historian and novelist Paul Leicester Ford was born in Brooklyn, New York, one of eight children of lawyer, businessman, and bibliophile Gordon Lester Ford and Emily Ellsworth Fowler Ford, a poet and granddaughter of lexicographer Noah Webster. Due to chronic ill health resulting from a spinal injury in infancy, he received no formal education. He read widely in his father's extensive private library, and made use of his own printing press: at age eleven he edited and printed a genealogy of his ancestor Noah Webster, and at seventeen published a bibliography of Webster. Ford subsequently wrote and edited a large number of books and pamphlets chiefly relating to American history and bibliography, including an edition of Jefferson's writings and biographies of Washington and Franklin. In this work he frequently collaborated with his older brother, the historian Worthington C. Ford; together they published on their home press as the Historical Printing Club. Ford also wrote short fiction, plays, and novels, the most successful of which were <title localtype="simple" render="italic">
<part>The Honorable Peter Stirling</part>
</title> (1894) and <title localtype="simple" render="italic">
<part>Janice Meredith</part>
</title> (1899). He co-edited <title localtype="simple" render="italic">
<part>The Library Journal</part>
</title> from 1890 to 1893.</p>
<p>Ford married Grace Kidder in 1900; they had one daughter, Lesta, who was born June 3, 1902. Paul Leicester Ford was killed by his brother Malcolm on May 8, 1902, in a dispute over family inheritance.</p>
</bioghist>
<scopecontent id="aspace_sc">
<head>Scope and Contents</head>
<p>The collection consists of correspondence, writings, and personal papers of the American historian and author Paul Leicester Ford. The correspondence is largely professional and documents Ford's work as an editor, historian, bibliographer, novelist and playwright. Ford's correspondents include John Kendrick Bangs, Samuel L. Clemens, Edward Everett Hale, Thomas Wentworth Higginson, Rudyard Kipling, and S. Weir Mitchell; earlier letters written to others by James Fennimore Cooper and Jared Sparks are also present. Writings include notes and research materials, most concerning colonial and Federal-period America; drafts; printed versions of published articles; scripts and music for dramatic productions; and publicity for specific works as well as about Ford generally. The novel <title localtype="simple" render="italic">
<part>Janice Meredith</part>
</title> and its dramatic adaptation starring Mary Mannering are partiuclarly well represented in the collection; also present is an unfinished historical novel about Elizabeth Chudleigh, Countess of Bristol, along with contemporary printed documentation concerning her trial for bigamy. The collection also contains examples of Ford's work as an editor/printer on his home press, including his genealogy of Noah Webster; a heavily extra-illustrated copy of <title localtype="simple" render="italic">
<part>Websteriana</part>
</title> containing autograph manuscript fragments of Webster's dictionary; a genealogy of Gordon L. Ford; and a pamphlet entitled "1814. New London. Pettypaug Point." Some papers documenting the historical research of Worthington C. Ford are present, as well as ephemera from Gordon L. Ford's participation in events commemorating the centenary of Washington's inauguration. The collection also includes photographs and paintings of Ford, including two miniatures; a miniature of "Janice Meredith;" photographs of his parents and siblings; and portrait paintings of Ford's ancestors Noah Webster (by Samuel F. B. Morse) and Rebecca Greenleaf Webster (by Jared Bradley Flagg).</p>
</scopecontent>
<arrangement id="aspace_arr1">
<head>Arrangement</head>
<p>Organized into five series: Series I. Correspondence. Series II. Writings. Series III. Other Papers. Series IV. Printed Material. Series V. 1976-1977 Addition.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">19th century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2005003059"
source="lcsh">
<part localtype="topical">Editors</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85061166"
source="lcsh">
<part localtype="topical">Historical fiction, American</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh00009932"
source="lcsh">
<part localtype="topical">Historians</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85061225"
source="lcsh">
<part localtype="topical">History</part>
<part localtype="topical">Research</part>
</subject>
<subject source="local">
<part localtype="topical">Incidental music</part>
<part localtype="genre_form">Parts</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85092864"
source="lcsh">
<part localtype="topical">Novelists, American</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85127240"
source="lcsh">
<part localtype="topical">Stage adaptations</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85140139"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">History</part>
<part localtype="temporal">Revolution, 1775-1783</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85140185"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">History</part>
<part localtype="temporal">1783-1815</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300033936" source="aat">
<part localtype="genre_form">Miniatures (paintings)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300033799" source="aat">
<part localtype="genre_form">Oil paintings (visual works)</part>
</genreform>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85061091"
source="lcsh">
<part localtype="topical">Historians</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85040976"
source="lcsh">
<part localtype="topical">Editors</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85092863"
source="lcsh">
<part localtype="topical">Novelists</part>
</subject>
<persname>
<part localtype="agent_person">Bangs, John Kendrick, 1862-1922</part>
</persname>
<persname>
<part localtype="agent_person">Bristol, Elizabeth Chudleigh, Countess of, 1720-1788</part>
</persname>
<persname>
<part localtype="agent_person">Clemens, Samuel Langhorne, 1835-1910</part>
</persname>
<persname>
<part localtype="agent_person">Cooper, James Fenimore, 1789-1851</part>
</persname>
<famname>
<part localtype="agent_family">Ford family</part>
</famname>
<persname source="local">
<part localtype="agent_person">Ford, Emily Ellsworth Fowler, 1826-1893</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Ford, Gordon Lester, 1823-1891</part>
</persname>
<persname>
<part localtype="agent_person">Ford, Paul Leicester, 1865-1902</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Ford, Worthington Chauncey, 1858-1941</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Flagg, Jared B. (Jared Bradley), 1820-1899</part>
</persname>
<persname>
<part localtype="agent_person">Franklin, Benjamin, 1706-1790</part>
</persname>
<persname>
<part localtype="agent_person">Hale, Edward Everett, 1822-1909</part>
</persname>
<persname>
<part localtype="agent_person">Higginson, Thomas Wentworth, 1823-1911</part>
</persname>
<persname>
<part localtype="agent_person">Jefferson, Thomas, 1743-1826</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Kipling, Rudyard, 1865-1936</part>
</persname>
<persname source="local">
<part localtype="agent_person">Mannering, Mary, 1876-1953</part>
<part localtype="genre_form">Portraits</part>
</persname>
<persname>
<part localtype="agent_person">Mitchell, S. Weir (Silas Weir), 1829-1914</part>
</persname>
<persname>
<part localtype="agent_person">Morse, Samuel Finley Breese, 1791-1872</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Sparks, Jared, 1789-1866</part>
</persname>
<persname>
<part localtype="agent_person">Washington, George, 1732-1799</part>
</persname>
<persname>
<part localtype="agent_person">Webster, Noah, 1758-1843</part>
</persname>
<persname>
<part localtype="agent_person">Webster, Noah, 1758-1843</part>
<part localtype="genre_form">Portraits</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Webster, Rebecca Greenleaf, 1766-1847</part>
<part localtype="genre_form">Portraits</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Historical Printing Club (Brooklyn, New York, N.Y.)</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Library Journal (Firm)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2352892"
id="aspace_s1"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>boxes</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.67 linear_feet</physdesc>
<unitdatestructured altrender="circa 1885-1902"
calendar="gregorian"
era="ce"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1885">1885</fromdate>
<todate standarddate="1902">1902</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_6dd6499f53895dee8081a1fe55d93ab4">
<head>Arrangement</head>
<p>Arranged alphabetically by name of correspondent.</p>
</arrangement>
<scopecontent id="aspace_3c3daa58602393bb82fdcfad5e7b094b">
<head>Scope and Contents</head>
<p>The series contains correspondence documenting Paul Leicester Ford's work as an editor, historian, bibliographer, novelist and playwright.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2352898"
id="aspace_s1d0e297"
level="file">
<did>
<unittitle>"A" general</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e297_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352899"
id="aspace_s1d0e317"
level="file">
<did>
<unittitle>Albert, Scott Co.</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e317_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352900"
id="aspace_s1d0e337"
level="file">
<did>
<unittitle>Adams, Chas. F.</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e337_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352901"
id="aspace_s1d0e357"
level="file">
<did>
<unittitle>American Antiquarian Society</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e357_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352902"
id="aspace_s1d0e377"
level="file">
<did>
<unittitle>American Historical Review</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e377_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352903"
id="aspace_s1d0e397"
level="file">
<did>
<unittitle>American Jewish Historical Society</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e397_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352904"
id="aspace_s1d0e417"
level="file">
<did>
<unittitle>American Library Association</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e417_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352905"
id="aspace_s1d0e437"
level="file">
<did>
<unittitle>American Philosophical Society</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e437_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352906"
id="aspace_s1d0e457"
level="file">
<did>
<unittitle>Anderson, John</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e457_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352907"
id="aspace_s1d0e477"
level="file">
<did>
<unittitle>D. Appleton Company</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e477_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352908"
id="aspace_s1d0e497"
level="file">
<did>
<unittitle>The Atlantic Monthly</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e497_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352909"
id="aspace_s1d0e517"
level="file">
<did>
<unittitle>Avery, Sam P.</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e517_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352910"
id="aspace_s1d0e537"
level="file">
<did>
<unittitle>"B" general</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e537_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352911"
id="aspace_s1d0e557"
level="file">
<did>
<unittitle>Bacheller, Irving</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e557_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352912"
id="aspace_s1d0e577"
level="file">
<did>
<unittitle>Bangs, John Kendrick</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e577_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352913"
id="aspace_s1d0e597"
level="file">
<did>
<unittitle>Bement, Clarence S.</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e597_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352914"
id="aspace_s1d0e617"
level="file">
<did>
<unittitle>Benjamin, Walter R.</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e617_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352915"
id="aspace_s1d0e637"
level="file">
<did>
<unittitle>Bigelow, John</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e637_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352916"
id="aspace_s1d0e657"
level="file">
<did>
<unittitle>Book Lovers Library</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e657_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352917"
id="aspace_s1d0e677"
level="file">
<did>
<unittitle>Boston Public Library</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e677_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352918"
id="aspace_s1d0e697"
level="file">
<did>
<unittitle>Bowen, Clarence Winthrop</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e697_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352919"
id="aspace_s1d0e717"
level="file">
<did>
<unittitle>Bryce, James</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e717_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352920"
id="aspace_s1d0e737"
level="file">
<did>
<unittitle>"C" general</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e737_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352921"
id="aspace_s1d0e757"
level="file">
<did>
<unittitle>Century Magazine</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e757_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352922"
id="aspace_s1d0e777"
level="file">
<did>
<unittitle>Chase, J. Eastman</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e777_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352923"
id="aspace_s1d0e797"
level="file">
<did>
<unittitle>Clayton, Joseph C.</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e797_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352924"
id="aspace_s1d0e817"
level="file">
<did>
<unittitle>Clemens, Samuel Langhorne</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e817_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352925"
id="aspace_s1d0e837"
level="file">
<did>
<unittitle>Collier's Weekly</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e837_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352926"
id="aspace_s1d0e857"
level="file">
<did>
<unittitle>Columbia University</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e857_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352927"
id="aspace_s1d0e877"
level="file">
<did>
<unittitle>Archibald Constable Company</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e877_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352928"
id="aspace_s1d0e897"
level="file">
<did>
<unittitle>Conway, Moncure Daniel</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e897_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352929"
id="aspace_s1d0e917"
level="file">
<did>
<unittitle>Cooper, James Fenimore</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e917_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352930"
id="aspace_s1d0e937"
level="file">
<did>
<unittitle>Cosmopolitan Magazine</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e937_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352931"
id="aspace_s1d0e957"
level="file">
<did>
<unittitle>Criterion Theatre</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e957_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352932"
id="aspace_s1d0e977"
level="file">
<did>
<unittitle>Curtis Cameron Publishers</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e977_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352933"
id="aspace_s1d0e997"
level="file">
<did>
<unittitle>"D" general</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e997_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352934"
id="aspace_s1d0e1017"
level="file">
<did>
<unittitle>De Forest, Robert W.</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e1017_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352935"
id="aspace_s1d0e1037"
level="file">
<did>
<unittitle>The De Vinne Press</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e1037_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352936"
id="aspace_s1d0e1057"
level="file">
<did>
<unittitle>Dodd, Mead Company</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e1057_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352937"
id="aspace_s1d0e1080"
level="file">
<did>
<unittitle>Doubleday, Page Company</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e1080_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352938"
id="aspace_s1d0e1100"
level="file">
<did>
<unittitle>Dowling, Mildred T.</unittitle>
<container altrender="/repositories/11/top_containers/250797 /locations/9"
containerid="39002099429343"
id="aspace_s1d0e1100_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352939"
id="aspace_s1d0e1120"
level="file">
<did>
<unittitle>The Dunlap Society</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1120_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352940"
id="aspace_s1d0e1140"
level="file">
<did>
<unittitle>E. P. Dutton Company</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1140_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352941"
id="aspace_s1d0e1160"
level="file">
<did>
<unittitle>Dwight, Theodore F.</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1160_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352942"
id="aspace_s1d0e1180"
level="file">
<did>
<unittitle>"E" general</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1180_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352943"
id="aspace_s1d0e1200"
level="file">
<did>
<unittitle>Eames, Wilberforce</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1200_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352944"
id="aspace_s1d0e1220"
level="file">
<did>
<unittitle>Egle, William H.</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1220_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352945"
id="aspace_s1d0e1240"
level="file">
<did>
<unittitle>A. W. Elson Co.</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1240_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352946"
id="aspace_s1d0e1260"
level="file">
<did>
<unittitle>"F" general</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1260_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352947"
id="aspace_s1d0e1280"
level="file">
<did>
<unittitle>Fitch, Clyde</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1280_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352948"
id="aspace_s1d0e1300"
level="file">
<did>
<unittitle>Ford, Worthington C.</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1300_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352949"
id="aspace_s1d0e1320"
level="file">
<did>
<unittitle>Frohman, Charles</unittitle>
<container altrender="/repositories/11/top_containers/250798 /locations/9"
containerid="39002099429350"
id="aspace_s1d0e1320_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2352950"
id="aspace_s1d0e1340"
level="file">
<did>
<unittitle>"G" general</unittitle>