-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path640.xml
1579 lines (1579 loc) · 90 KB
/
640.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.lincoln">beinecke.lincoln</recordid>
<otherrecordid localtype="BIB">4113177</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Abraham Lincoln Collection
</titleproper>
<titleproper localtype="filing">Lincoln (Abraham) Collection</titleproper>
<author>by 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>July 1997</date>
<num>GEN MSS 257</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">4113177</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-4, bsd, folder 25-bsd, folder 26, bsd, folder 28</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="16">16</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="33">33</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>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</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>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:28:07-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:28</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/640" level="collection">
<did>
<unittitle>Abraham Lincoln collection</unittitle>
<unitid>GEN MSS 257</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.8</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured altrender="1824-1865" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1824">1824</fromdate>
<todate standarddate="1865">1865</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_952b3159f21d2f629424f6763b6e7efc">Correspondence and writings by and about Abraham Lincoln, and a gold pen used by Lincoln. 4 ALS from Lincoln to Benjamin F. James, William M. Dickson, and to an unidentified recipient. Writings by Lincoln include an autograph praecipe issued by Lincoln for writ in his first law case, "David Woolridge vs. Hawthorne", and a fragment of a speech on slavery. Also present is a letter by Edwin Booth to Colonel A. Badeau concerning Lincoln's assassination by his brother, John Wilkes Booth, two days earlier; two volumes containing letters and writings by and about members of Lincoln's cabinet, including Andrew Johnson, Edwin M. Stanton, a letter to W. P. Fessenden regarding the attack on Petersburg, and Gideon Welles' autographed manuscript recollections on the formation of Lincoln's cabinet. Accompanied by the gold pen used by Lincoln to sign the Emancipation Proclamation, with accompanying documentation.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Lincoln, Abraham, 1809-1865</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_924d5ef3b7adc2956c0c787b99b022ea">
<head>Immediate Source of Acquisition</head>
<p>Ongoing collection of documents acquired by gift and purchase from various sources. Type of accession (gift or purchase) and date of acquisition is noted in the box-and-folder list. For further information, consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_f84bdeef505ff3526986b4648b97120a">
<head>Conditions Governing Use</head>
<p>The Abraham Lincoln 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_319cee655fcf5b1865587709144926b8">
<head>Preferred Citation</head>
<p>Abraham Lincoln Collection. General Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_7a2163e73d49a45bffd568fc0a2d3cd0">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 4 and broadside folder 28: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<processinfo id="aspace_b68ea1e415ac6d6aa9ed0686fd70a79e">
<head>Processing Information</head>
<p>This finding aid was produced from previously existing cards in the Manuscripts Catalog, or from another inventory. All pertinent bibliographical information has been retained. If the collection also contains unlisted or unsorted material, it has been noted in the box-and-folder list. This finding aid will be updated periodically to account for new materials that may be added to the collection. The date of the most recent update is noted on the title page. For information on material that may have been added since the last update, please consult the Public Service Desk.</p>
</processinfo>
<scopecontent id="aspace_2fa03a8e00ae3462ad106a6c00aff878">
<head>Scope and Contents</head>
<p>This finding aid encompasses accessions of single manuscripts and small groups of manuscripts and other papers, by or pertaining to Abraham Lincoln, which the library has chosen to group and list as an artificial collection. Material has been organized into two series: <ref actuate="onrequest" show="replace" target="ref11">I, Gift of A. Conger Goodyear</ref> and <ref actuate="onrequest" show="replace" target="ref75">II, Additional Materials</ref>, materials acquired from various sources.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85100326"
source="lcsh">
<part localtype="topical">Petersburg Crater, Battle of, Va., 1864</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85140216"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">History</part>
<part localtype="temporal">Civil War, 1861-1865</part>
<part localtype="topical">Campaigns</part>
</geogname>
<persname rules="aacr">
<part localtype="agent_person">Badeau, Adam, 1831-1895</part>
</persname>
<persname>
<part localtype="agent_person">Booth, Edwin, 1833-1893</part>
</persname>
<persname>
<part localtype="agent_person">Booth, John Wilkes, 1838-1865</part>
</persname>
<persname>
<part localtype="agent_person">Dickson, William M. (William Martin), 1827-1889</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Fessenden, William Pitt, 1806-1869</part>
</persname>
<persname source="local">
<part localtype="agent_person">James, Benjamin Franklin</part>
</persname>
<persname>
<part localtype="agent_person">Johnson, Andrew, 1808-1875</part>
</persname>
<persname>
<part localtype="agent_person">Lincoln, Abraham, 1809-1865</part>
</persname>
<persname>
<part localtype="agent_person">Stanton, Edwin M. (Edwin McMasters), 1814-1869</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">United States. President (1861-1865 : Lincoln) (Emancipation Proclamation)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/214579"
id="ref11"
level="series">
<did>
<unittitle>Gift of A. Conger Goodyear</unittitle>
<unitid>Series I</unitid>
</did>
<scopecontent id="aspace_b4cf4acfe9de5ff525952e698fe3db34">
<head>Scope and Contents</head>
<p>Gift of A. Conger Goodyear, 1953</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/214580"
id="ref12"
level="file">
<did>
<unittitle>Abraham Lincoln ALS to Benjamin F. James, Springfield</unittitle>
<unitdatestructured altrender="1845 Dec 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845-12-06">1845 Dec 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19357 /locations/4051"
containerid="39002099281207"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">1</container>
<daoset altrender="/repositories/11/digital_objects/131412">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2026832"
identifier="oid:2026832"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1101959/full/!150,150/0/default.jpg"
identifier="oid:2026832"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2026832"
identifier="oid:2026832"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Abraham Lincoln ALS to Benjamin F. James, Springfield</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_ca70e936f96132e07d60e9c77041128c">
<head>Scope and Contents</head>
<p>Discusses the possibility of securing enough votes in the Illinois State Convention to nominate him as Whig Candidate for Congress</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214581"
id="ref14"
level="file">
<did>
<unittitle>Autograph page from Lincoln's sum book, dealing with simple interest</unittitle>
<unitdatestructured altrender="[ca. 1824]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1824">[ca. 1824]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19357 /locations/4051"
containerid="39002099281207"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">2</container>
<daoset altrender="/repositories/11/digital_objects/131413">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2026833"
identifier="oid:2026833"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1101962/full/!150,150/0/default.jpg"
identifier="oid:2026833"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2026833"
identifier="oid:2026833"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Autograph page from Lincoln's sum book, dealing with simple interest</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_9b9887ef43f4fe4ad572c926602ea5c6">
<head>Scope and Contents</head>
<p>Bound in dark green morocco</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214582"
id="ref16"
level="file">
<did>
<unittitle>Autograph praecipe issued by Lincoln for writ in his first law case, "David Woolridge vs. Hawthorne"</unittitle>
<unitdatestructured altrender="1836 Oct 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1836-10-08">1836 Oct 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19357 /locations/4051"
containerid="39002099281207"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">3</container>
<daoset altrender="/repositories/11/digital_objects/131414">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2026834"
identifier="oid:2026834"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1101964/full/!150,150/0/default.jpg"
identifier="oid:2026834"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2026834"
identifier="oid:2026834"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Autograph praecipe issued by Lincoln for writ in his first law case, "David Woolridge vs. Hawthorne"</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_1f272816c7ae43d0ab8ab8480a394ac2">
<head>Scope and Contents</head>
<p>Bound in three quarters green morocco</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214583"
id="ref18"
level="file">
<did>
<unittitle>Fragment of a speech on slavery</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19357 /locations/4051"
containerid="39002099281207"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">4</container>
<daoset altrender="/repositories/11/digital_objects/131415">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2026835"
identifier="oid:2026835"
linktitle="1 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1101966/full/!150,150/0/default.jpg"
identifier="oid:2026835"
linktitle="1 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2026835"
identifier="oid:2026835"
linktitle="1 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Fragment of a speech on slavery</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_107d1d461fd3b3504ca4f2170f568f69">
<head>Scope and Contents</head>
<p>Refers to Senator Stephen Douglas. Bound in dark green morocco</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214584"
id="ref20"
level="file">
<did>
<unittitle>6 typescript and typescript carbon letters concerning the autograph praecipe and fragment of a speech on slavery, including a letter from Carl Sandburg</unittitle>
<unitdatestructured altrender="1926 May-Jun" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1926-05">1926 May</fromdate>
<todate standarddate="1926-06">1926 June</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19357 /locations/4051"
containerid="39002099281207"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214585"
id="ref21"
level="file">
<did>
<unittitle>ALS from Edwin Booth to Colonel A. Badeau concerning the assassination of Abraham Lincoln by his brother, John Wilkes Booth, two days earlier</unittitle>
<unitdatestructured altrender="[1865] Apr 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1865-04-16">[1865] Apr 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19357 /locations/4051"
containerid="39002099281207"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">6</container>
</did>
<scopecontent id="aspace_8a3a5ab0dacdb68771d1d325f3ac1020">
<head>Scope and Contents</head>
<p>Also bound in the volume are a manuscript transcription of the letter and a play bill of the performance at Ford's Theater the night of the assassination. Bound in three quarters dark green morocco</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214586"
id="ref23"
level="file">
<did>
<unittitle>Three typescript carbon copies of the letter from Booth to Badeau</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19357 /locations/4051"
containerid="39002099281207"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214587"
id="ref24"
level="file">
<did>
<unittitle>Abraham Lincoln and his Cabinet, bound volume of letters and documents by and about members of his cabinet. Vol. 1</unittitle>
<container altrender="/repositories/11/top_containers/19357 /locations/4051"
containerid="39002099281207"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">8</container>
</did>
<scopecontent id="aspace_0a14c40268ccc5d1d7d177f8c88f0b85">
<head>Scope and Contents</head>
<p>Bound in dark green morocco. Items in volume are analyzed below in the order in which they appear</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/214588"
id="ref25"
level="file">
<did>
<unittitle>Lincoln, Abraham. Survey of a tract of land entirely in Lincoln's handwriting</unittitle>
<unitdatestructured altrender="1836 Nov 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1836-11-16">1836 Nov 16</datesingle>
</unitdatestructured>
<daoset altrender="/repositories/11/digital_objects/131416">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2026836"
identifier="oid:2026836"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1101967/full/!150,150/0/default.jpg"
identifier="oid:2026836"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2026836"
identifier="oid:2026836"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Lincoln, Abraham. Survey of a tract of land entirely in Lincoln's handwriting</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214589"
id="ref26"
level="file">
<did>
<unittitle>Hay, John. ALS</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214590"
id="ref27"
level="file">
<did>
<unittitle>Hamlin, Hannibal. ALS to M. Titcomb, Bangor, [Maine]</unittitle>
<unitdatestructured altrender="1879 May 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1879-05-17">1879 May 17</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_17e6277bd6c66411e8e9e224823c2eeb">
<head>Scope and Contents</head>
<p>Refers to eventful years of the Republic through which he has passed, etc.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214591"
id="ref29"
level="file">
<did>
<unittitle>Harrington, George. ALS to William P. Fessenden, Bern, Switzerland</unittitle>
<unitdatestructured altrender="1868 Sept 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1868-09-26">1868 Sept 26</datesingle>
</unitdatestructured>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214592"
id="ref30"
level="file">
<did>
<unittitle>Seward, William H. ALS to [Samuel] Blatchford, Washington, D.C.</unittitle>
<unitdatestructured altrender="[1862] Dec 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1862-12-22">[1862] Dec 22</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_417dc54a988635a1d8c0e104949692f3">
<head>Scope and Contents</head>
<p>Refers to a Cabinet crisis which is past, the Trent Affair, the stability of the country, and the loyalty of the people. Says that he has urged Weed to go to Europe. Asks his correspondent to send him some wine</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214593"
id="ref32"
level="file">
<did>
<unittitle>Johnson, Andrew. ALS to William M. Lowry, Nashville, Tenn.</unittitle>
<unitdatestructured altrender="1856 Dec 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856-12-14">1856 Dec 14</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_a29cc9c93717243cb4dfce1cb4819ef0">
<head>Scope and Contents</head>
<p>Confidential political letter, refers to possibility of his going to the Senate, etc.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214594"
id="ref34"
level="file">
<did>
<unittitle>Seward, William H. autograph ms. signed of his "Oration on the Probable Permanency of the Union" delivered at the Commencement at Union College in 1820 as Representative of the Adelphi Society</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<scopecontent id="aspace_9b821bf76684b20966d1faf2e5c3b0d2">
<head>Scope and Contents</head>
<p>Seward was at this time only nineteen years of age. He entered Union College in 1816, taught school for six months in 1819, and returned to college to graduate in 1820. This paper shows Seward's strong support of the permanency of the Union</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214595"
id="ref36"
level="file">
<did>
<unittitle>Chase, Salmon P. ALS to Governor Nathaniel Prentice Banks, Springfield, Mass.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1860 [i.e. 61] Jan 7</unitdate>
</did>
<scopecontent id="aspace_bcbbbeb656699c76b90b80f82d6dd4ff">
<head>Scope and Contents</head>
<p>Chase refers to being in Springfield at Lincoln's request and his impressions on meeting Lincoln. The object of the meeting was to discuss Chase's possible inclusion in Lincoln's cabinet</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214596"
id="ref38"
level="file">
<did>
<unittitle>Fessenden, William Pitt. ALS to his son Francis Fessenden, Portland [Maine]</unittitle>
<unitdatestructured altrender="1865 Jun 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1865-06-06">1865 Jun 6</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_4cb267eb4cf8c2ce4424cd5bbd668f7d">
<head>Scope and Contents</head>
<p>Refers to Sherman's "behaving like a fool" and other matters of public interest</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214597"
id="ref40"
level="file">
<did>
<unittitle>McCulloch, Hugh. ANS to Gideon Welles, [Washington, D.C.]</unittitle>
<unitdatestructured altrender="1866 Mar 15[?]"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1866-03-15">1866 Mar 15[?]</datesingle>
</unitdatestructured>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214598"
id="ref41"
level="file">
<did>
<unittitle>Stanton, Edwin McMasters. ALS to [Charles Anderson] Dana, Washington</unittitle>
<unitdatestructured altrender="1862 Feb 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1862-02-02">1862 Feb 2</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_a85dab9766a64e9868b00c7da9d83d94">
<head>Scope and Contents</head>
<p>Refers to the military operations. Says that the War Department is "poisoned with treason or helpless from imbecility". Proposes to commence the reorganization.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214599"
id="ref43"
level="file">
<did>
<unittitle>Harrington, George. ALS to W. P. Fessenden, [Washington]</unittitle>
<unitdatestructured altrender="1864 Aug 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1864-08-01">1864 Aug 1</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_c1d5a8756f47c955f72f4237925dbfa0">
<head>Scope and Contents</head>
<p>The letter concerns the attack on Petersburg and the blowing up of the "Crater"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214600"
id="ref45"
level="file">
<did>
<unittitle>Cameron, Simon. ALS to W. P. Fessenden, Washington</unittitle>
<unitdatestructured altrender="1864 Sep 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1864-09-10">1864 Sep 10</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_11772a9d72d4bf3dffa57943e3436f6a">
<head>Scope and Contents</head>
<p>Says "the campaign will be short and must be urged with vigor"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214601"
id="ref47"
level="file">
<did>
<unittitle>Smith, Caleb Blood. ALS to [Richard] Wallach, Connersville [Ind.]</unittitle>
<unitdatestructured altrender="1848 Oct 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1848-10-09">1848 Oct 9</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_41999794befda36eadfa720bd7c3a0f5">
<head>Scope and Contents</head>
<p>Refers to the Free Soil Movement, General Taylor, etc.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214602"
id="ref49"
level="file">
<did>
<unittitle>Blair, Montgomery. ALS to Gideon Welles, Washington</unittitle>
<unitdatestructured altrender="1874 Jan 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1874-01-22">1874 Jan 22</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_0b4434fbddf823eca500e5dad6a6c550">
<head>Scope and Contents</head>
<p>Speaks of Seward and contrasts his character with that of Lincoln. This letter shows plainly Blair's antagonism to Seward and relates to his intrigues in reation to Fort Sumter, etc.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214603"
id="ref51"
level="file">
<did>
<unittitle>Lee, J. ALS to Montgomery Blair, Washington</unittitle>
<unitdatestructured altrender="[1874] Jan 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1874-01-22">[1874] Jan 22</datesingle>
</unitdatestructured>
</did>
</c>
<c altrender="/repositories/11/archival_objects/214604"
id="ref52"
level="file">
<did>
<unittitle>Bates, Edward. ALS to Gideon Welles, Washington</unittitle>
<unitdatestructured altrender="1863 Jun 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1863-06-06">1863 Jun 6</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_6c1ae11eea1d848bcbc0bc3b6a7f9248">
<head>Scope and Contents</head>
<p>With franked addressed envelope, gives his views on how to crush the Rebellion</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214605"
id="ref54"
level="file">
<did>
<unittitle>Speed, James. ALS to Abraham Lincoln, Louisville, KY</unittitle>
<unitdatestructured altrender="1862 Nov 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1862-11-10">1862 Nov 10</datesingle>
</unitdatestructured>
<daoset altrender="/repositories/11/digital_objects/131417">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2026837"
identifier="oid:2026837"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1101969/full/!150,150/0/default.jpg"
identifier="oid:2026837"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2026837"
identifier="oid:2026837"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Speed, James. ALS to Abraham Lincoln, Louisville, KY</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_25eef7bc2651441dadde012fec08669f">
<head>Scope and Contents</head>
<p>Regarding the appointment of a judge</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214606"
id="ref56"
level="file">
<did>
<unittitle>Miscellaneous material found in volume 1</unittitle>
<unitdatestructured altrender="1864-1928" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1864">1864</fromdate>
<todate standarddate="1928">1928</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19357 /locations/4051"
containerid="39002099281207"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">9</container>
</did>
<scopecontent id="aspace_bef6685c37ac250d3a236447672b0028">
<head>Scope and Contents</head>
<p>Two engraved portraits of Salmon P. Chase, pieces of bookseller's catalogue, and clippings: one carrying an article on "The President's Plan of Conciliation -- The Greased Cartridge Policy" from 1864, and another from 1928 about a Lincoln letter</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/214607"
id="ref59"
level="file">
<did>
<unittitle>Abraham Lincoln and his Cabinet, bound volume of letters and documents by and about members of his cabinet. Vol. 2</unittitle>
<container altrender="/repositories/11/top_containers/19358 /locations/4051"
containerid="39002099281215"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">10</container>
</did>
<scopecontent id="aspace_f9b2023ea98852e789a471537ce24c25">
<head>Scope and Contents</head>
<p>Bound in dark green morocco. Items in volume are analyzed below in the order in which they appear</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/214608"
id="ref60"
level="file">
<did>
<unittitle>Welles, Giddeon. Autograph ms, recollections in regard to the formation of Mr. Lincoln's Cabinet</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<scopecontent id="aspace_3bb62def6bc21f5f914fe1ec44e7f104">
<head>Scope and Contents</head>
<p>Contains much information about the negotiations and discussions on appointments to the Cabinet following Lincoln's election</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214609"
id="ref62"
level="file">
<did>
<unittitle>Speed, Joshua Fry. ALS to Gideon Welles, Louisville, Kentucky</unittitle>
<unitdatestructured altrender="1872 Aug 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1872-08-08">1872 Aug 8</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_6013d9895e246280e466263fcfcfe0be">
<head>Scope and Contents</head>
<p>Denies statements made in Lamon's "Life of Lincoln" in reference to Lincoln's offering a cabinet position to Guthrie</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214610"
id="ref64"
level="file">
<did>
<unittitle>Babcock, James Fairchild. 2 ALS to Gideon Welles, New Haven, Conn.</unittitle>
<unitdatestructured altrender="1868 Feb" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1868-02">1868 Feb</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_527cd7258b8bc5329a9fdeaef59ab41d">
<head>Scope and Contents</head>
<p>Refers to conversations with Lincoln on cabinet appointments</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214611"
id="ref66"
level="file">
<did>
<unittitle>Davis, David. ALS to Gideon Welles, Bloomington, Ill.</unittitle>
<unitdatestructured altrender="1872 Jul 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1872-07-27">1872 Jul 27</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_49447e5ca0f903ff8c45b38a6f9f4b49">
<head>Scope and Contents</head>
<p>Discusses Lincoln's Cabinet appointments and Speed's statement in regard to the reported offer to Guthrie</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214612"
id="ref68"
level="file">
<did>
<unittitle>Swett, Leonard. ALS to Thurlow Weed, Bloomington, Ill.</unittitle>
<unitdatestructured altrender="1860 Dec 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1860-12-10">1860 Dec 10</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_22561ff18012a37f88ca6feb8d484ea6">
<head>Scope and Contents</head>
<p>On second sheet is an ALS from David Davis to Thurlow Weed, discussing Lincoln's invitation to visit him at Springfield and advises Weed to accept, accompanied by typescript copies of both letters</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214613"
id="ref70"
level="file">
<did>
<unittitle>Yates, Richard. 2 LS to Schuyler Colfax, Springfield, Ill.</unittitle>
<unitdatestructured altrender="1861 Feb" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-02">1861 Feb</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_cf09c961b1219054afbc48d566f226f5">
<head>Scope and Contents</head>
<p>Tells of recommending Colfax to Lincoln for a cabinet appintment and of journey to Washington as a companion and secretary to Lincoln. Yates includes a copy of his letter to Lincoln recommending Colfax.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214614"
id="ref72"
level="file">
<did>
<unittitle>Miscellaneous material found in volume 2: typescripts of two letters</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19358 /locations/4051"
containerid="39002099281215"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">11</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/214615"
id="ref75"
level="series">
<did>
<unittitle>Additional Materials</unittitle>
<unitid>Series II</unitid>
</did>
<scopecontent id="aspace_2125697a3e128b8116fcd5700d8476fc">
<head>Scope and Contents</head>
<p>Other materials received from various sources</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/214617"
id="ref77"
level="file">
<did>
<unittitle>Lincoln, Abraham. ALS to William M. Dickson, Springfield, Ill.</unittitle>
<unitdatestructured altrender="1859 Oct 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1859-10-17">1859 Oct 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19358 /locations/4051"
containerid="39002099281215"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref77_c2" localtype="folder" parent="aspace_ref77_c1">12</container>
<daoset altrender="/repositories/11/digital_objects/131418">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2026838"
identifier="oid:2026838"
linktitle="1 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1101971/full/!150,150/0/default.jpg"
identifier="oid:2026838"
linktitle="1 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2026838"
identifier="oid:2026838"
linktitle="1 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Lincoln, Abraham. ALS to William M. Dickson, Springfield, Ill.</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_70b1f27a5d301a4ee622e2d12f60c0c6">
<head>Scope and Contents</head>
<p>Mounted on a leaf from an album, with related newspaper clippings Gift, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214618"
id="ref79"
level="file">
<did>
<unittitle>Lincoln, Abraham. ALS to William M. Dickson, Springfield Ill.</unittitle>
<unitdatestructured altrender="1860 Jun 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1860-06-07">1860 Jun 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19358 /locations/4051"
containerid="39002099281215"
id="aspace_ref79_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref79_c2" localtype="folder" parent="aspace_ref79_c1">13</container>
<daoset altrender="/repositories/11/digital_objects/131419">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2026839"
identifier="oid:2026839"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1101972/full/!150,150/0/default.jpg"
identifier="oid:2026839"
linktitle="p. [1]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2026839"
identifier="oid:2026839"
linktitle="p. [1]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Lincoln, Abraham. ALS to William M. Dickson, Springfield Ill.</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_2b3a150914ba87d7099e5c77602d9122">
<head>Scope and Contents</head>
<p>Concerning a bill claimed by Johnson, Saunders & Co., Cincinnati Gift, 1955</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/214619"
id="ref81"
level="file">
<did>
<unittitle>Lincoln, Abraham. ANS to an unidentified recipient, [Washington], and five photographs of Lincoln</unittitle>
<container altrender="/repositories/11/top_containers/19358 /locations/4051"
containerid="39002099281215"
id="aspace_ref81_c1"
label="Mixed Materials"
localtype="box">2</container>