-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1220.xml
10800 lines (10800 loc) · 633 KB
/
1220.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.streeter">beinecke.streeter</recordid>
<otherrecordid localtype="BIB">3162554</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Thomas W. Streeter Papers
</titleproper>
<titleproper localtype="filing">Streeter (Thomas W.) Papers</titleproper>
<author>by Susie R. Bock</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>January 1988</date>
<num>WA MSS S-1312</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">3162554</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1, 1a, 1b-7, 7a-66, 66a-91</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="7">7</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="110">110</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:17:04-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:17</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1220" level="collection">
<did>
<unittitle>Thomas W. Streeter papers</unittitle>
<unitid>WA MSS S-1312</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>34</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">95 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1861">1861</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1959">1959</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_1ed647ad559c0f1599cad943fccc1554">The papers contain Streeter's research notes, drafts, and proofs for his three volume Bibliography of Texas.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Streeter, Thomas W. (Thomas Winthrop), 1883-1965</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_f373b55379ee6cb1d7f422e3a22d9489">
<head>Immediate Source of Acquisition</head>
<p>Gift of Thomas W. Streeter.</p>
</acqinfo>
<userestrict id="aspace_85bafa5cc897d3e7a765482ed548afc2">
<head>Conditions Governing Use</head>
<p>The Thomas W. Streeter 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_630adae5f5aed072ab0bd4d37bd82a39">
<head>Preferred Citation</head>
<p>Thomas W. Streeter Papers. Yale Collection of Western Americana. Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_d71adbf490bec81ed3e83891fce4ea5f">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 91: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<bioghist id="aspace_eabc81ad9c792640a7c680398be79764">
<head>THOMAS W. STREETER, 1883-1965</head>
<p>Thomas Winthrop Streeter was educated at Dartmouth College (1904) and Harvard Law School (1907). Beginning his career as a lawyer in Boston, Streeter soon moved into the business world, becoming involved with oil companies in Mexico. In 1917 he became treasurer, and later vice-president, of the American International Corporation. Streeter held other executive positions in the business and financial worlds until his retirement in 1939.</p>
<p>After 1939 Streeter devoted his time to book collecting and bibliography. He was interested in early Americana and specializied in Texana, amassing a collection which was second only to that of the University of Texas. From his years of experience Streeter compiled the five volume <title localtype="simple" render="italic">
<part>Bibliography of Texas 1795-1845</part>
</title>, published in three parts. In 1957, he sold his Texas collection to Yale University, transferring the material in lots as he completed work on his bibliography. Streeter was associated with many libraries, such as the Huntington Library, the Grolier Club, and the New-York Historical Society. During the 1940s and 1950s he served as president of the Bibliographical Society of America and of the American Antiquarian Society.</p>
<p>Thomas Streeter married Ruth Cheney in 1917 and had four children. He died in 1965 in his hometown, Morristown, New Jersey.</p>
</bioghist>
<scopecontent id="aspace_443c1cee4074bc46cdb0a4b769df3890">
<head>Scope and Contents</head>
<p>The Thomas W. Streeter Papers document the compilation of his <title localtype="simple" render="italic">
<part>Bibliography of Texas 1795-1845</part>
</title> (Cambridge: Harvard University Press, 1955, 1956, 1960). Although the collection spans the dates 1861-1980, the bulk of the material falls in the period 1927-59, when Streeter was working on the bibliography. Thomas Streeter donated this Texana research material to Yale University.</p>
<p>The Streeter Papers are arranged in four series. <ref actuate="onrequest" show="replace" target="ref10">Series I, <title localtype="simple" render="italic">
<part>Research Files for the Bibliography of Texas</part>
</title>, is divided into a general subseries and a subseries for each of the three parts of the bibliography</ref>. Series II, Preliminary Entries and Drafts, has a parallel arrangement. <title localtype="simple" render="italic">
<part>Photoreproductions</part>
</title>, Series III, contains copies of nineteenth-century material concerning Texas. Series IV, <title localtype="simple" render="italic">
<part>Background Material</part>
</title>, is composed of six sections: <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, <title localtype="simple" render="italic">
<part>General Subject Files</part>
</title>, <title localtype="simple" render="italic">
<part>Files Given by Henry Raup Wagner</part>
</title>, <title localtype="simple" render="italic">
<part>Files Given by Earl Vandale</part>
</title>, <title localtype="simple" render="italic">
<part>Texas Maps</part>
</title>, and <title localtype="simple" render="italic">
<part>Texas</part>
</title>.</p>
<p>After 1845 <title localtype="simple" render="italic">
<part>Series V, Printer's Proofs for Part III</part>
</title>, contains the galleys and page proofs of the final part of <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>. As far as possible, the arrangement of the papers preserves Streeter's organization of his files. In Series II, however, an artificial order has been imposed.</p>
<p>
<title localtype="simple" render="italic">
<part>Research Files for the Bibliography of Texas</part>
</title> (Boxes 1-12) are divided into four subseries: <title localtype="simple" render="italic">
<part>General Subject Files</part>
</title>; <title localtype="simple" render="italic">
<part>Part I: Texas Imprints</part>
</title>; <title localtype="simple" render="italic">
<part>Part II: Mexican Imprints</part>
</title>; and <title localtype="simple" render="italic">
<part>Part III: United States and European Imprints</part>
</title>.</p>
<p>
<title localtype="simple" render="italic">
<part>General Subject Files</part>
</title> contain Streeter's earliest notes on his Texas bibliography project. This includes checklists of Texas material found at Yale and other libraries, or noted in bibliographies such as Sabin. Streeter's thoughts on the style and organization of the <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title> can be found in Box 1, folders 1 and 1.8. Bibliographic entries for imprints omitted from the final printed work are also found in this section. These entries, typed on small looseleaf pages, are in the form of bibliographic notation Streeter, used and similar specimens can be found throughout the collection.</p>
<p>
<title localtype="simple" render="italic">
<part>Part I</part>
</title> is composed of Subject Files, Location Research, and Newspaper Research. For <title localtype="simple" render="italic">
<part>Part II</part>
</title> there are only Subject Files, although <title localtype="simple" render="italic">
<part>Part III</part>
</title> has both Subject Files and Location Research. The subject files consist of correspondence, memoranda, lists, draft bibliographic entries, transcripts, articles, and clippings. Files may relate to a specific item in the bibliography, such as Kenneth Anderson's <title localtype="simple" render="italic">
<part>Circular</part>
</title> (item no. 431) or to a group of items, such as Texas laws. The correspondence usually discusses the provenance of various imprints, sometimes documenting Streeter's own collecting. Photoreproductions and transcripts were used as a basis for bibliographic entries and notes. There is biographical data in the subject files of Series I on the authors represented in <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>.</p>
<p>Much of the material in the <title localtype="simple" render="italic">
<part>Part I</part>
</title> Subject Files relates to the history of printing in Texas. For his essay "A Brief Sketch of Printing in Texas through 1845" in Part I of <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>, Streeter collected material on printing in various Texas towns (see Box 1B, folders 35-40, 42-45). He also gathered material on individual firms, such as the accounts of Baker & Borden, and discussed early printers with J. C. Wylie (see Boxes 1A-1B, folder 3, 42-45). The second section of <title localtype="simple" render="italic">
<part>Part I</part>
</title>, Newspaper Research, also documents the history of printing. Other material concerning this subject can be found in Series IV, <title localtype="simple" render="italic">
<part>Files Given by Henry Raup Wagner</part>
</title> and <title localtype="simple" render="italic">
<part>General Subject Files</part>
</title> and in the correspondence of E. W. Winkler and Douglas C. McMurtie (See Box 67, 69-70, folders 590, 622-645).</p>
<p>The Location Research for <title localtype="simple" render="italic">
<part>Part I</part>
</title> consists of correspondence with twenty to thirty institutions concerning the ownership of several items cited in the bibliography. This material is not as extensive as the location research for <title localtype="simple" render="italic">
<part>Part III</part>
</title>.</p>
<p>Series I, <title localtype="simple" render="italic">
<part>Part I</part>
</title>, Newspaper Research, contains the background data for Appendix A of Part I, volume II of <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>. Newspaper Research is divided into General Notes, Bibliographic Information on Texas Newspapers, Newspapers known only by Indirect Reference, and Location Research. The General Notes document the research process Streeter and Margaret McLean followed. Bibliographic Information on Texas Newspapers is arranged alphabetically by place of publication; within each city, newspapers are listed alphabetically by title. For almost every newspaper there are three lists: references to the newspaper and notes from publishing prospectuses, information on the holdings of Texas libraries, and a "Master Sheet" bringing together all publication and copy information. Streeter also collected citations to newspapers for which no copies could be found and verified existing issues through correspondence which can be found in Location Research.</p>
<p>Series I, <title localtype="simple" render="italic">
<part>Part II</part>
</title>, Subject Files focus on government imprints concerning Coahuila and Texas. Streeter compiled lists of decrees by analyzing early anthologies of government publications, such as Arrilaga and Dublan.</p>
<p>Texas maps are well documented in Series I, <title localtype="simple" render="italic">
<part>Part III</part>
</title>, Subject Files (Boxes 7A, 8-9, folders 189.1-189.7, 219, 223-228). More information can be found in the subseries of Series IV, <title localtype="simple" render="italic">
<part>Files Given by Henry Raup Wagner</part>
</title>, <title localtype="simple" render="italic">
<part>Texas Maps</part>
</title>, and <title localtype="simple" render="italic">
<part>Texas After 1845</part>
</title>.</p>
<p>The second section of Series I, <title localtype="simple" render="italic">
<part>Part III</part>
</title> is Location Research for the items listed in <title localtype="simple" render="italic">
<part>United States and European Imprints</part>
</title>. These files are similar to the newspaper location material, since Streeter was contacting the same institutions, but far more extensive. The correspondence follows a general pattern. Streeter wrote library directors requesting names of people who could check the institution's holdings against his lists. He then communicated directly with the individual. Finding lists, used by the checkers to note locations, accompany the correspondence.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref243">Series II, <title localtype="simple" render="italic">
<part>Preliminary Entries and Drafts</part>
</title>
</ref>(Boxes 13-61), contains looseleaf notebooks documenting the growth of the <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>. These notebooks are divided into the three groups reflecting the divisions of the bibliography, <title localtype="simple" render="italic">
<part>Texas Imprints, Mexican Imprints</part>
</title>, and <title localtype="simple" render="italic">
<part>United States and European Imprints</part>
</title>. The volumes are arranged to represent the order of production. Within each part, pre-draft notes, preliminary checklists, and special information generally come first, followed by full drafts. Most of the notebooks are heavily annotated in more than one hand. Streeter often made carbon copies of drafts and any notes made in one set were usually transferred to others. This makes it difficult to ascertain the function of any one set of notebooks or its relation to other sets. Dating the notebooks also poses a problem. Annotations are often dated, showing when an entry was first made, revised, or omitted; date of purchase, and other provenance information are sometimes given. The plethora of dates and the fact that the notebooks took years to compose make precise dating impossible. Finally, a notebook of Winkler's research (see Box 13, folder 318) suggests that Streeter began his bibliography with a different structure: Part I--Texas Imprints, Part II--Material about Texas but printed elsewhere, and Part III--Mexican Imprints . This accounts for volumes labeled "Part III" being placed with material for Part II.</p>
<p>Series II, <title localtype="simple" render="italic">
<part>Part I: Texas Imprints</part>
</title> contains Margaret McLean's research on public printing in the Texas State Library and the University of Texas. Streeter also benefited from notes on Texas material at Yale taken by E. W. Winkler in 1929 and updated by Elizabeth Greene in 1939. Winkler and Greene are both mentioned in the annotations of the first draft, "Preliminary Entries" (see Boxes 15-19, folders 321-329). Following this draft is a set of notebooks with only the explanatory notes. There is another draft for each of these sets.</p>
<p>Series II, <title localtype="simple" render="italic">
<part>Part II: Mexican Imprints</part>
</title> contains a number of preliminary "checklists." Much of the early work was done by Henry Raup Wagner, Winkler, and Greene. As in Part I, there are notebooks containing entries that were omitted from the printed bibliography. Only one full draft of this section can be found in the collection, but there are "Location Reports" from Texas by Margaret McLean which are similar to the full draft.</p>
<p>Series II, <title localtype="simple" render="italic">
<part>Part III: United States and European Imprints</part>
</title>, has few preliminary notes, although there are several variations of the pre-print drafts. The first two drafts, "Preliminary Entries" and "Printer's Copy," are followed by two sets of notebooks containing the explanatory notes. Separate carbon copies of both bibliographic entries and the notes follow. Possibly the carbon sets were used for location purposes, since in one set the bibliographic entries are arranged alphabetically. Such an arrangement would facilitate checking against a library's catalog. The last set of notebooks consists of cross-references.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref313">Series III, <title localtype="simple" render="italic">
<part>Photoreproductions</part>
</title>
</ref> (Boxes 62-66) contains copies of imprints or title pages that were cited in, or considered for, the bibliography. These have been arranged by Streeter's numbering system, or in the case of omitted items, by date of publication. Streeter annotated these copies for locations and bibliographic information. Yale has added to Streeter's set of copies (See, for example, Box 63, folder 444).</p>
<p>
<ref actuate="onrequest" show="replace" target="ref438">Series IV, <title localtype="simple" render="italic">
<part>Background Material</part>
</title>
</ref>, (Boxes 66a-83) is similar to Series I, but has a broader scope than the <title localtype="simple" render="italic">
<part>Bibliography of Texas 1795-1845</part>
</title>. Series IV is comprised of correspondence, lists, notes, photoreproductions, typescripts, articles, and clippings. <title localtype="simple" render="italic">
<part>Correspondence</part>
</title> is divided into Individuals, including collectors, librarians, and researchers, and Institutions, a combination of libraries and dealers. Streeter discussed his own and other Texas collections, exchanged news on figures in the field of Texana, provided information to libraries and researchers, and asked for help on various topics related to his Texas bibliography. Within the correspondence files for Texas State Library and University of Texas Library are agreements to exchange items with Streeter. Both the individual and institutional correspondences include documentation regarding the location of items cited in <title localtype="simple" render="italic">
<part>The Bibliography of Texas</part>
</title> (see Albert Allen, John E. Harrison, and most of the library files).</p>
<p>
<title localtype="simple" render="italic">
<part>General Subject Files</part>
</title>, arranged alphabetically, contains further information on Streeter's published bibliography. The first folder of this section, "Streeter's organization of his files," provides an insight into the changing arrangement of his research material. There is information on Streeter's acquisition of major Texas collections and on Texana exhibitions which borrowed from his collection. <title localtype="simple" render="italic">
<part>Texas Maps</part>
</title> has research material used in shaping <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>. Elizabeth Greene was responsible for some of these notes. <title localtype="simple" render="italic">
<part>Texas Maps</part>
</title> and <title localtype="simple" render="italic">
<part>Texas After 1845</part>
</title> contain draft bibliographies that are similar in format to those in Series II. Bound in black looseleaf notebooks, these lists are annotated to indicate the source of entries and location information. Frequent references to Winkler show a dependence on his early work in the field. <title localtype="simple" render="italic">
<part>Texas After 1845</part>
</title> contains two substantial bibliographies of material outside the range of <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>, "Texas Biography, Autobiography, Poetry and Fiction, 1846" and "Texas Catalog, 1846-1955." In preparing "Texas Catalog", which lists post-1845 imprints, Streeter made use of Wagner's heavily annotated copy of Raines's <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title> (see the Henry Raup Wagner Papers, Yale Collection of Western Americana).</p>
<p>
<ref actuate="onrequest" show="replace" target="ref609">Series V, <title localtype="simple" render="italic">
<part>Printer's Proofs for Part III</part>
</title>
</ref>, arranged chronologically, houses galleys and page proofs with minor corrections. The initials of Howell J. Heaney and Esther Behnke appear on the various proofs.</p>
<p>Streeter and Scholars of Western Bibliography</p>
<p>The Thomas W. Streeter Papers document more than the compilation of the <title localtype="simple" render="italic">
<part>Bibliography of Texas 1795-1845</part>
</title>. Because Streeter turned to many scholars and librarians for help, the collection has information on many leading figures in western bibliography.</p>
<p>Elizabeth E. Greene, Streeter's personal librarian from 1936-47, was involved at every stage of the research, one of her main specialities being Texas maps. Malcolm D. McLean, librarian and language professor at the University of Texas at Austin from 1946-51, corresponded with Streeter on a variety of subjects. His notes on printing in Texas and the Convention of 1836 can be found in Series I, <title localtype="simple" render="italic">
<part>Part I</part>
</title>, Subject Files, while his correspondence with Streeter regarding newspapers is housed in Series I, <title localtype="simple" render="italic">
<part>Part I</part>
</title>, Newspaper Research. Additional material can be found in Series IV, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>. His expertise was particularly helpful to Streeter for the research on the decrees of Coahuila and Texas and the <title localtype="simple" render="italic">
<part>Diario del Gobierno de la Republica Mexicana 1836-45</part>
</title> (see Series I, <title localtype="simple" render="italic">
<part>Part II</part>
</title>, Subject Files, and Series IV, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>). Margaret S. McLean, Streeter's main researcher at the Texas State Library and University of Texas at Austin, probably did most of the location work for Texas newspapers (see Series I, <title localtype="simple" render="italic">
<part>Part I</part>
</title>, Newspaper Research). McLean did similar research for all three parts of <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>, and many of her reports can be found in Series II. Carlos Eduardo Castañeda, a librarian and history professor at the University of Texas at Austin, gave Streeter his notes on Mexican imprints and corresponded on the topic (see Box 7, folder 183, Box 65, folders 554-60). Howell J. Heaney, who was Streeter's private librarian from 1947-55, researched and helped draft Appendix A of Part III, "Speeches on Texas in the Congress of the United States, 1836-1845" and proofread the galleys of Part III (see Series I, <title localtype="simple" render="italic">
<part>Part III</part>
</title> , Series IV, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, and Series V). Streeter maintained friendships with other private collectors such as Edward Wallace, Clarence Wharton, and Earl Vandale, who not only wrote Streeter but also sent him transcripts of Texas imprints (see Series IV). Streeter's correspondence with Eugene Barker discusses historical figures such as Sam Houston and the Austins. E. W. Winkler, bibliographer at the University of Texas at Austin in the 1930s, contributed notes on printing in Texas, Henri Castro, and many other topics (see Box 1A-2, 7, folder 3, 12-17, 41, 49, 191-92). His correspondence with Streeter covering the period 1927-52 touches on every topic relating to Texas bibliography. Winkler's work can be found throughout this collection, but particularly in Series II. In addition to these people, there are librarians whom Streeter consulted regularly. The letters of Llarena Friend and Winnie Allen (University of Texas at Austin), Archibald Hanna (Yale University), Alice H. Lerch (Rare Book Room, Library of Congress), and Robert W. G. Vail (New York Historical Society) can be found throughout Series I, in the Subject Files, in the location correspondence of <title localtype="simple" render="italic">
<part>Part I</part>
</title> and <title localtype="simple" render="italic">
<part>Part III</part>
</title>, and in Series IV.</p>
<p>The <ref actuate="onrequest" show="replace" target="ref633">restricted fragile papers</ref> in Box 91 consist of originals for which preservation photocopies have been made.</p>
<p>Other information on Streeter's <title localtype="simple" render="italic">
<part>Bibliography of Texas 1795-1845</part>
</title> and his long relationship with Yale can be found in the archives of the Yale Collection of Western Americana, Beinecke Library. To view this material contact the curator.</p>
</scopecontent>
<controlaccess>
<title source="local">
<part localtype="uniform_title">Bibliography of Texas, 1795-1845</part>
</title>
<subject source="local">
<part localtype="topical">American newspapers</part>
<part localtype="geographic">Texas</part>
<part localtype="genre_form">Bibliography</part>
</subject>
<geogname source="local">
<part localtype="geographic">Mexico</part>
<part localtype="genre_form">Imprints</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Southwest, New</part>
<part localtype="genre_form">Imprints</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Texas</part>
<part localtype="genre_form">Bibliography</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Texas</part>
<part localtype="genre_form">Imprints</part>
</geogname>
<geogname source="local">
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Bibliography</part>
</geogname>
<geogname source="local">
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Imprints</part>
</geogname>
<occupation source="local">
<part localtype="occupation">Bibliographers</part>
<part localtype="geographic">New Jersey</part>
</occupation>
<persname>
<part localtype="agent_person">Castañeda, Carlos E., 1896-1958</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Friend, Llerena</part>
</persname>
<persname>
<part localtype="agent_person">Greene, Elizabeth Gregory, 1895-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Heaney, Howell J.</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">McLean, Malcolm Dallas, 1913-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">McLean, Margaret</part>
</persname>
<persname>
<part localtype="agent_person">Streeter, Thomas W. (Thomas Winthrop), 1883-1965</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Vandale, Earl, 1882-1952</part>
</persname>
<persname>
<part localtype="agent_person">Wagner, Henry R. (Henry Raup), 1862-1957</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Wallace, Edward S.</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Winkler, Ernest William, 1875-1960</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Texas State Library</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">University of Texas at Austin. General Libraries</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Yale University. Library</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/446502"
id="ref10"
level="series">
<did>
<unittitle>Research Files for <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>
</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>6</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">15 boxes</physdesc>
<unitdatestructured altrender="1921-61" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1921">1921</fromdate>
<todate standarddate="1961">1961</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_73646991bf1aec6abe3f8de1ec5db5d1">
<head>Scope and Contents</head>
<p>Series I, housed in Boxes 1-12, is organized into <title localtype="simple" render="italic">
<part>General Research Files</part>
</title> and the three Parts of the <title localtype="simple" render="italic">
<part>Bibliography of Texas</part>
</title>. For each Part there is a <title localtype="simple" render="italic">
<part>Subject File</part>
</title>, arranged alphabetically. <title localtype="simple" render="italic">
<part>Newspaper Research</part>
</title>, at the end of Part I, is arranged alphabetically by place of publication. <title localtype="simple" render="italic">
<part>Location Research</part>
</title>, at the end of Part I and Part III, contains correspondence arranged alphabetically by institution. Folder numbering such as "1.1" and box numbering such as "1A" have been used to identify material discovered after the collection was first processed.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/446503"
id="ref12"
level="subseries">
<did>
<unittitle>GENERAL RESEARCH FILES</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/446504"
id="ref13"
level="file">
<did>
<unittitle>Early notes</unittitle>
<unitdatestructured altrender="1921-35, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1921">1921</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58522 /locations/9"
containerid="39002091540576"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">1-1.7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446505"
id="ref14"
level="file">
<did>
<unittitle>Notes on style</unittitle>
<unitdatestructured altrender="1942-59, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1942">1942</fromdate>
<todate standarddate="1959">1959</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58522 /locations/9"
containerid="39002091540576"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1.8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446506"
id="ref15"
level="file">
<did>
<unittitle>Notes regarding Sabin entries: correspondence with Elizabeth Greene</unittitle>
<unitdatestructured altrender="1934" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">1934</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58522 /locations/9"
containerid="39002091540576"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">1.9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446507"
id="ref16"
level="file">
<did>
<unittitle>Notes regarding Sabin entries: E. W. Winkler's notes</unittitle>
<unitdatestructured altrender="1934" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934">1934</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58522 /locations/9"
containerid="39002091540576"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">1.10-1.11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446508"
id="ref17"
level="file">
<did>
<unittitle>Texas collections: descriptions of and references to</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1933, 1936, n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58522 /locations/9"
containerid="39002091540576"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">1.12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446509"
id="ref18"
level="file">
<did>
<unittitle>Bibliographic entries: miscellaneous</unittitle>
<unitdatestructured altrender="1959, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1959">1959, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58522 /locations/9"
containerid="39002091540576"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">1.13-1.16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446510"
id="ref19"
level="file">
<did>
<unittitle>Books overlooked or omitted from bibliography</unittitle>
<unitdatestructured altrender="1920, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920">1920, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">1.17</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/446511"
id="ref20"
level="subseries">
<did>
<unittitle>PART I: TEXAS IMPRINTS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/446512"
id="ref21"
level="subseries">
<did>
<unittitle>Subject Files</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/446513"
id="ref22"
level="file">
<did>
<unittitle>Anderson, Kenneth L., <title localtype="simple" render="italic">
<part>Circular</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">1.18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446514"
id="ref23"
level="file">
<did>
<unittitle>Authors: biographical data</unittitle>
<unitdatestructured altrender="1948" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1948">1948</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446515"
id="ref24"
level="file">
<did>
<unittitle>Baker & Borden (printers): accounts</unittitle>
<unitdatestructured altrender="1939, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1939">1939, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446516"
id="ref25"
level="file">
<did>
<unittitle>Baptists in Texas: correspondence with institutions</unittitle>
<unitdatestructured altrender="1947-53, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1947">1947</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">4-5.1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446517"
id="ref26"
level="file">
<did>
<unittitle>Bonnell, George, <title localtype="simple" render="italic">
<part>Topographical Description of Texas</part>
</title>
</unittitle>
<unitdatestructured altrender="1948, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1948">1948, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">6-8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446518"
id="ref27"
level="file">
<did>
<unittitle>Brazos and Galveston Rail Road Company</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446519"
id="ref28"
level="file">
<did>
<unittitle>Cazneau, Jane (McManus) Storms</unittitle>
<unitdatestructured altrender="1955" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1955">1955</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1961" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1961">1961</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">9.1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446520"
id="ref29"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Citizens of Texas</part>
</title>: David G. Burnet election circular, 1841</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446521"
id="ref30"
level="file">
<did>
<unittitle>Coleman, Robert, <title localtype="simple" render="italic">
<part>Houston Displayed</part>
</title>
</unittitle>
<unitdatestructured altrender="1953" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1953">1953</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">10.1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446522"
id="ref31"
level="file">
<did>
<unittitle>Conventions of Texas, 1832 and 1833</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446523"
id="ref32"
level="file">
<did>
<unittitle>Convention of Texas, 1836</unittitle>
<unitdatestructured altrender="1934-51, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1951">1951</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">12-17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446524"
id="ref33"
level="file">
<did>
<unittitle>Declaration of Texas Independence: signers</unittitle>
<unitdatestructured altrender="1949" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1949">1949</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1956" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1956">1956</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446525"
id="ref34"
level="file">
<did>
<unittitle>Early notes and checklists</unittitle>
<unitdatestructured altrender="1949" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1949">1949</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">18.1-18.2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446526"
id="ref35"
level="file">
<did>
<unittitle>Fisher, George, <title localtype="simple" render="italic">
<part>Memorials</part>
</title>
</unittitle>
<unitdatestructured altrender="1940" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1940">1940</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446527"
id="ref36"
level="file">
<did>
<unittitle>Freemason imprints and libraries</unittitle>
<unitdatestructured altrender="1930-54, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1930">1930</fromdate>
<todate standarddate="1954">1954</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58523 /locations/9"
containerid="39002091540584"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1a</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">20-23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446528"
id="ref37"
level="file">
<did>
<unittitle>Freemason imprints and libraries</unittitle>
<unitdatestructured altrender="1930-54, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1930">1930</fromdate>
<todate standarddate="1954">1954</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58524 /locations/9"
containerid="39002091540592"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1b</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">23.1-25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446529"
id="ref38"
level="file">
<did>
<unittitle>Freemasons of Texas</unittitle>
<unitdatestructured altrender="1956" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1956">1956</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58524 /locations/9"
containerid="39002091540592"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1b</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446530"
id="ref39"
level="file">
<did>
<unittitle>Harrisburg Town Company</unittitle>
<unitdatestructured altrender="1944" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1944">1944</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1955" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1955">1955</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58524 /locations/9"
containerid="39002091540592"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1b</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446531"
id="ref40"
level="file">
<did>
<unittitle>Martinez, Antonio: 1820s letters regarding Moses Austin</unittitle>
<unitdatestructured altrender="1960 Oct 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1960-10-17">1960 Oct 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58524 /locations/9"
containerid="39002091540592"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1b</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">27.1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446532"
id="ref41"
level="file">
<did>
<unittitle>Mina Proclamation, 1817</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1947, 1949, n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58524 /locations/9"
containerid="39002091540592"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1b</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446533"
id="ref42"
level="file">
<did>
<unittitle>Plates in Part I</unittitle>
<unitdatestructured altrender="1954-55, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1954">1954</fromdate>
<todate standarddate="1955">1955</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58524 /locations/9"
containerid="39002091540592"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1b</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">29-32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446534"
id="ref43"
level="file">
<did>
<unittitle>Playbills</unittitle>
<unitdatestructured altrender="1947" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1947">1947</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/58524 /locations/9"
containerid="39002091540592"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1b</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446535"
id="ref44"
level="file">
<did>
<unittitle>Pratt, Thomas, <title localtype="simple" render="italic">
<part>Handbill</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58524 /locations/9"
containerid="39002091540592"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1b</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446536"
id="ref45"
level="file">
<did>
<unittitle>Printing in Bexar</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1937, 1949, n.d.</unitdate>
<container altrender="/repositories/11/top_containers/58524 /locations/9"
containerid="39002091540592"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1b</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">35-36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/446537"
id="ref46"