-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1203.xml
1920 lines (1920 loc) · 110 KB
/
1203.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.barnitz">beinecke.barnitz</recordid>
<otherrecordid localtype="BIB">3145322</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Albert Barnitz Papers
</titleproper>
<titleproper localtype="filing">Barnitz (Albert) Papers</titleproper>
<author>by Tina Evans</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>June 1986</date>
<num>WA MSS S-1294</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">3145322</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-15</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 16 (Broadside)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="5">5</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="284">284</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:16:20-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 00:16</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1203" level="collection">
<did>
<unittitle>Albert Barnitz papers</unittitle>
<unitid>WA MSS S-1294</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>6.33</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">15 boxes + 1 broadside folder</physdesc>
<unitdatestructured altrender="1852-1978" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1852">1852</fromdate>
<todate standarddate="1978">1978</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_cfb7afe2d2fcc65627fb0459fdfb0781">The papers contain correspondence, diaries, military papers, and other material documenting the military career of Albert Barnitz and Barnitz family life. The papers concern such subjects as cavalry operations, military life, relations between parents and children, and child rearing practices.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Barnitz, Albert Trovillo Siders, 1835-1912</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_21f6419520d4aa326f7e6b6370cf26ee">
<head>Immediate Source of Acquisition</head>
<p>The material was donated to The Beinecke Rare Book and Manuscript Library by Barnitz's granddaughter, The Marquesa de Zahara, between 1969 and 1988. The papers also include a typescript of <title localtype="simple" render="italic">
<part>Life in Custer's Cavalry</part>
</title>, edited by Robert M. Utley, donated by the editor, and a copy of the book, published in 1978.</p>
</acqinfo>
<userestrict id="aspace_01cdb33855889a3b120f51ef9f60af3c">
<head>Conditions Governing Use</head>
<p>The Albert Barnitz Papers 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_8045e2c3d0e849e8cc8fb41573be15e8">
<head>Preferred Citation</head>
<p>Albert Barnitz Papers. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_8a6df7c3f667b9b4f1a3b6d8d3137b3f">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 13: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<bioghist id="aspace_0cb5f9787d2963c296610048b016c8c8">
<head>ALBERT TRORILLO SIDERS BARNITZ (1835-1912)</head>
<p>Albert Trorillo Siders Barnitz was born at Bloody Run, Pennsylvania, the son of Dr. Martin Eichelberger Barnitz and Martha McClintic Barnitz, on March 10, 1835. The family moved to Ohio shortly after his birth. Barnitz briefly attended Kenyon College in 1851 and the Cleveland Law College in 1858-59. During this time Barnitz published a book of poetry, <title localtype="simple" render="italic">
<part>The Mystic</part>
</title>
<title localtype="simple" render="italic">
<part>Delvings</part>
</title> (1857). While at Cleveland Law College, Barnitz married Eva Prouty. She died in childbirth in 1860.</p>
<p>In 1861 Barnitz joined the 13th Ohio Infantry as a three month volunteer. In August 1861 he enlisted in Company G, 2d Ohio Cavalry and was mustered as a sergeant. The 2d Ohio Cavalry spent the next year in Missouri and in June 1862 Barnitz was promoted to second lieutenant. By February 1863 he had advanced to the rank of senior captain.</p>
<p>Barnitz spent 1863 in Tennessee, and during a raid he suffered severe injuries when his horse fell on him. Barnitz was wounded in June 1864 at Ashland Station, Virginia. In autumn he returned to his regiment fighting under the command of George Armstrong Custer in the Shenandoah Valley. By 1865 Barnitz was in command of the 2d Ohio Cavalry. He participated in several battles, culminating in the Battle of Appomattox. In September 1865 he returned to civilian life, but in November 1866 he was commissioned a captain in the U. S. Cavalry. The following year Barnitz married Jennie Platt.</p>
<p>For the next two years Barnitz was stationed at various posts, including Fort Leavenworth, Fort Harker, and Fort Riley, and was involved in Indian campaigns in Kansas, Texas, Colorado, and the Indian Territory. During the Battle of the Washita River Barnitz was wounded. The severity of the wound forced his retirement in November 1870. He was, however, awarded the rank of brevet colonel for "distinguished gallantry."</p>
<p>Barnitz returned to Cleveland with Jennie and daughter Bertha. The couple had two more daughters; Maidie, born on October 23, 1871, and Blanche, born on December 16, 1874. Barnitz continued his study of law, became involved in Republican politics, and was a frequent speaker at military reunions. By the late 1870's the family began to travel extensively, and Barnitz wrote travelogues for the <title localtype="simple" render="italic">
<part>Cleveland Morning Herald</part>
</title> and the <title localtype="simple" render="italic">
<part>Daily Leader</part>
</title>. Barnitz continued to travel until his death at Asbury Park, New Jersey on July 18, 1912.</p>
<p>For additional biographical information, see <title localtype="simple" render="italic">
<part>Life in Custer's</part>
</title>
<title localtype="simple" render="italic">
<part>Cavalry</part>
</title>, (1978) by Robert M. Utley.</p>
</bioghist>
<bioghist id="aspace_5404a80a7781e9b127bb6bdb1d59e484">
<head>BARNITZ FAMILY</head>
<p>Albert T. S. Barnitz (1835-1912)-m.1 1857 Eva Prouty ( -1860)</p>
<p>---------------------------------m.2 1867 Jennie Platt (1841?-1927)</p>
<p>-----Bertha Barnitz (1870-1960)-m. 1892 Bernard Abert Byrne</p>
<p>-----Maidie Barnitz (1871-1909?)</p>
<p>-----Blanche Barnitz (1874-)-m. 1896 Hobart Stocking</p>
</bioghist>
<scopecontent id="aspace_3ab5a2c6aa5bddd7f9e37ff1f556a161">
<head>Scope and Contents</head>
<p>The Albert Barnitz Papers document the life and career of Albert Trorillo Siders Barnitz. The papers span the dates 1852-1978, but the bulk of the material covers the years 1860-1910.</p>
<p>The collection has three series. Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, consists primarily of letters between Barnitz and his family and is found in Boxes 1-3 of the Barnitz Papers. Series II, <title localtype="simple" render="italic">
<part>Diaries</part>
</title>, Boxes 4-8, is composed of the diaries of Alfred, Jennie, and Bertha Barnitz. Series III, <title localtype="simple" render="italic">
<part>Family Papers</part>
</title>, is located in Boxes 9-11, and contains the personal papers of Albert Barnitz and other material relating to him.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref12">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, houses chronologically arranged correspondence between Albert and Jennie Barnitz and other family members. The letters span the years 1859-1913, but the bulk of the letters are between 1866-69. The correspondence primarily documents Barnitz's military career. Later correspondence concerns finances and travels. Typescripts were produced for letters published in <title localtype="simple" render="italic">
<part>Life in Custer's Cavalry</part>
</title> and can be found with the original letters.</p>
<p>The correspondence for 1859-60 (Box 1, folder 2) is concerned mainly with Barnitz and his first wife, Eva Prouty. Letters between 1861 and 1865 (Box 1, folders 3-5) document his Civil War career. These letters, written to family and friends, discuss such topics as the misappropriation of horses, the lawlessness of the troops, and escaped slaves.</p>
<p>Barnitz's correspondence with Jennie Platt began in 1866. The letters concern courtship, daily activities, and plans for the future (Box 1, folders 6-11). Early in 1867 Jennie married Albert who was almost immediately assigned to command Troop G of the 7th Cavalry. His letters to Jennie from the field offer a chronicle of the Indian Wars from 1867-68, details about military life, and Barnitz's opinions of his fellow officers.</p>
<p>During the spring of 1867 Barnitz was involved in the unsuccessful Hancock expedition against the Cheyenne Indians. In both Albert's and Jennie's letters can be found descriptions of life at Fort Riley, military routines, the Cheyenne Indian camp, and the officers stationed with Barnitz.</p>
<p>Barnitz sent Jennie an account of the first important battle between the Indians and the 7th cavalry at Fort Wallace, as well as a copy of the official report (Box 1, Folders 24-25). He also wrote in great detail concerning Indian fighting techniques, the cholera epidemic at Fort Harker, and George Armstrong Custer's unauthorized march to Fort Harker (Box 1, folders 24-28). Barnitz's increasing disenchantment with Custer and his behavior was a major topic of discussion in 1867 (Box 2, folders 29-36).</p>
<p>Barnitz continued to send detailed accounts of military maneuvers in 1868. He described Indian skirmishes, Camp Alfred Gibbs, his fellow officers, his growing dissatisfaction with the army, and his receipt of the brevet major and brevet lieutenant colonel ranks (Box 2, folders 44-54).</p>
<p>The correspondence from the later part of 1868 chronicles the Battle of the Washita River, his injuries, and includes letters from Lieutenant Edward S. Godfrey reporting on Barnitz's condition (Box 3, folders 61-63). The letters of 1869-70 concern his retirement from the army.</p>
<p>The correspondence spanning the years 1872-1913 is concerned mainly with Barnitz's financial affairs and travels (Box 3, folders 66-74). At the end of the <title localtype="simple" render="italic">
<part>Correspondence</part>
</title> series are undated letters, most of which were written by his daughters.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref36">Series II, <title localtype="simple" render="italic">
<part>Diaries</part>
</title>
</ref>, can be found in Boxes 4-8 of the Barnitz Papers. The diaries span the years 1862-1910 and are arranged by author and date. The majority of the diaries were Albert's, but there are four diaries belonging to Jennie, and one diary kept by Bertha Barnitz Byrne.</p>
<p>The earliest diaries date from the Civil War. Albert Barnitz kept records of military maneuvers, his daily routines, his health, and the weather. Also included are his field notes for the campaign of 1864, lists of wounded, and an account of a shooting involving "Wild Bill" Hickock (Box 4, folders 75-82).</p>
<p>Barnitz was a careful observer of events around him. During the Indian Wars he listed the letters he sent and received, made notes on the Arapaho Indian language, and provided detailed descriptions of cavalry expeditions on the Plains. He also recorded his impressions of fellow officers, his disapproval of the rampant alcoholism in the cavalry, social life, and events in daily life (Boxes 4 and 5, folders 86-89).</p>
<p>Barnitz continued to keep a diary after his retirement. He chronicled the birth and development of his three daughters, including their physical growth and their ailments. He copied Bertha and Maidie's letters to Santa Claus, kept examples of their paper dolls, and noted their tantrums. He emphasized the fact that he and Jennie did not believe in spanking the children. Barnitz also discussed household maintenance, gardening, and problems with the servants, compiled genealogies of both the Barnitz and the Platt families, and kept records of household expenses.</p>
<p>The diaries from 1880 to the turn of the century were usually written in small pocket notebooks which Barnitz intended to copy into diary books. The diaries from this period detail his financial dealings, including those in real estate, and his involvement in lawsuits (Box 6, folders 97-102). He continued to discuss the activities of his daughters, including the marriage Bertha, his eldest daughter, the birth of her children, and the marriage and divorce of his youngest daughter, Blanche.</p>
<p>Barnitz noted "signs of depression" in his second daughter Maidie as early as 1895. Until her death sometime in 1909 Barnitz kept a detailed record of her deteriorating mental condition, her experience in the San Francisco Earthquake of 1906, various treatments she underwent, and the opinions of the doctors who examined her.</p>
<p>The diary of Bertha Barnitz Byrne spans the years 1889-97 (Box 7, folder 124). She discussed her marriage, her children, and the divorce of her sister.</p>
<p>The diaries of Jennie Barnitz are not as detailed as those of her husband. They cover the years 1862-68 and describe her day-to-day activities and their courtship. The diaries from the later period describe her life in Kansas with Barnitz and a trip she made to the East during one of his campaigns (Box 7, folder 119-23).</p>
<p>
<ref actuate="onrequest" show="replace" target="ref48">Series III, <title localtype="simple" render="italic">
<part>Family Papers</part>
</title>
</ref>, is contained in Boxes 9-11 of the Barnitz Papers and is arranged alphabetically by subject and genre. Included in this series are financial papers, material relating to reunions of the Ohio Cavalry, and an autobiography of Bertha Barnitz Peele. A section of military papers contains Confederate Army financial records and Union Army prisoner interrogation reports, a Union Army inspection book, financial records, and papers relating to Barnitz's disability (Box 9, folders 134-40). The section of newspaper clippings consists of biographical information, clippings pertaining to the Civil War, and the Indian Wars, and Barnitz's campaign for sheriff of Cuyahoga County (Box 9, folders 141-45).</p>
<p>Also included is a section containing photographs. The photographs of the Barnitz family are reproductions of originals in the possession of the Marquesa de Zahara made for <title localtype="simple" render="italic">
<part>Life in Custer's Cavalry</part>
</title>. They were annotated by Robert M. Utley. There are also original photographs of unidentified Indians, Fort Hays, Fort Dodge, Fort Harker, and Fort Wallace.</p>
<p>"Writings" houses material by Albert Barnitz, including a copy of <title localtype="simple" render="italic">
<part>Mystic Delvings</part>
</title>, folders of holograph writings, and copies of his travelogues the <title localtype="simple" render="italic">
<part>Cleveland Morning Herald</part>
</title>, and the <title localtype="simple" render="italic">
<part>Daily Leader</part>
</title>. Also included are the typescripts and published version of <title localtype="simple" render="italic">
<part>Life in Custer's Cavalry</part>
</title>. The book reproduces letters and diary entries for 1867-68, but it also includes additional biographical information and an appendix on the frontier forts.</p>
<p>An addition to the papers in November 1988 consists of material removed from a family scrapbook. The material includes a photograph of Eva Prouty, printed ephemera relating to Barnitz's life and career, and personal and military correspondence.</p>
<p>The <ref actuate="onrequest" show="replace" target="ref101">
<title localtype="simple" render="italic">
<part>restricted fragile papers</part>
</title>
</ref> in Box 13 consist of originals for which preservation photocopies have been made.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85023354"
source="lcsh">
<part localtype="topical">Child care</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85033596"
source="lcsh">
<part localtype="topical">Courtship</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85038616"
source="lcsh">
<part localtype="topical">Divorce</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85047009"
source="lcsh">
<part localtype="topical">Families</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85047444"
source="lcsh">
<part localtype="topical">Father and child</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85061673"
source="lcsh">
<part localtype="topical">Home economics</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh89002571"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="geographic">Kansas</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85081416"
source="lcsh">
<part localtype="topical">Marriage</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85083643"
source="lcsh">
<part localtype="topical">Mental illness</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065413"
source="lcsh">
<part localtype="topical">Washita Campaign, 1868-1869</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85071513"
source="lcsh">
<part localtype="geographic">Kansas</part>
<part localtype="topical">History</part>
</geogname>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2003006458"
source="lcsh">
<part localtype="topical">San Francisco Earthquake and Fire, Calif., 1906</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85139993"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">Description and travel</part>
</geogname>
<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>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85140220"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">History</part>
<part localtype="temporal">Civil War, 1861-1865</part>
<part localtype="topical">Cavalry operations</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85146140"
source="lcsh">
<part localtype="geographic">West (U.S.)</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Diaries</part>
<part localtype="geographic">United States</part>
</genreform>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85124578"
source="lcsh">
<part localtype="topical">Soldiers</part>
<part localtype="geographic">United States</part>
</subject>
<persname source="local">
<part localtype="agent_person">Barnitz family</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Barnitz, Albert Trovillo Siders, 1835-1912</part>
</persname>
<persname source="local">
<part localtype="agent_person">Barnitz, Blanche, 1874-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Barnitz, Jennie</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Barnitz, Maidi, 1871-1909</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Byrne, Bertha Barnitz, 1870-1961</part>
</persname>
<persname>
<part localtype="agent_person">Custer, George A. (George Armstrong), 1839-1876</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">United States. Army (Military life)</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">United States. Army. Cavalry, 7th</part>
</corpname>
<corpname rules="aacr" source="local">
<part localtype="agent_corporate_entity">United States. Army. Ohio Cavalry, 2nd</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/444974"
id="ref12"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured altrender="1857-1913" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1857">1857</fromdate>
<todate standarddate="1913">1913</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_5324dc5c630f3c842f30604fd4f76e97">
<head>Scope and Contents</head>
<p>Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title> consists of chronologically arranged correspondence. Undated material, arranged alphabetically and letter fragments are placed at the end of the series.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/444975"
id="ref14"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1857-58" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1857">1857</fromdate>
<todate standarddate="1858">1858</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58376 /locations/9"
containerid="39002091616871"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444976"
id="ref15"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1859-60" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1859">1859</fromdate>
<todate standarddate="1860">1860</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58376 /locations/9"
containerid="39002091616871"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444977"
id="ref16"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1861-62" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1861">1861</fromdate>
<todate standarddate="1862">1862</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58376 /locations/9"
containerid="39002091616871"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444978"
id="ref17"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1863" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1863">1863</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58376 /locations/9"
containerid="39002091616871"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444979"
id="ref18"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1864-65" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1864">1864</fromdate>
<todate standarddate="1865">1865</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58376 /locations/9"
containerid="39002091616871"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444980"
id="ref19"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1866" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1866">1866</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58376 /locations/9"
containerid="39002091616871"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">6-11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444981"
id="ref20"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1867 Jan-Jul" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1867-01">1867 January</fromdate>
<todate standarddate="1867-07">1867 July</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58376 /locations/9"
containerid="39002091616871"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">12-28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444982"
id="ref21"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1867 Aug-Dec" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1867-08">1867 August</fromdate>
<todate standarddate="1867-12">1867 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58377 /locations/9"
containerid="39002091616889"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">29-42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444983"
id="ref22"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1868 Jan-Jul" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1868-01">1868 January</fromdate>
<todate standarddate="1868-07">1868 July</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58377 /locations/9"
containerid="39002091616889"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">43-52</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444984"
id="ref23"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1868 Aug-Dec" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1868-08">1868 August</fromdate>
<todate standarddate="1868-12">1868 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">53-63</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444985"
id="ref24"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1869" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1869">1869</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">64</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444986"
id="ref25"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1870" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1870">1870</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">65</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444987"
id="ref26"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1872-73" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872">1872</fromdate>
<todate standarddate="1873">1873</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">66</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444988"
id="ref27"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1884-85" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1884">1884</fromdate>
<todate standarddate="1885">1885</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">67</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444989"
id="ref28"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1890-91" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1890">1890</fromdate>
<todate standarddate="1891">1891</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">68</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444990"
id="ref29"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1892" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1892">1892</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">69-70</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444991"
id="ref30"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1893" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1893">1893</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">71-72</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444992"
id="ref31"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1894-95" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894">1894</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">73</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444993"
id="ref32"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1908-13" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1908">1908</fromdate>
<todate standarddate="1913">1913</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">74</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444994"
id="ref33"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">75</container>
<daoset altrender="/repositories/11/digital_objects/159314">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17440743"
identifier="oid:17440743"
linktitle="28 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17440745/full/!150,150/0/default.jpg"
identifier="oid:17440743"
linktitle="28 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17440743"
identifier="oid:17440743"
linktitle="28 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444995"
id="ref34"
level="file">
<did>
<unittitle>Letter fragments</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58378 /locations/9"
containerid="39002091616897"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">76</container>
<daoset altrender="/repositories/11/digital_objects/159315">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17440744"
identifier="oid:17440744"
linktitle="15 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17440773/full/!150,150/0/default.jpg"
identifier="oid:17440744"
linktitle="15 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17440744"
identifier="oid:17440744"
linktitle="15 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Letter fragments</p>
</descriptivenote>
</daoset>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/444996"
id="ref36"
level="series">
<did>
<unittitle>Diaries</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured altrender="1860-1910" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1910">1910</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_781eb1bc85310e422f2b945186eb9ecb">
<head>Scope and Contents</head>
<p>Series II, <title localtype="simple" render="italic">
<part>Diaries</part>
</title>, is arranged alphabetically by author, and then chronologically.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/444997"
id="ref38"
level="file">
<did>
<unittitle>Barnitz, Albert</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/444998"
id="ref39"
level="file">
<did>
<unittitle>Diaries</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1860-68 Apr</unitdate>
<container altrender="/repositories/11/top_containers/58379 /locations/9"
containerid="39002091616905"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">77-87</container>
<daoset altrender="/repositories/11/digital_objects/159274">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17256944"
identifier="oid:17256944"
linktitle="233 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17256946/full/!150,150/0/default.jpg"
identifier="oid:17256944"
linktitle="233 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17256944"
identifier="oid:17256944"
linktitle="233 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Diaries</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/444999"
id="ref40"
level="file">
<did>
<unittitle>Diaries</unittitle>
<unitdatestructured altrender="1868 Apr-1878" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1868-04">1868 April</fromdate>
<todate standarddate="1878-12">1878 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58380 /locations/9"
containerid="39002091616913"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">88-95</container>
<daoset altrender="/repositories/11/digital_objects/159007">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10269871"
identifier="oid:10269871"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1467901/full/!150,150/0/default.jpg"
identifier="oid:10269871"
linktitle="p. 110-111"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10269871"
identifier="oid:10269871"
linktitle="p. 110-111"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Diaries</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445000"
id="ref41"
level="file">
<did>
<unittitle>Diaries</unittitle>
<unitdatestructured altrender="1879-96" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1879">1879</fromdate>
<todate standarddate="1896">1896</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58381 /locations/9"
containerid="39002091616921"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">96-106</container>
<daoset altrender="/repositories/11/digital_objects/159008">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10269872"
identifier="oid:10269872"
linktitle="5 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1467904/full/!150,150/0/default.jpg"
identifier="oid:10269872"
linktitle="p. 82-83"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10269872"
identifier="oid:10269872"
linktitle="p. 82-83"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Diaries</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445001"
id="ref42"
level="file">
<did>
<unittitle>Diaries</unittitle>
<unitdatestructured altrender="1897-1910" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1897">1897</fromdate>
<todate standarddate="1910">1910</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58382 /locations/9"
containerid="39002091616939"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">7</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">107-117</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/445002"
id="ref43"
level="file">
<did>
<unittitle>Diary fragment</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58382 /locations/9"
containerid="39002091616939"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">7</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">118</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/445003"
id="ref44"