-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path584.xml
8483 lines (8483 loc) · 504 KB
/
584.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.jwgibbsbein">beinecke.jwgibbsbein</recordid>
<otherrecordid localtype="BIB">12356288</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Josiah Willard Gibbs Papers
</titleproper>
<titleproper localtype="filing">Gibbs, Josiah Willard papers</titleproper>
<author>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>October 2014</date>
<num>GEN MSS 1175</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">12356288</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-15b, 15c-18, 19 (Oversize), 20-21</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 15 (Oversize), 15a (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="33">33</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="187">187</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:05:02-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:05</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/584" level="collection">
<did>
<unittitle>Josiah Willard Gibbs papers</unittitle>
<unitid>GEN MSS 1175</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>11.09</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">25 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1811">1811</fromdate>
<todate standarddate="1947">1947</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1863">1863</fromdate>
<todate standarddate="1903">1903</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_a89c22923d9cf2ff9ec9f3fa7bf59812">The collection consists of the papers of Josiah Willard Gibbs (1839-1903), which include correspondence, scientific papers, lecture notes taken by one of Gibbs' students, photographs, scientific illustrations, and honors and awards, as well as correspondence of his father, J. Willard Gibbs (1790-1861).</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Gibbs, J. Willard (Josiah Willard), 1839-1903</part>
</persname>
</origination>
</did>
<bioghist id="aspace_f3b701f5ac3ce1bbde1ab65bb8fcbf5c">
<head>Josiah Willard Gibbs (1839-1903)</head>
<p>Josiah Willard Gibbs, mathematician and physicist, was born in New Haven on February 11, 1839, the son of Josiah Willard Gibbs, professor of sacred literature at Yale, and Mary Anna Van Cleve. He received a B.A. from Yale in 1858, an M.A. in 1861, and a Ph.D. in 1863. After serving as tutor in Latin (1863-65) and natural philosophy (1865-66), Gibbs went to Europe to study for three years. He returned to New Haven in 1869 and was appointed professor of mathematical physics at Yale in 1871, a position he held until his death.</p>
<p>Best known for developing the theory of thermodynamics, Gibbs wrote a number of extremely important and influential scientific works, the most significant being "Graphical Methods in the Thermodynamics of Fluids" (1873), "A Method of Geometrical Representation of the Thermodynamic Properties of Substances by Means of Surfaces" (1873), "On the Equilibrium of Heterogeneous Substances" (1876, 1878), "Electrochemical Thermodynamics" (1886, 1888), and <title localtype="simple" render="italic">
<part>Elementary Principles in Statistical Mechanics</part>
</title> (1902).</p>
<p>He lived at the home of his sister and brother-in-law, Julia Gibbs and Addison Van Name, and died unmarried in New Haven on April 28, 1903.</p>
<p>For additional biographical information, see the <title localtype="simple" render="italic">
<part>Dictionary of American Biography</part>
</title>, IV, pp. 248-51; Muriel Rukeyser, <title localtype="simple" render="italic">
<part>Willard Gibbs</part>
</title> (1942), and Lynde Phelps Wheeler, <title localtype="simple" render="italic">
<part>Josiah Willard Gibbs, the History of a Great Mind</part>
</title> (1951).</p>
</bioghist>
<scopecontent id="aspace_66096e22d5dd6af9bf08692c419e9588">
<head>Scope and Contents</head>
<p>The collection consists of the papers of Josiah Willard Gibbs (1839-1903), which include correspondence, scientific papers, lecture notes taken by one of Gibbs' students, photographs, scientific illustrations, and honors and awards, as well as correspondence of his father, J. Willard Gibbs (1790-1861). Series I., Josiah Willard Gibbs Correspondence, consists almost entirely of professional and scientific correspondence. Major correspondents include Wilder Dwight Bancroft; Hugo Buchholz; Franklin Bowditch Dexter; Timothy Dwight; Smith B. Goodenow; Wilhelm Ostwald; Karl Planck; and Sir Joseph Thomson. Series II., Notebooks and Scientific Papers, includes documentation of Gibbs' work in vector analysis of orbits; statistical mechanics; and electromechanics. Series III., Class Notes by George P. Starkweather, contains lecture notes taken by Starkweather on subjects including electricity and magnetism; thermodynamics; the electromagnetic theory of light; and vector applications. Series IV., Portraits and Illustrations, contains portraits of J. Willard and of Josiah Willard Gibbs, among other subjects. Series V., Correspondence of J. Willard Gibbs, contains personal and professional correspondence of Josiah Willard Gibbs' father, a theologian and Yale professor. Correspondents include William Henry Beecher; Elijah Coleman Bridgeman; George Edward Day; William Allen Macy; and Benjamin Silliman.</p>
</scopecontent>
<processinfo id="aspace_26238f18064d7312d09944b4deb9aab7">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived
research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library
attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This finding aid was produced in 2014 from a previously existing card set in the Manuscripts Catalog. All pertinent
bibliographical information has been retained.</p>
<p>Former call number: MS Vault Gibbs.</p>
</processinfo>
<prefercite id="aspace_7a03db80c8c0efe6cd97db1678da67b6">
<head>Preferred Citation</head>
<p>Josiah Willard Gibbs Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<userestrict id="aspace_577389f6be826b88a25ab3ea1eedd065">
<head>Conditions Governing Use</head>
<p>The Josiah Willard Gibbs 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>
<accessrestrict id="aspace_50e43926398071d42a4b45ef2f6d2b4a">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>This collection may be housed off-site at Yale's Library Shelving Facility (LSF). To determine if all or part of this collection is housed off-site please check the library's online catalog, Orbis; material for which the location is given as "LSF" must be requested 36 hours in advance. Please consult with Beinecke Access Services for more information.</p>
</accessrestrict>
<acqinfo id="aspace_26019b5c752ddd778533a4e366181c68">
<head>Immediate Source of Acquisition</head>
<p>The Josiah Willard Gibbs Papers are almost entirely the bequest of Addison Van Name, 1922. A few items were donated to Beinecke Library by Theodora Van Name Palmer in 1961.</p>
</acqinfo>
<arrangement id="aspace_dacb9180003d8d86f997f8edfe58cddb">
<head>Arrangement</head>
<p>Organized into five series: I. Josiah Willard Gibbs Correspondence, 1876-1915; II. Josiah Willard Gibbs Notebooks, Scientific Papers and Personal Papers, 1863-1947; III. Lecture Notes by George P. Starkweather, 1892-1896; IV. Photographs and Illustrations, 1860s; V. Letters by and to J. Willard Gibbs (1790-1861), 1811-1860.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85082157"
source="lcsh">
<part localtype="topical">Mathematics</part>
<part localtype="topical">Study and teaching</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85095317"
source="lcsh">
<part localtype="topical">Orbits</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85101667"
source="lcsh">
<part localtype="topical">Physics</part>
<part localtype="topical">Study and teaching</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh95009102"
source="lcsh">
<part localtype="topical">Physicists</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85118700"
source="lcsh">
<part localtype="topical">Scientists</part>
<part localtype="geographic">United States</part>
</subject>
<occupation source="local">
<part localtype="occupation">Physicists</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Scientists</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Bancroft, Wilder D. (Wilder Dwight), 1867-1953</part>
</persname>
<persname>
<part localtype="agent_person">Beecher, William Henry, 1802-1889</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Bridgeman, Elijah Coleman</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Buchholz, Hugo, 1866-1921</part>
</persname>
<persname>
<part localtype="agent_person">Day, George Edward, 1815-1872</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Dexter, Franklin Bowditch, 1842-1920</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Dwight, Timothy, 1828-1916</part>
</persname>
<famname>
<part localtype="agent_family">Gibbs family</part>
</famname>
<persname>
<part localtype="agent_person">Gibbs, Josiah W. (Josiah Willard), 1790-1861</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Gibbs, J. Willard (Josiah Willard), 1839-1903</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Goodenow, Smith B. (Smith Bartlett), 1817-1897</part>
</persname>
<persname source="local">
<part localtype="agent_person">Macy, William Allen</part>
</persname>
<persname>
<part localtype="agent_person">Ostwald, Wilhelm, 1853-1932</part>
</persname>
<persname>
<part localtype="agent_person">Planck, Max, 1858-1947</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Silliman, Benjamin, 1779-1864</part>
</persname>
<persname source="local">
<part localtype="agent_person">Starkweather, George P.</part>
</persname>
<persname>
<part localtype="agent_person">Thomson, J. J. (Joseph John), 1856-1940</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Yale University</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/191144"
id="ref4"
level="series">
<did>
<unittitle>Josiah Willard Gibbs (1839-1903) Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.04</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876">1876</fromdate>
<todate standarddate="1915">1915</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_d46b9abac87bb970cf78ecd550d4c948">
<head>Arrangement</head>
<p>Organized into three subseries: Letters by Gibbs; Letters to Gibbs, and Collected Correspondence and Related Papers</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/191145"
id="ref5"
level="subseries">
<did>
<unittitle>Letters by Gibbs</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/191146"
id="ref6"
level="file">
<did>
<unittitle>Autograph letter (draft) to Wilder D. Bancroft on the equations of electric motion. [New Haven].</unittitle>
<unitid>1</unitid>
<unitdatestructured altrender="1899 May" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1899-05">1899 May</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref6_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref6_c2" localtype="folder" parent="aspace_ref6_c1">1</container>
</did>
<scopecontent id="aspace_505389b2bf7087caaf10789eb08b92ee">
<head>Scope and Contents</head>
<p>Accompanied by a manuscript copy of the letter as sent, in an unidentified hand.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/191147"
id="ref8"
level="file">
<did>
<unittitle>4 autograph letters, signed, and 1 autograph letter (draft) to Carl Barus. New Haven.</unittitle>
<unitdatestructured altrender="1897-1900" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1897">1897</fromdate>
<todate standarddate="1900">1900</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref8_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref8_c2" localtype="folder" parent="aspace_ref8_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191148"
id="ref9"
level="file">
<did>
<unittitle>Autograph letter (draft) to George F. Becker. New Haven.</unittitle>
<unitdatestructured altrender="1886 September 13"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1886-09-13">1886 September 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref9_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref9_c2" localtype="folder" parent="aspace_ref9_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191149"
id="ref10"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to [Henry Pickering] Bowditch. [New Haven?]</unittitle>
<unitdatestructured altrender="1891 May 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1891-05-06">1891 May 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref10_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref10_c2" localtype="folder" parent="aspace_ref10_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191150"
id="ref11"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to Bernard Brunhes. New Haven.</unittitle>
<unitdatestructured altrender="1902 November 8"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1902-11-08">1902 November 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref11_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref11_c2" localtype="folder" parent="aspace_ref11_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191151"
id="ref12"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to Hugo Bucholz. New Haven.</unittitle>
<unitdatestructured altrender="1898 October" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1898-10">1898 October</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191152"
id="ref13"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to Henri Louis Le Chatelier. New Haven.</unittitle>
<unitdatestructured altrender="1899 October 28"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1899-10-28">1899 October 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">7</container>
<daoset altrender="/repositories/11/digital_objects/248418">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17296909"
identifier="oid:17296909"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17296917/full/!150,150/0/default.jpg"
identifier="oid:17296909"
linktitle="2 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17296909"
identifier="oid:17296909"
linktitle="2 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Autograph letter, signed, (draft) to Henri Louis Le Chatelier. New Haven.</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191153"
id="ref14"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to Josiah Parsons Cooke. New Haven.</unittitle>
<unitdatestructured altrender="1889 June 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1889-06-10">1889 June 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191154"
id="ref15"
level="file">
<did>
<unittitle>Autograph letter, signed, and autograph letter (drafts) to Thomas Craig. New Haven.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1888 July 13 and August 14</unitdate>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191155"
id="ref16"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to [Pierre Maurice Maire Duhem]. New Haven.</unittitle>
<unitdatestructured altrender="1887 February 2"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1887-02-02">1887 February 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">10</container>
<daoset altrender="/repositories/11/digital_objects/248421">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17296910"
identifier="oid:17296910"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17296919/full/!150,150/0/default.jpg"
identifier="oid:17296910"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17296910"
identifier="oid:17296910"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Autograph letter, signed, (draft) to [Pierre Maurice Maire Duhem]. New Haven.</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191156"
id="ref17"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to Thomas S. Fiske. New Haven.</unittitle>
<unitdatestructured altrender="1891 February 6"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1891-02-06">1891 February 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191157"
id="ref18"
level="file">
<did>
<unittitle>4 autograph letters, signed, to D. C. Gilman, president of Johns Hopkins University, concerning a projected visit to the university as a lecturer. New Haven.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1879 May 17 and June 5, 1880 March 30 and April 29</unitdate>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191158"
id="ref19"
level="file">
<did>
<unittitle>Autograph letter (draft) to B. A. Gould. [New Haven].</unittitle>
<unitdatestructured altrender="1889 September 23"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1889-09-23">1889 September 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191159"
id="ref20"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to Hermann Ernst Grassman. New Haven.</unittitle>
<unitdatestructured altrender="1887 February 2"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1887-02-02">1887 February 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191160"
id="ref21"
level="file">
<did>
<unittitle>Autograph letter (draft) to William Thomson, Lord Kelvin. New Haven.</unittitle>
<unitdatestructured altrender="1902 September 26"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1902-09-26">1902 September 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">15</container>
<daoset altrender="/repositories/11/digital_objects/123734">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://brbl-dl.library.yale.edu/vufind/Record/3762115"
identifier="oid:10552219"
show="new"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://brbl-media.library.yale.edu/imagehandler.php?size=quarter&object_id=10552219&image_id=3624391"
identifier="oid:10552219"
linktitle="1 image"
show="embed"/>
<descriptivenote>
<p>Autograph letter (draft) to William Thomson, Lord Kelvin. New Haven.</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191161"
id="ref22"
level="file">
<did>
<unittitle>Autograph letter (draft) to [Samuel Pierpont] Langley. New Haven.</unittitle>
<unitdatestructured altrender="1894 May 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1894-05-30">1894 May 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191162"
id="ref23"
level="file">
<did>
<unittitle>3 autograph letters, signed, (drafts) to Oliver J. Lodge, secretary of the Electrolysis Committee of the British Association for the Advancement of Science. New Haven.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1887 January 8 and November [21], 1888 March 14</unitdate>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191163"
id="ref24"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to Joseph Lovering. New Haven.</unittitle>
<unitdatestructured altrender="1881 January 5"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1881-01-05">1881 January 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191164"
id="ref25"
level="file">
<did>
<unittitle>Autograph letter (draft) to Alexander McAuley. [New Haven?].</unittitle>
<unitdatestructured altrender="1892 January 21"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1892-01-21">1892 January 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191165"
id="ref26"
level="file">
<did>
<unittitle>5 autograph letters, signed, (drafts) to Wilhelm Ostwald. New Haven.</unittitle>
<unitdatestructured altrender="1887-1891" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1887">1887</fromdate>
<todate standarddate="1891">1891</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191166"
id="ref27"
level="file">
<did>
<unittitle>Positive photostats of 2 letters and negative photostats of 4 letters to Wilhelm Ostwald, University of Leipzig, Germany. New Haven and Goshen, Massachusetts.</unittitle>
<unitdatestructured altrender="1888-1896" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1888">1888</fromdate>
<todate standarddate="1896">1896</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">21</container>
</did>
<scopecontent id="aspace_f9d019b41df79319c4316ac057d60eb6">
<head>Scope and Contents</head>
<p>Accompanied by a photostat of a page from the Zeitschrift fur Physikalische Chemie, vol. 43 (1903) and a manuscript transcription of the letters made by Fraulein Grete Ostwald.</p>
</scopecontent>
<originalsloc id="aspace_6f33102cb7b7677182c834362864e6eb">
<head>Existence and Location of Originals</head>
<p>The original letters are preserved in the Wilhem Ostwald Archive, Grossbothen, Saxony.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/191167"
id="ref30"
level="file">
<did>
<unittitle>Autograph letter (draft) to Charles Santiago Sanders Peirce. New Haven.</unittitle>
<unitdatestructured altrender="1881 December 1"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1881-12-01">1881 December 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191168"
id="ref31"
level="file">
<did>
<unittitle>Autograph letter (draft) to [Victor] Schlegel. [New Haven?]</unittitle>
<unitdatestructured altrender="1888 August 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1888-08-01">1888 August 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191169"
id="ref32"
level="file">
<did>
<unittitle>Autograph letter, signed, (draft) to Joseph Ellis Trevor. New Haven.</unittitle>
<unitdatestructured altrender="1899 March 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1899-03-06">1899 March 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">24</container>
<daoset altrender="/repositories/11/digital_objects/123740">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16662396"
identifier="oid:16662396"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16662401/full/!150,150/0/default.jpg"
identifier="oid:16662396"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16662396"
identifier="oid:16662396"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Autograph letter, signed, (draft) to Joseph Ellis Trevor. New Haven.</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191170"
id="ref33"
level="file">
<did>
<unittitle>3 autograph letters, signed, (drafts) to Messrs. Veit & Comp. New Haven.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1889 January 17, February 16, and March 20</unitdate>
<container altrender="/repositories/11/top_containers/18158 /locations/9"
containerid="39002104624144"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">25</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/191171"
id="ref34"
level="subseries">
<did>
<unittitle>Letters to Gibbs</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/191172"
id="ref35"
level="file">
<did>
<unittitle>Abbe, Cleveland - 1 autograph letter, signed, and 3 typed letters, signed to Josiah Willard Gibbs. Washington.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1885 Spetember 28, 1893 May 6, 1902 April 10 and 14</unitdate>
<container altrender="/repositories/11/top_containers/18159 /locations/9"
containerid="39002104624151"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191173"
id="ref36"
level="file">
<did>
<unittitle>Abraham, Max (1875-1922) - autograph letter, signed to Josiah Willard Gibbs. Berlin. In German.</unittitle>
<unitdatestructured altrender="1899 November 30"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1899-11-30">1899 November 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18159 /locations/9"
containerid="39002104624151"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191174"
id="ref37"
level="file">
<did>
<unittitle>Aitken, John (1839-1919) - 2 autograph letters, signed to Josiah Willard Gibbs. Selkirk.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1876 December 15, 1877 January 24</unitdate>
<container altrender="/repositories/11/top_containers/18159 /locations/9"
containerid="39002104624151"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191175"
id="ref38"
level="file">
<did>
<unittitle>Bakhuis Roozeboom, Hendrik Willem (1854-1907) - Autograph note, signed to [Josiah Willard Gibbs]. Amsterdam.</unittitle>
<unitdatestructured altrender="1902 April 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1902-04-03">1902 April 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18159 /locations/9"
containerid="39002104624151"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191176"
id="ref39"
level="file">
<did>
<unittitle>Ball, Sir Robert Stawell (1840-1913) - Typed letter, signed to Josiah Willard Gibbs. Cambridge, England.</unittitle>
<unitdatestructured altrender="1902 March 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1902-03-29">1902 March 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18159 /locations/9"
containerid="39002104624151"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191177"
id="ref40"
level="file">
<did>
<unittitle>Bancroft, Wilder Dwight (1867- ) - 5 autograph letters, signed to Josiah Willard Gibbs. Ithaca, New York.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1898 January 13, 1899 March 18 and May 20 and June 4 and July 4</unitdate>
<container altrender="/repositories/11/top_containers/18159 /locations/9"
containerid="39002104624151"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">31</container>
<daoset altrender="/repositories/11/digital_objects/123741">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16662397"
identifier="oid:16662397"
linktitle="13 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16662404/full/!150,150/0/default.jpg"
identifier="oid:16662397"
linktitle="13 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16662397"
identifier="oid:16662397"
linktitle="13 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Bancroft, Wilder Dwight (1867- ) - 5 autograph letters, signed to Josiah Willard Gibbs. Ithaca, New York.</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191178"
id="ref41"
level="file">
<did>
<unittitle>Barth, Johannes A. - Copy of an autograph letter, signed, to Scribners.</unittitle>
<unitdatestructured altrender="1902 July 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1902-07-10">1902 July 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18159 /locations/9"
containerid="39002104624151"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191179"
id="ref42"
level="file">
<did>
<unittitle>Baynes, Robert Edward (1849-1921) - Autograph letter, signed to Josiah Willard Gibbs. Oxford.</unittitle>
<unitdatestructured altrender="1879 January 27"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1879-01-27">1879 January 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/18159 /locations/9"
containerid="39002104624151"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/191180"
id="ref43"
level="file">
<did>
<unittitle>Becker, George Ferdinand (1847-1919) - Autograph letter, signed to Josiah Willard Gibbs. Newport, Rhode Island.</unittitle>
<unitdatestructured altrender="1886 August 18"