-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1883.xml
2150 lines (2150 loc) · 128 KB
/
1883.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.speckephemera">beinecke.speckephemera</recordid>
<otherrecordid localtype="BIB">9449503</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the William A. Speck Collection of Goetheana: General Ephemera
</titleproper>
<titleproper localtype="filing">Speck (William A.) Collection of Goetheana: General Ephemera</titleproper>
<author>by Christa Sammons</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>2009</date>
<num>YCGL MSS 27</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">9449503</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-33 Broadside, 34 (Art), 35</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="3">3</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="200">200</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-09T01:55:39-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 01:55</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1883" level="collection">
<did>
<unittitle>William A. Speck collection of Goetheana : general ephemera</unittitle>
<unitid>YCGL MSS 27</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="ger">German</language>
<language langcode="ger">German</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>Chiefly in German; some materials in English.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3.13</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">14 boxes + 21 broadside folders</physdesc>
<unitdatestructured altrender="1766-1999" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1766">1766</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_a8c7e2fbe29565dfd602c951e0c6b478">The William A. Speck Collection of Goetheana: General Ephemera is an artificial collection of miscellaneous, non-book materials long associated with the Speck Collection but previously uncataloged. The collection demonstrates how Goethe and his works entered into the popular culture in the late nineteenth century and early decades of the twentieth. The collection includes a few items relating directly to Goethe, such as pens that he used and his grandfather Textor's seal, as well as items intended for the tourist market, probably purchased in the streets of Weimar around the turn of the twentieth century. Printed ephemera in the collection includes inflation money from the 1920s, or "Notgeld," printed with quotations from Goethe and illustrations from his works; advertising trade cards and other advertising materials; posters; cigar boxes; matchbooks; stationery; postcards; photographs of actors in Goethe-related roles; and wall hangings. Three-dimensional items include figurines of characters from Faust, plaques featuring Goethe's image, a fragment of his house, pressed flowers from his garden, and a lock of Schiller's hair.</abstract>
<origination label="Creator">
<persname relator="col" rules="aacr">
<part localtype="agent_person">Speck, William A. (William Alfred), 1864-1928</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_932b84fb6d48031ab27ba0f58ef6cb47">
<head>Immediate Source of Acquisition</head>
<p>Acquired at various times and from various sources.</p>
</acqinfo>
<custodhist id="aspace_5b21f889ddd60eed2bb6807f746b92ae">
<head>Custodial History</head>
<p>The Speck Collection of Goetheana: General Ephemera consists chiefly of material that has long been associated with the William A. Speck Collection of Goetheana but has never before been cataloged. A significant portion of the material came to the library as part of the Faust collection assembled by George Wilhelm Heinrich Ehrhardt and acquired by William A. Speck in 1923. While much of that collection was cataloged, some remained in various "miscellaneous" files or "object" boxes. (Ehrhardt items usually bear tiny stickers with a number in ink in a German hand.) Other items seem to have been saved by Speck or sent to him and his successors because people knew of their obsessive interest in Goethe—postage stamps, advertising trade cards, clippings, post cards. The provenance of particular items, when known, has been recorded in the list of collection contents.</p>
</custodhist>
<accessrestrict id="aspace_95ba7cea0d59c0c5ff3f91e388d731be">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_d689b794726e8375855b9c9901b6fe1f">
<head>Conditions Governing Use</head>
<p>The William A. Speck Collection of Goetheana: General Ephemera is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_64f7cf2ce1e9578f06b128ecb671060f">
<head>Preferred Citation</head>
<p>William A. Speck Collection of Goetheana: General Ephemera . Yale Collection of German Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_40201a5aa7f9933b1e6f94948cc54002">
<head>Processing Information</head>
<p>Christa Sammons, Curator of the Yale Collection of German Literature, made a preliminary contents list and wrote the description of the collection in 2009. During processing, the curator discarded a few severely damaged items of little apparent worth, and placed elsewhere a few items that had no relevance to Goethe or German literature. The material was then rehoused and the list standardized into its current form.</p>
</processinfo>
<relatedmaterial id="aspace_2207d7a29c2f779cf59f823ff123546a">
<head>Associated Materials</head>
<p>Associated Materials: William A. Speck Collection of Goetheana: Manuscripts (YCGL MSS 6), William A. Speck Collection of Goetheana: Music (YCGL MSS 9), William A. Speck Collection of Prints (YCGL MSS 11), William A. Speck collection of Goetheana: Theater Ephemera (YCGL MSS 24), and William A. Speck Collection of Goetheana: Original Artwork (YCGL MSS 26), Beinecke Rare Book and Manuscript Library.</p>
</relatedmaterial>
<bioghist id="aspace_2ff28a1a8e2b841a20c70b8f8f2a92a2">
<head>William A. Speck (1864-1928)</head>
<p>William A. Speck, the son of German immigrants, was born in New York City in 1864. A pharmacist by profession, he amassed the largest Goethe collection outside of Germany. In 1913, he and his collection came from Haverstraw, New York to Yale, where he served as curator of the Speck Collection until his death in 1928. For further biographical information on William A. Speck and a general history and description of the Speck Collection, see the finding aid for the William A. Speck Collection of Goetheana: Manuscripts (<ref actuate="onrequest"
href="http://hdl.handle.net/10079/fa/beinecke.speckmss"
linkrole="text/html"
show="new">YCGL MSS 6</ref>).</p>
</bioghist>
<scopecontent id="aspace_ab9a0d27411818627456d1aa4e22dd3d">
<head>Scope and Contents</head>
<p>The William A. Speck Collection of Goetheana: General Ephemera is an artificial collection of miscellaneous, non-book materials long associated with the Speck Collection but previously uncataloged. These are artifacts that were not considered important enough to catalog separately or to include in the William A. Speck Collection of Goetheana: Original Artwork. The quality and interest of the material vary widely. There are historical souvenirs of some significance, such as pens used by Goethe or his grandfather Textor's seal, as well as cheap tourist items, probably purchased in the streets of Weimar around the turn of the twentieth century. The inflation money printed the 1920s is oddly moving: in the throes of an economic crisis that wiped out fortunes large and small, German cities and towns adorned their "Notgeld" with quotations from Goethe and illustrations from his works. Some of the items in the collection could be loved only by the dedicated Goethe afficionado—the illustration of his coach, for instance, or the pressed flowers from his garden, gathered decades after his death.</p>
<p>If the collection has significance, it is to demonstrate how Goethe and his works entered into the popular culture in the late nineteenth century and early decades of the twentieth. From costume jewelry to lithopanes to cigar boxes and candy wrappers, Goethe must have been present to the popular imagination, as reflected in the products and advertising of the period. Certain themes predominate in the collection: Faust in his study, Gretchen at her spinning wheel, Faust and Mephisto in conversation, Faust and Gretchen walking in the garden, Goethe and Schiller together—these iconic motifs recur again and again, on matchboxes, in wall hangings, on postcards, in jokes.</p>
</scopecontent>
<arrangement id="aspace_f07b39e8db0822de58f07c69ba4f470b">
<head>Arrangement</head>
<p>Organized into five series: I. Flat Objects, Paintings, Photographs and Illustrations, 1766-1999. II. Goethe in Adverstising, 1897-1949. III. Postcards and Commercial Photographs, 1897-1956. IV. Objects, 1897-1989. V. Posters and Broadsheets, 1897-1932.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009912"
source="lcsh">
<part localtype="topical">Authors, German</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85054384"
source="lcsh">
<part localtype="topical">German literature</part>
<part localtype="temporal">18th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85054386"
source="lcsh">
<part localtype="topical">German literature</part>
<part localtype="temporal">19th century</part>
</subject>
<geogname source="local">
<part localtype="geographic">Weimar (Germany)</part>
<part localtype="topical">Intellectual life</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300047455" source="aat">
<part localtype="genre_form">Figurines</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300206687" source="aat">
<part localtype="genre_form">Notgelden</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026816" source="aat">
<part localtype="genre_form">Postcards</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300010262" source="aat">
<part localtype="genre_form">Plaques (flat objects)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300264821" source="aat">
<part localtype="genre_form">Printed ephemera</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027221" source="aat">
<part localtype="genre_form">Posters</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300022463" source="aat">
<part localtype="genre_form">Quill pens</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300028877" source="aat">
<part localtype="genre_form">Seals (artifacts)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300028886" source="aat">
<part localtype="genre_form">Souvenirs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300207616" source="aat">
<part localtype="genre_form">Trade cards </part>
</genreform>
<persname>
<part localtype="agent_person">Goethe, Johann Wolfgang von, 1749-1832</part>
</persname>
<persname>
<part localtype="agent_person">Goethe, Johann Wolfgang von, 1749-1832 (Characters)</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Goethe, Johann Wolfgang von, 1749-1832 (Faust, Illustrations)</part>
</persname>
<persname>
<part localtype="agent_person">Schiller, Friedrich, 1759-1805</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Speck, William A. (William Alfred), 1864-1928</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Textor, Johann Jost, 1739-1792</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Goethe-Haus (Frankfurt am Main, Germany)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/776785"
id="ref13"
level="series">
<did>
<unittitle>Flat Objects, Paintings, Photographs and Illustrations</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1766-1999" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1766">1766</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_534fc3de7266a0b599a8d9b6ee2fa325">(3 boxes)</physdesc>
</did>
<scopecontent id="aspace_3e37beca84174841fed881e1ac6ff594">
<head>Scope and Contents</head>
<p>Series I. consists of two-dimensional printed ephemera, photographs and paintings relating to Goethe and Schiller, as well as flat wall hangings and plaques, leaves from Goethe and Schiller's coffins, a swatch of Schiller's waistcoat, pens used by Goethe, and an ivory carving of Schiller.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/776786"
id="ref15"
level="file">
<did>
<unittitle>German inflation money ("Notgeld")</unittitle>
<unitdatestructured altrender="1918-1923" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1918">1918</fromdate>
<todate standarddate="1923">1923</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_4593cfbe6b3189d28c37ab929cfecc65">Circa 170 items, including duplicates</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">1-3</container>
</did>
<scopecontent id="aspace_e181b12efd846d6c624a639cf72b0d36">
<head>Scope and Contents</head>
<p>Currency printed by German cities during the inflation, all with quotations from Goethe or images relating to Goethe or his works Arranged partly by place of origin, partly by theme.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776787"
id="ref18"
level="file">
<did>
<unittitle>Writing paper with Goethe motifs</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">4</container>
</did>
<scopecontent id="aspace_50839b386e251dabd37a7dff0e82d0d1">
<head>Scope and Contents</head>
<p>One set, commemorating the centenary of Goethe's death in 1932, features photographs of Goethe sites and artifacts as well as a few contemporary photographs of members of Die Gesellschaft der Freunde Weimars, including one showing Elisabeth Förster-Nietzsche.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776788"
id="ref20"
level="file">
<did>
<unittitle>Paper seals ("Siegelmarken")</unittitle>
<unitdatestructured altrender="1905-1949" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1905">1905</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_dc87a3baa1e5eca914780cb9838dcaf8">10 items</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">5</container>
</did>
<scopecontent id="aspace_07d3aed9758fd22f63a5343ac41c8a77">
<head>Scope and Contents</head>
<p>Seals intended to be affixed to letter envelopes, with themes relating to Goethe and Schiller.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776789"
id="ref23"
level="file">
<did>
<unittitle>Postage stamps, postage cancellations</unittitle>
<unitdatestructured altrender="circa 1905-1999"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1905">1905</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_6b6aeb76e345840298e59321b1d7ad48">Circa 25 items</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">6</container>
</did>
<scopecontent id="aspace_de076f917ef7e58dc1f31443114d496e">
<head>Scope and Contents</head>
<p>Assorted single stamps, sheets, and stamped envelopes with Goethe and Schiller themes.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776790"
id="ref26"
level="file">
<did>
<unittitle>Coffin leaves</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">7</container>
</did>
<acqinfo id="aspace_0b1aa050a39e837496f6829a90002381">
<head>Immediate Source of Acquisition</head>
<p>Provenance: Accompanied by a note in William A. Speck's hand, "These leaves Frank Claudy, translator of 'Faust,' brought from Weimar. They were sent to me by his son." (Frank Claudy, 1844-1919).</p>
</acqinfo>
<scopecontent id="aspace_ab276398221b8956cb738f9fb0bfbb43">
<head>Scope and Contents</head>
<p>Ivy leaf from Schiller's coffin, 2 bay leaves from Goethe's coffin, and an unidentified pressed flower</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776791"
id="ref29"
level="file">
<did>
<unittitle>Bookplates</unittitle>
<unitdatestructured altrender="1932-1958" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1958">1958</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_b11f280fb4050d38ded3fe3e294cfc2c">15 items</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">8</container>
</did>
<scopecontent id="aspace_1887d82efe12e1b52bb7afc33313a364">
<head>Scope and Contents</head>
<p>Bookplates with Goethe images or content, including a clipped facsimile of Goethe's book label and a commemorative set of bookplates from the Goethe year 1932.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776792"
id="ref32"
level="file">
<did>
<unittitle>Goethe grapes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_3750366bd96659d717af3cf6fd4c45ef">30 x 22 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">9</container>
</did>
<scopecontent id="aspace_31453101851a4ace83b8c4370452fd96">
<head>Scope and Contents</head>
<p>Colored print depicting the grape variety named for Goethe, one of several varieties created by E. S. Rogers in the mid nineteenth century, known as Rogers' Hybrids.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776793"
id="ref35"
level="file">
<did>
<unittitle>Paper towels</unittitle>
<unitdatestructured altrender="1998" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1998">1998</datesingle>
</unitdatestructured>
<physdesc id="aspace_334809d0b69073ceac404b2de4171ba8">3 sheets</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">10</container>
</did>
<acqinfo id="aspace_438754f6f0cd4e2320632685443ee3e9">
<head>Immediate Source of Acquisition</head>
<p>Provenance: Because the towels were apparently not distributed locally in Connecticut, the curator wrote to Georgia Pacific and asked for a roll of them, which was kindly sent by the manufacturer.</p>
</acqinfo>
<scopecontent id="aspace_6ef5b14257445e2433ec5c6a1fb2399c">
<head>Scope and Contents</head>
<p>Paper towels distributed under the Sparkle label by Georgia Pacific, printed with the quotation "Nothing is worth more than this day," attributed to Goethe. With an explanatory article in photocopy, "Goethe on a roll."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776794"
id="ref39"
level="file">
<did>
<unittitle>Plaques for portraits</unittitle>
<unitdatestructured altrender="1956" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1956">1956</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">11</container>
</did>
<scopecontent id="aspace_d1da39ab33db975d034c8486bce35103">
<head>Scope and Contents</head>
<p>Brass plaques originally designed for the Oswald May portraits of Goethe and Wieland, now hanging in the north corridor, court level, of the Beinecke Library.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776795"
id="ref41"
level="file">
<did>
<unittitle>Paper ephemera related to Goethe/Schiller coins and medals, early twentieth century</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">12-13</container>
</did>
<relatedmaterial id="aspace_f74a4d71b253a86821f19c3e3ed7a80f">
<head>Related Archival Materials note</head>
<p>Also stored in: Oversize, Box 10</p>
</relatedmaterial>
<scopecontent id="aspace_d93eb4daa2bab6296ef3ebad635ff602">
<head>Scope and Contents</head>
<p>Advertisements, rubbings, illustrations, photographs; some pieces relate to items in the Speck Collection.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776796"
id="ref44"
level="file">
<did>
<unittitle>Calling cards and coats of arms</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_b096e93e8e438c055d6ef37a9f99be5a">5 items</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">14</container>
</did>
<scopecontent id="aspace_ba74ce79da421d8da8cd6dc14a5a780a">
<head>Scope and Contents</head>
<p>Includes calling cards of Walther von Goethe and Wolfgang Freiherr von Goethe</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776797"
id="ref47"
level="file">
<did>
<unittitle>Textor, Johann Jost (1739-92). Printed ribbon celebrating his marriage to Maria Magdalena Möller on 17 February 1766</unittitle>
<unitdatestructured altrender="1766" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1766">1766</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1936" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1936">1936</datesingle>
</unitdatestructured>
<physdesc id="aspace_5505fe621b90ed32f80d617afffd14b4">1 letter (6 pages on 3 leaves), and 1 ribbon</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">15</container>
</did>
<acqinfo id="aspace_5b832fa801f098a4de0dd05b51effa72">
<head>Immediate Source of Acquisition</head>
<p>Provenance: old note says that this was placed on deposit by Kurt Textor.</p>
</acqinfo>
<scopecontent id="aspace_e79c609b30b3bdeb5299690424ca678e">
<head>Scope and Contents</head>
<p>Pink ribbon, knotted in the middle, with four printed panels. Johann Jost Textor was Goethe's maternal uncle. With an ALS from Maria Textor to Carl Schreiber, 27 November 1936, describing a family ring and her current difficulties.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776798"
id="ref51"
level="file">
<did>
<unittitle>Tintner, Hans. Die Jugendgeliebte (Goethes Frühlungstraum)</unittitle>
<unitdatestructured altrender="circa 1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">circa 1935</datesingle>
</unitdatestructured>
<physdesc id="aspace_90c7b309e73c264c614dc56dee57b065">15 photographs (23 x 29 cm.)</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">16</container>
</did>
<scopecontent id="aspace_587a3a457cd3fb7f4cd1bcece460eda6">
<head>Scope and Contents</head>
<p>15 photographs from the 1930s film, written and directed by Tintner (Atlantas-Film, Berlin)</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776799"
id="ref54"
level="file">
<did>
<unittitle>Schiller, Friedrich. A swatch from his last waistcoat</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_ce803433336fbc977b70c24d461b57f1">4 x 8 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">17</container>
</did>
<scopecontent id="aspace_007cb671a4c76356f03973dd1153034d">
<head>Scope and Contents</head>
<p>Lilac-colored silk cloth, with a signed authentication by Schiller's youngest daughter, Emilie von Gliechen Russwurm</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776800"
id="ref57"
level="file">
<did>
<unittitle>Goethe, Johann Wolfgang von. Three pens used by him</unittitle>
<unitdatestructured altrender="1818" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1818">1818</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">18</container>
</did>
<scopecontent id="aspace_3cc301de219793e0f469a66c94e4778c">
<head>Scope and Contents</head>
<p>Three quills in a box with slipcase, with the inscription "Drey Federn, gebraucht bey Festgedichten Dec. 1818 Berga a.d. Ilm aufbewahrt durch Herren Schütz anerkannt Weimar Dec. 1827 von Goethe"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776801"
id="ref59"
level="file">
<did>
<unittitle>Faust and Mephistopheles. Metal cutout with etched lines</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_b77834ad130eb05e64c9c8f2a70d3fb8">Irregular shape, ca. 13 x 14 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776802"
id="ref61"
level="file">
<did>
<unittitle>Illustrations of miscellaneous Goethe-related items, including china, a ring, his coach</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89842 /locations/4051"
containerid="39002091491077"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776803"
id="ref62"
level="file">
<did>
<unittitle>Gretchen and Faust. Ornate metal wall hanging</unittitle>
<unitdatestructured altrender="1898" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1898">1898</datesingle>
</unitdatestructured>
<physdesc id="aspace_e4466b0cd73910ccb1461875cbfcb364">Irregular shape, ca. 9 x 16 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89843 /locations/4051"
containerid="39002091491085"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776804"
id="ref64"
level="file">
<did>
<unittitle>Faust and Gretchen in the garden. Round plaque, non-metal</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_3ed31a2da6e0cfce23ffb7dbdfedcc9b">10 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89843 /locations/4051"
containerid="39002091491085"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776805"
id="ref66"
level="file">
<did>
<unittitle>Gretchen (?). Intaglio ceramic plaque, oblong</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_c78f9e44199afe06ce50249a8608940d">12 x 16 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89843 /locations/4051"
containerid="39002091491085"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776806"
id="ref68"
level="file">
<did>
<unittitle>Gretchen at the spinning wheel. Reproduction of a painting, mounted in glass</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_6b88ec2dfe7dde0388aad760294c113a">12 x 16 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89843 /locations/4051"
containerid="39002091491085"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776807"
id="ref70"
level="file">
<did>
<unittitle>Faust in his study. Oil painting on wood after the frontispiece to Goethe's <title localtype="simple" render="italic">
<part>Faust. Ein Fragment</part>
</title>(1790), itself an adaptation of Rembrandt by Lips.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_728bac13c160f14024109ff10e4d9599">21 x 16cm</physdesc>
<container altrender="/repositories/11/top_containers/89843 /locations/4051"
containerid="39002091491085"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776808"
id="ref72"
level="file">
<did>
<unittitle>Dietrich, J. E. Gretchen im Kerker. Oil painting on wood</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_9afcdce1b464fd16f133d8e23916907c">24 x 20 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89843 /locations/4051"
containerid="39002091491085"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776809"
id="ref74"
level="file">
<did>
<unittitle>Faust and Gretchen in the garden. Painting on glass</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_eee99efc3a8416cdd7d1bc120949c3f8">25 x 20 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89843 /locations/4051"
containerid="39002091491085"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref74_c2" localtype="folder" parent="aspace_ref74_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776810"
id="ref76"
level="file">
<did>
<unittitle>Schweninger, Carl, the younger (1854-1903). Faust and Margarete, reproduction of an oil painting, on board</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_88e9f7ed57927ceb6f6952c978a3eefb">32 x 20 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89843 /locations/4051"
containerid="39002091491085"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776811"
id="ref78"
level="file">
<did>
<unittitle>Reinhart, Johann Christian, <emph render="italic">Schiller in Carlsbad</emph>, engraving after an original drawing, showing Schiller sitting on a mule, smoking a pipe</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_0d305409d7f2717411bb21b90e05c3cb">19 x 13 cm.</physdesc>
<container altrender="/repositories/11/top_containers/89843 /locations/4051"
containerid="39002091491085"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776812"
id="ref80"
level="file">
<did>
<unittitle>Faust and Gretchen embracing. Two lithophanes, one alabaster (?) in a wood frame, the other dark blue plastic-like material</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_3850ae10f6bfa58e2721a9ef0eecb66d">17 x 20 cm.</physdesc>
</did>
<originalsloc id="aspace_a5fb5cad73d07630b166977318f6e1c1">
<head>Existence and Location of Originals</head>
<p>Stored in: Oversize, Box 10</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/776813"
id="ref83"
level="file">
<did>
<unittitle>Faust and Gretchen in the garden, oil painting</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_2d8c6055710dd7490461e1d6dbfc7b27">15" x 10"</physdesc>
</did>
<originalsloc id="aspace_1fed8ddb974ae1dbc97da137fe9f8916">
<head>Existence and Location of Originals</head>
<p>Stored in: Oversize, Box 11</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/776814"
id="ref86"
level="file">
<did>
<unittitle>Faust and Gretchen in the street, colored print</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physdesc id="aspace_ab0106b3d11e358c5201e6a99dde91c5">16" x 12"</physdesc>
</did>
<originalsloc id="aspace_634b1964d4713518a5783e2b41431b57">
<head>Existence and Location of Originals</head>
<p>Stored in: Oversize, Box 10</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/776815"
id="ref89"
level="file">
<did>
<unittitle>Four photographs of a staging of Christian Dietrich Grabbe's <title localtype="simple" render="italic">
<part>Don Juan und Faust</part>
</title>, Meiningen</unittitle>
<unitdatestructured altrender="1896" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1896">1896</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89844 /locations/4051"
containerid="39002091491093"
id="aspace_ref89_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref89_c2" localtype="folder" parent="aspace_ref89_c1">30-31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776816"
id="ref90"
level="file">
<did>
<unittitle>Carving of Schiller's head, in profile, ivory, mounted in box</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89844 /locations/4051"
containerid="39002091491093"
id="aspace_ref90_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref90_c2" localtype="folder" parent="aspace_ref90_c1">32</container>
</did>
<custodhist id="aspace_0d6ec0e494e79890320a6f2fbd5b6e13">
<head>Custodial History</head>
<p>Provenance: "Bequeathed by Mrs. Mary D. Turlay – received from Mrs. David T. Mackie (through Tiffany & Co) Nov. 26, 1921" Acquired in Heidelberg in the 1870s by Mrs. Mackie's mother.</p>
<p>Accompanied by letter from Isabel Mackie to Mr. Dana, 1921 November 22</p>
</custodhist>
</c>
</c>
<c altrender="/repositories/11/archival_objects/776817"
id="ref93"
level="series">
<did>
<unittitle>Goethe in Advertising</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="1897-1949" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1897">1897</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_07057c232f039c6c4e3b3f8b079ceade">(2 boxes)</physdesc>
</did>
<scopecontent id="aspace_e1cc8030e7d2e1fa805e70d4abd60c62">
<head>Scope and Contents</head>
<p>A collection of labels, wrappers, clippings, advertising trade cards and other ephemera using Goethe quotations or motifs from his works (chiefly Faust) in advertising and the promotion of products. A few pieces depict Schiller or Schiller and Goethe. The material dates overwhelmingly from the late nineteenth and early twentieth centuries.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/776818"
id="ref95"
level="file">
<did>
<unittitle>Drinks, mineral waters & healthy potions</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89844 /locations/4051"
containerid="39002091491093"
id="aspace_ref95_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref95_c2" localtype="folder" parent="aspace_ref95_c1">33</container>
<daoset altrender="/repositories/11/digital_objects/237238">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/33080869"
identifier="oid:33080869"
linktitle="78 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/33080870/full/!150,150/0/default.jpg"
identifier="oid:33080869"
linktitle="1r"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/33080869"
identifier="oid:33080869"
linktitle="1r"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Drinks, mineral waters & healthy potions</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_f7390886255f6815cb6c4890af6ba1fa">
<head>Scope and Contents</head>
<p>Including Sanatogen tonic, Henkell Trocken, and various wines</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776819"
id="ref97"
level="file">
<did>
<unittitle>Cigars and smoking</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/776820"
id="ref98"
level="file">
<did>
<unittitle>Cigar box labels, cigar bands, advertisements, matchbook</unittitle>
<unitdatestructured altrender="1949, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1949">1949, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89844 /locations/4051"
containerid="39002091491093"
id="aspace_ref98_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref98_c2" localtype="folder" parent="aspace_ref98_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776821"
id="ref99"
level="file">
<did>
<unittitle>Two wooden cigar boxes ("Goethe" brand and "Margarethe" brand), a cigarette box, and two wax match boxes from around 1900 featuring scenes from Faust</unittitle>
<unitdatestructured altrender="circa 1900, undated"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1900">circa 1900, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89845 /locations/4051"
containerid="39002091491150"
id="aspace_ref99_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/776822"
id="ref100"
level="file">
<did>
<unittitle>Chocolate and other sweets</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89844 /locations/4051"
containerid="39002091491093"
id="aspace_ref100_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref100_c2" localtype="folder" parent="aspace_ref100_c1">35</container>
</did>
<scopecontent id="aspace_827d282c7afaf82b44d832e535d52a1e">
<head>Scope and Contents</head>
<p>Including Chocolade Marke "Gretchen" (Moser-Roth, Stuttgart) and Mignon Speise-Schokolade (David Söhne A,-G., Halle)</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776823"
id="ref102"
level="file">
<did>
<unittitle>Restaurants, hotels, and guesthouses</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89844 /locations/4051"
containerid="39002091491093"
id="aspace_ref102_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref102_c2" localtype="folder" parent="aspace_ref102_c1">36</container>
</did>
<scopecontent id="aspace_abfef422fff9b5715e8be4a82f7a52dd">
<head>Scope and Contents</head>
<p>Including the Goethe-Stube at the Hotel "goldener Adler" (Innsbruck) and various uses of Auerbachs Keller as a motif</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/776824"
id="ref104"
level="file">
<did>
<unittitle>Books, bookstores, bookplates</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89844 /locations/4051"
containerid="39002091491093"
id="aspace_ref104_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref104_c2" localtype="folder" parent="aspace_ref104_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/776825"
id="ref105"
level="file">
<did>
<unittitle>Clothing, shoes, perfume, etc.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/89844 /locations/4051"
containerid="39002091491093"
id="aspace_ref105_c1"
label="Mixed Materials"