-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1874.xml
5259 lines (5259 loc) · 328 KB
/
1874.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.winkler">beinecke.winkler</recordid>
<otherrecordid localtype="BIB">4650260</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Winkler Collection
</titleproper>
<titleproper localtype="filing">Winkler Collection</titleproper>
<author>by Beinecke Staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>December 2000</date>
<num>YCGL MSS 14</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">4650260</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-3</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="8">8</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="181">181</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-09T01:55:12-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/1874" level="collection">
<did>
<unittitle>Winkler collection</unittitle>
<unitid>YCGL MSS 14</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="ger">German</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.26</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured altrender="1748-1854" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1748">1748</fromdate>
<todate standarddate="1854">1854</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_c439b506ab2af137e18cc925b57727ed">The collection consists chiefly of letters to Winkler, Elisa von der Recke, and others. Also included are manuscripts of some original poems, a few printed works by and about Winkler, copies of documents pertaining to Winkler's family, including Festschriften in his honor, and photographic reproductions of portraits and drawings. Correspondents include H. C. (Hans Christian) Andersen, Sarah Austin, Ludwig Börne, Eduard Devrient, Johann Peter Eckermann, Paul Johann Anselm Ritter von Feuerbach, Christian Fürchtegott Gellert, Johann Wilhelm Ludewig Gleim, Ottilie von Goethe, Karl Gutzkow, E. T. A. Hoffman, August Wilhelm Iffland, Friedrich Maximilian Klinger, August von Kotzebue, Johann Caspar Lavater, Charles Joseph, prince de Ligne, Schnorr von Carolsfeld, Ludwig Tieck, Carl Maria von Weber.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Hell, Theodor, 1775-1856</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_f0716a76b82e357046380676a5e80bb9">
<head>Immediate Source of Acquisition</head>
<p>Gift of Mr. and Mrs. Alfred E. Hamill, 1938.</p>
</acqinfo>
<userestrict id="aspace_0db99f484a4f42d41388196e595ed844">
<head>Conditions Governing Use</head>
<p>The Winkler Collection is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_cd5ad9bdd0b3815817a6deb2ce36adf1">
<head>Preferred Citation</head>
<p>Winkler Collection. Yale Collection of German Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_38c93c6dcd3b08697480ba7ad7e6cd1c">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_6a0e7d8e7f6576423b8a71fc6502a226">
<head>Processing Information</head>
<p>This finding aid was produced from a previously existing card set in the Manuscripts Catalog, or from another inventory. All pertinent bibliographical information has been retained. If the collection also contains unlisted or unsorted material, this has been noted in the box-and-folder list.</p>
</processinfo>
<bioghist id="aspace_37db2d549d02f79bf8986b10045c5e7a">
<head>KARL GOTTFRIED THEODOR WINKLER (1775-1856)</head>
<p>Winkler, who used the pseudonym Theodor Hell, was born on 9 February 1775 near Dresden, the son of a clergyman. He studied law and history at Wittenberg and then returned to Dresden, where he held various positions and maintained a lifestyle rich in activities and connections. In 1796 he was appointed to the city court, and beginning in 1801 held positions of increasing responsibility with the city archive. When Saxony came under Russian control as a result of the Napoleonic wars, Winkler became a government secretary, edited government publications, and attained the rank of Russian privy councilor. By 1814 he was also active in the Dresden theater, rising eventually to vice-director of the court theater. His service to the German stage included his many translations of plays and operas, from French, English, Italian, and Portuguese, all languages in which he was well versed. He also wrote original prose and dramatic works, most of them now forgotten, and edited and published numerous periodicals, some of them influential. Among these publications were the literary annuals Penelope (1811-48) and Dramatisches Vergissmeinnicht (1824-49); the theater monthly Tagebuch der deutschen Bühnen (1815-35); and the newspaper the Dresden Abendzeitung, of which he was the editor from 1817-43. Winkler died in Dresden on 24 September 1856.</p>
</bioghist>
<bioghist id="aspace_6f1e04f63e2b7d96f373530f598ad1da">
<head>ELISA VON DER RECKE (1754-1833)</head>
<p>Born in Schönburg in the former Baltic province of Courland in 1756, the Komtesse Elisabeth von Medem was married as a teenager to the Baron von der Recke but divorced him several years later. She published poetry (Geistliche Lieder, 1780, Gedichte, 1806), autobiographical works, and travel writings, but was especially well known for her role in exposing the Italian adventurer Cagliostro, about whom she published a book in 1787. After her divorce, she travelled for many years, staying with friends, visiting spas, and taking part in court life in Berlin and Warsaw. From 1804 onward, the poet Christoph August Tiedge was her companion; in later years, they settled in Dresden, where the Countess Elisa died in 1833.</p>
</bioghist>
<scopecontent id="aspace_7fbdb4454cf98667fc36e417c550708e">
<head>Scope and Contents</head>
<p>The Winkler Collection consists chiefly of letters to Karl Gottfried Theodor Winkler, Elisa von der Recke, and others, 1748-1854. Also included are manuscripts of some original poems; a few printed works by and about Winkler; copies of documents pertaining to Winkler's family, including Festschriften in his honor, and photographs.</p>
<p>The Collection is organized into <ref actuate="onrequest" show="replace" target="ref12">Correspondence</ref>,<ref actuate="onrequest" show="replace" target="ref417">Writings</ref>, <ref actuate="onrequest" show="replace" target="ref471">Printed Material and Photographs</ref>, and <ref actuate="onrequest" show="replace" target="ref490">Martin Schütze's notes on Winkler</ref>. Correspondence is further organized into Letters to Winkler, Letters to Elisa von der Recke, Lavater-von der Recke, Lavater-Wieland, Letters to Heinrich Hase, Letters to George Friedrich Walther, and From and to Various Authors A-Z. Writings is further organized into Works and Letters by Winkler and Works, etc. by Various Authors.</p>
<p>Among the writers are Hans Christian Andersen, Sarah Austin, Ludwig Börne, David d'Angers, Eduard Devrient, Johann Peter Eckermann, Paul Johann Anselm Ritter von Feuerbach, Christian Fürchtegott Gellert, Johann Wilhelm Ludewig Gleim, Ottilie von Goethe, Karl Ferdinand Gutzkow, E. T. A. Hoffmann, August Wilhelm Iffland, Friedrich Maximilian Klinger, August Friedrich Ferdinand von Kotzebue, Johann Caspar Lavater, Charles Joseph, prince de Ligne, Julius Schnorr von Carolsfeld, Ludwig Tieck, and Karl Maria von Weber. The Lavater - von der Recke correspondence was printed by Martin Schütze in Germanic Review, 1932, v. 7, p. 1-31, 201-214. There are transcriptions of all letters, and only a few of the many enclosures mentioned in the letters are present.</p>
</scopecontent>
<controlaccess>
<subject source="local">
<part localtype="topical">Authors, German</part>
<part localtype="temporal">19th century</part>
</subject>
<persname>
<part localtype="agent_person">Andersen, H. C. (Hans Christian), 1805-1875</part>
</persname>
<persname>
<part localtype="agent_person">Austin, Sarah, 1793-1867</part>
</persname>
<persname>
<part localtype="agent_person">Börne, Ludwig, 1786-1837</part>
</persname>
<persname>
<part localtype="agent_person">Devrient, Eduard, 1801-1877</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Eckermann, Johann Peter, 1792-1854</part>
</persname>
<persname>
<part localtype="agent_person">Feuerbach, Anselm, Ritter von, 1775-1833</part>
</persname>
<persname>
<part localtype="agent_person">Gellert, Christian Fürchtegott, 1715-1769</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Gleim, Johann Wilhelm Ludewig, 1719-1803</part>
</persname>
<persname>
<part localtype="agent_person">Goethe, Ottilie von, 1796-1872</part>
</persname>
<persname>
<part localtype="agent_person">Gutzkow, Karl, 1811-1878</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Hell, Theodor, 1775-1856</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822</part>
</persname>
<persname>
<part localtype="agent_person">Iffland, August Wilhelm, 1759-1814</part>
</persname>
<persname>
<part localtype="agent_person">Klinger, Friedrich Maximilian, 1752-1831</part>
</persname>
<persname>
<part localtype="agent_person">Kotzebue, August von, 1761-1819</part>
</persname>
<persname>
<part localtype="agent_person">Lavater, Johann Caspar, 1741-1801</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Ligne, Charles Joseph, prince de, 1735-1814</part>
</persname>
<persname>
<part localtype="agent_person">Recke, Elisa von der, 1754-1833</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Schnorr von Carolsfeld, Julius, 1794-1872</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Schütze, Martin, 1866-1950</part>
</persname>
<persname>
<part localtype="agent_person">Tieck, Ludwig, 1773-1853</part>
</persname>
<persname>
<part localtype="agent_person">Weber, Carl Maria von, 1786-1826</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/772548"
id="ref12"
level="series">
<did>
<unittitle>Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/772549"
id="ref13"
level="subseries">
<did>
<unittitle>LETTERS TO WINKLER</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/772550"
id="ref14"
level="file">
<did>
<unittitle>Ahlefeld, Charlotte (von Seebach) von, 1781-1849. ALS, Schleswig</unittitle>
<unitdatestructured altrender="1818 Oct 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1818-10-21">1818 Oct 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
<scopecontent id="aspace_f546f2e4c729222984acb700d8b9cf91">
<head>Scope and Contents</head>
<p>1 p. Submitting a contribution for the Abendzeitung</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772551"
id="ref16"
level="file">
<did>
<unittitle>Anderson, Hans Christian, 1805-1875. ALS, Berlin</unittitle>
<unitdatestructured altrender="1844 Jul 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1844-07-30">1844 Jul 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">2</container>
</did>
<scopecontent id="aspace_634f20e9b356561565b249fb3cc048c5">
<head>Scope and Contents</head>
<p>1 p., with address Submitting his drama Der Mulatt in a German version by an unnamed translator</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772552"
id="ref18"
level="file">
<did>
<unittitle>Angley, Louis, 1788-1835. ALS, Berlin</unittitle>
<unitdatestructured altrender="1825 Nov 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-11-09">1825 Nov 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">3</container>
</did>
<scopecontent id="aspace_2c35cceaf9e6aed3f6cf61a452098310">
<head>Scope and Contents</head>
<p>1 p., with address Concerning payment for Ziegler's Der weiblicher Husar and inquiring about submitting his own farce, Schüler- schwänke</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772553"
id="ref20"
level="file">
<did>
<unittitle>Arvidsson, Adolf Iwar, 1791-1858. ALS, Stockholm</unittitle>
<unitdatestructured altrender="1825 Jun 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-06-21">1825 Jun 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">4</container>
</did>
<scopecontent id="aspace_f22c4ac26bf8b108e67957f5a7c3c556">
<head>Scope and Contents</head>
<p>3 p. Librarian at the Royal Library Stockholm. Offering to send literary reports on Sweden, Finland and Russia</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772554"
id="ref22"
level="file">
<did>
<unittitle>Atawinsky, Stanislaus. ALS, Breslau</unittitle>
<unitdatestructured altrender="1826 Feb 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-02-05">1826 Feb 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">5</container>
</did>
<scopecontent id="aspace_84c331ea298c14da7ab86f4c5d38303c">
<head>Scope and Contents</head>
<p>1 p. Actor</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772555"
id="ref24"
level="file">
<did>
<unittitle>Birch, Christian, 1794-1868. ALS, München</unittitle>
<unitdatestructured altrender="1825 Apr 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-04-19">1825 Apr 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">6</container>
</did>
<scopecontent id="aspace_18f6cf9cf68947fd1d110880e84a4650">
<head>Scope and Contents</head>
<p>1 p. Submitting a note for the Abendzeitung correcting a statement concerning his wife Charlotte Birch-Pfeiffer, 1800- 1868</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772556"
id="ref26"
level="file">
<did>
<unittitle>Blumenhagen, Wilhelm, 1781-1839. LS, Hannover</unittitle>
<unitdatestructured altrender="1836 Apr 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1836-04-22">1836 Apr 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
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>
<scopecontent id="aspace_4a42304e875af4d0225334ebf7adce8a">
<head>Scope and Contents</head>
<p>3 p. Giving advice and recommendation for Winkler's trip to England and promising a report for publication in the Vespertina</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772557"
id="ref28"
level="file">
<did>
<unittitle>Blumroeder, August von, 1776-1860. ALS, Sonderhausen</unittitle>
<unitdatestructured altrender="1818 Nov 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1818-11-01">1818 Nov 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">8</container>
</did>
<scopecontent id="aspace_264c62622b96b5999e6cf334be485581">
<head>Scope and Contents</head>
<p>3 p. Acknowledging Winkler's gift of the periodical Komus with some of his poems and sending him some contributions for the Komus</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772558"
id="ref30"
level="file">
<did>
<unittitle>Boettiger, Karl August, 1760-1835. ALS</unittitle>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">9</container>
</did>
<scopecontent id="aspace_7aa221e05144c04a8ffff9891c415234">
<head>Scope and Contents</head>
<p>1 p. Signed: B. "Boettiger" pencilled at foot of letter. Writer is unable to contribute theater reviews on account of serious eye trouble</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772559"
id="ref32"
level="file">
<did>
<unittitle>Bonfigli, Antonio. ALS, Lucca</unittitle>
<unitdatestructured altrender="1825 May 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-05-25">1825 May 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">10</container>
</did>
<scopecontent id="aspace_cce3912ad613174f14007afd246e8f24">
<head>Scope and Contents</head>
<p>1 p. Opera singer at the Dresden theater. Begs to be excused; had to leave Italy where his father had died suddenly. In Italian</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772560"
id="ref34"
level="file">
<did>
<unittitle>Brede, Auguste. ALS, Stuttgart</unittitle>
<unitdatestructured altrender="1825 Aug 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-08-20">1825 Aug 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">11</container>
</did>
<scopecontent id="aspace_cf147d28a8661d375bb7802572ee8330">
<head>Scope and Contents</head>
<p>4 p. Actress and ballet dancer. She is embarking on a tournée of German theaters and asks Winkler to mention her plan in his newspaper</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772561"
id="ref36"
level="file">
<did>
<unittitle>Breithaupt, Johann Friedrich August, 1791-1873. ALS, Freiberg</unittitle>
<unitdatestructured altrender="1825 Oct 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-10-10">1825 Oct 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">12</container>
</did>
<scopecontent id="aspace_4b1d82e2fa962fc65ae78b0ebe597278">
<head>Scope and Contents</head>
<p>1 p. Mineralogist. Submitting contributions for the Abendzeitung</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772562"
id="ref38"
level="file">
<did>
<unittitle>Bülow, Karl Eduard von, 1803-1853. ALS, Dresden</unittitle>
<unitdatestructured altrender="1830 Jun 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-06-29">1830 Jun 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">13</container>
</did>
<scopecontent id="aspace_141e2670ffa744b2be4501d5a1aaf345">
<head>Scope and Contents</head>
<p>1 p. Editor of Friedrich Ulrich Ludwig Schröder's Dramatische Werke, 1834, 4 volumes. Concerns several of Schröder's works</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772563"
id="ref40"
level="file">
<did>
<unittitle>Castelli, Ignaz Franz, 1781-1862. ALS, Wien</unittitle>
<unitdatestructured altrender="1820 May 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1820-05-12">1820 May 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/772564"
id="ref41"
level="file">
<did>
<unittitle>Chezy, Wilhelmine Christiane (von Klencke) von, 1786-1856. 4 ALS</unittitle>
<unitdatestructured altrender="1818-25" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1818">1818</fromdate>
<todate standarddate="1825">1825</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">15</container>
</did>
<scopecontent id="aspace_b90328195679e5455b2e797c5ff34489">
<head>Scope and Contents</head>
<p>Concerning publication of her contributions in the Abendzeitung and the Vespertina; mention of her text to Karl Maria von Weber's opera Euryanthe</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772565"
id="ref43"
level="file">
<did>
<unittitle>Cleever, J.H. ALS, Hannover</unittitle>
<unitdatestructured altrender="1826 Oct 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-10-18">1826 Oct 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">16</container>
</did>
<scopecontent id="aspace_1d7219e8fe280ae84f667fe2007bba28">
<head>Scope and Contents</head>
<p>1 p. Submits announcement for printing in the Abendzeitung; mentions Weber's opera Oberon</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772566"
id="ref45"
level="file">
<did>
<unittitle>Contessa, Karl Wilhelm Salice, 1777-1825. ALS, Sellendorf</unittitle>
<unitdatestructured altrender="1817 Nov 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1817-11-03">1817 Nov 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">17</container>
</did>
<scopecontent id="aspace_66b473f37f88fe9bd1a4d3ffd54f064c">
<head>Scope and Contents</head>
<p>3 p. Submitting the ms. of a farce and poem (not present) for publication in the Abendzeitung; refers to a contribution for the periodical Penelope</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772567"
id="ref47"
level="file">
<did>
<unittitle>Duller, Eduard, 1809-1853. ALS</unittitle>
<unitdatestructured altrender="1837 Feb 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1837-02-05">1837 Feb 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">18</container>
</did>
<scopecontent id="aspace_4e8afde5e7a0dae3909cb00c72dc94b7">
<head>Scope and Contents</head>
<p>2 p. With mention of Winkler's article on Devrient and Iffland</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772568"
id="ref49"
level="file">
<did>
<unittitle>Ebert, Friedrich Adolf, 1791-1834. ALS</unittitle>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">19</container>
</did>
<scopecontent id="aspace_35ed21b51bf8b53ff07c958066ede405">
<head>Scope and Contents</head>
<p>1 p. Librarian at Wolfenbüttel, 1823-25; chief librarian Dresden Library, 1827-1834. Concerning a rare copy of a work by Dibdin, owned by Brockhaus</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772569"
id="ref51"
level="file">
<did>
<unittitle>Ellmenreich, Friederike (Brandl), 1775-1845. ALS, Frankfurt</unittitle>
<unitdatestructured altrender="1826 Feb 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-02-21">1826 Feb 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">20</container>
</did>
<scopecontent id="aspace_64fc00b571efe86783276152c9597c1e">
<head>Scope and Contents</head>
<p>4 p. Opera singer and translator of Italian and French opera texts. Offering seven of her texts</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772570"
id="ref53"
level="file">
<did>
<unittitle>Feuerbach, Paul Johann Anslem Ritter von 1777-1883. ALS, München</unittitle>
<unitdatestructured altrender="1808 Aug 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1808-08-01">1808 Aug 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">21</container>
</did>
<scopecontent id="aspace_ff5a8638c9a60fb29f532e2264a2ec95">
<head>Scope and Contents</head>
<p>2 p. At the time of writing Feuerbach was "Geheimer Referendar des bairischen Justizministeriums"; he was the author of the new codes on criminal and civil law</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772571"
id="ref55"
level="file">
<did>
<unittitle>Förster, Karl August, 1784-1841. ALS</unittitle>
<unitdatestructured altrender="1825 Feb 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-02-25">1825 Feb 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">22</container>
</did>
<scopecontent id="aspace_1418a9d72254cfe133181f59a098eaa1">
<head>Scope and Contents</head>
<p>1 p. Professor of German language and literature at the military academy at Dresden</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772572"
id="ref57"
level="file">
<did>
<unittitle>Franul von Weissenthurn, Johanna (Grünberg), 1773-1847. ALS, Wien</unittitle>
<unitdatestructured altrender="1822 Oct 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1822-10-22">1822 Oct 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">23</container>
</did>
<scopecontent id="aspace_3361e7d844b554b8c88b4b39cb6b26b9">
<head>Scope and Contents</head>
<p>4 p. Playwright and actress</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772573"
id="ref59"
level="file">
<did>
<unittitle>Franz, Agnes, 1794-1843. 2 ALS</unittitle>
<unitdatestructured altrender="1825" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825">1825</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/772574"
id="ref60"
level="file">
<did>
<unittitle>Gaal, Georg von, 1783-1855. ALS, Wien</unittitle>
<unitdatestructured altrender="1826 Mar 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-03-12">1826 Mar 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">25</container>
</did>
<scopecontent id="aspace_ffbe3b2d2cdf5b9325c183eafc3dbd47">
<head>Scope and Contents</head>
<p>3 p. Austrian poet, librarian for Prince von Esterhazy; director of the Vienna Art Gallery; compiler of a collection of proverbs in six languages</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772575"
id="ref62"
level="file">
<did>
<unittitle>Genast, Eduard Franz, 1797-1866. ALS, Magdeburg</unittitle>
<unitdatestructured altrender="1828 Aug 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1828-08-17">1828 Aug 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">26</container>
</did>
<scopecontent id="aspace_b8ec26ce0d719df56a1b1cf0c970629c">
<head>Scope and Contents</head>
<p>1 p. Actor and opera singer, chiefly at Weimar. Requesting the score of Oberon</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772576"
id="ref64"
level="file">
<did>
<unittitle>Gensicke, Wilhelmine (Herz), 1779-1822. 3 ALS</unittitle>
<unitdatestructured altrender="1817-20" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1817">1817</fromdate>
<todate standarddate="1820">1820</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">27</container>
</did>
<scopecontent id="aspace_ec71042af09a692029200fbeb4a2b41e">
<head>Scope and Contents</head>
<p>7 p. Writer of short stories</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772577"
id="ref66"
level="file">
<did>
<unittitle>Griesinger, Georg August von, 1778-1845. 2 ALS, Wien</unittitle>
<unitdatestructured altrender="1818-26" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1818">1818</fromdate>
<todate standarddate="1826">1826</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">28</container>
</did>
<scopecontent id="aspace_a187e1ed85a17c15128d55792e2efb55">
<head>Scope and Contents</head>
<p>5 p. First letter with address Königlich Sächsischer Legationsrat at Wien</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772578"
id="ref68"
level="file">
<did>
<unittitle>Grosse, Julie von. ALS, Breslau</unittitle>
<unitdatestructured altrender="1839 Jun 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1839-06-13">1839 Jun 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">29</container>
</did>
<scopecontent id="aspace_d27dd18258a3b61d4b6db6ad1f1c1905">
<head>Scope and Contents</head>
<p>1 p. Anticipating to find Mrs. Winkler at Bad Ischl on her arrival there; thanking for favorable reception given her short story and poems</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772579"
id="ref70"
level="file">
<did>
<unittitle>Grüner, Karl Franz, 1780-1845. ALS, Darmstadt</unittitle>
<unitdatestructured altrender="1818 Mar 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1818-03-18">1818 Mar 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">30</container>
</did>
<scopecontent id="aspace_f5c48bb0c692c7e185811c520ad8b2e7">
<head>Scope and Contents</head>
<p>1 p. His real name was Akács or von Akats. He was one of the actors for whom Goethe devised the Regeln für Schauspieler</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772580"
id="ref72"
level="file">
<did>
<unittitle>Gutzkow, Karl Ferdinand, 1811-1878. ALS, Frankfurt</unittitle>
<unitdatestructured altrender="1843 Nov 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1843-11-14">1843 Nov 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/772581"
id="ref73"
level="file">
<did>
<unittitle>Haake, August, 1793-1864. ALS, Breslau</unittitle>
<unitdatestructured altrender="1836 Mar 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1836-03-23">1836 Mar 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">32</container>
</did>
<scopecontent id="aspace_cf562b1004cd300893016a4258724df1">
<head>Scope and Contents</head>
<p>1 p. On stationery of Direction des Breslauer Theaters. Actor and theater director. Requesting to forward an enclosed letter; enclosure not present</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772582"
id="ref75"
level="file">
<did>
<unittitle>Haering, Wilhelm, 1798-1871. ALS, Berlin</unittitle>
<unitdatestructured altrender="1825 Mar 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-03-10">1825 Mar 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref75_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref75_c2" localtype="folder" parent="aspace_ref75_c1">33</container>
</did>
<scopecontent id="aspace_42155994f6d6c9f91af9de62eabcc355">
<head>Scope and Contents</head>
<p>1 p. Presenting a copy of the second edition of his novel Walladmor, which was attributed to Sir Walter Scott</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772583"
id="ref77"
level="file">
<did>
<unittitle>Hagn, Charlotte von, 1809-1891. ALS</unittitle>
<unitdatestructured altrender="1846 Mar 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1846-03-06">1846 Mar 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref77_c2" localtype="folder" parent="aspace_ref77_c1">34</container>
</did>
<scopecontent id="aspace_d96a5d6e7568f3abcc429c4d7c15baca">
<head>Scope and Contents</head>
<p>2 p. Actress, 1826-1833 at München, 1833-1846 at Berlin; she was married to Alexander von Owen from 1836-1851</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772584"
id="ref79"
level="file">
<did>
<unittitle>Haizinger, Amalie (Morstadt), 1800-1884. ALS, Karlsruhe</unittitle>
<unitdatestructured altrender="1826 Aug 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-08-04">1826 Aug 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref79_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref79_c2" localtype="folder" parent="aspace_ref79_c1">35</container>
</did>
<scopecontent id="aspace_5be156cf194b48b309b78e3da5244992">
<head>Scope and Contents</head>
<p>1 p. Noted opera singer and actress, mainly at the Karlsruhe Hoftheater and the Vienna Burgtheater; was married (1816-1823) to Karl Neumann; married Anton Haizinger in 1827. Concerns her role in Winkler's Die Flitterwochen</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772585"
id="ref81"
level="file">
<did>
<unittitle>Heeringen, Gustav Adolf von, 1800-1851. ALS, Coburg</unittitle>
<unitdatestructured altrender="1835 Aug 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1835-08-29">1835 Aug 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref81_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref81_c2" localtype="folder" parent="aspace_ref81_c1">36</container>
</did>
<scopecontent id="aspace_20c4ecb54c1220cabf0e0bc628d1ef69">
<head>Scope and Contents</head>
<p>3 p. Chiefly concerning his Fränkische Bilder, published 1835</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772586"
id="ref83"
level="file">
<did>
<unittitle>Heinroth, Johann Christian August, 1773-1843. ALS, Leipzig</unittitle>
<unitdatestructured altrender="1817 Dec 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1817-12-09">1817 Dec 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref83_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref83_c2" localtype="folder" parent="aspace_ref83_c1">37</container>
</did>
<scopecontent id="aspace_ff7a855c9311a7433102cabde5c83283">
<head>Scope and Contents</head>
<p>2 p. Noted physician and professor of medicine; author of works on psychiatry and of the belletristic Gesammelte Blätter which in this letter he submits to Winkler for the Abendzeitung</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772587"
id="ref85"
level="file">
<did>
<unittitle>Heun, Karl Gottlieb Samuel, 1771-1854. ALS</unittitle>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref85_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref85_c2" localtype="folder" parent="aspace_ref85_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/772588"
id="ref86"
level="file">
<did>
<unittitle>Hoffmann, Ernest Theodor Amadeus, 1776-1822. 2 ALS, Dresden</unittitle>
<unitdatestructured altrender="1813 Apr 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1813-04-14">1813 Apr 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/89635 /locations/9"
containerid="39002091571407"
id="aspace_ref86_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref86_c2" localtype="folder" parent="aspace_ref86_c1">39</container>
</did>
<scopecontent id="aspace_5e1d2b4220c24f0591846baa36e5bbe5">
<head>Scope and Contents</head>
<p>On his arrival at Dresden he found Joseph Seconda not yet present; asks for an advance so he may pay the driver and some necessary purchases</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/772589"
id="ref88"
level="file">