-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerator_data.xml
1763 lines (1512 loc) · 68.3 KB
/
generator_data.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"?>
<generator_data>
<text_title>
<choice>
<option condition="yes_has_category">
<determination field="is_name">
<if equal_to="yes_is_name"><wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)</if>
<if equal_to="not_a_name"><wiki_link><replace with="lemma_label"/></wiki_link></if></determination>
-
wirklich nur "<replace with="random_category"/>"?</option>
<option condition="yes_has_category"><determination field="is_name">
<if equal_to="yes_is_name">
<wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)
und der Mythos <replace with="random_category2"/>
</if>
<if equal_to="not_a_name"><wiki_link><replace with="lemma_label"/></wiki_link> -
<choice>
<option>nur ein</option>
<option>ein bloßes</option>
<option>lediglich ein</option>
<option>ein reines</option>
</choice>
<choice>
<option>Hirngespinst</option>
<option>Phantom</option>
<option>Randphänomen</option>
<option>Gedankenkonstrukt</option>
<option>Phantasieprodukt</option>
</choice>
oder
<choice>
<option>tatsächlich </option>
<option>wirklich</option>
<option>nicht doch</option>
</choice>
<replace with="random_category2"/>?
</if>
</determination></option>
<option condition="yes_has_category">
<determination field="is_name">
<if equal_to="yes_is_name"><wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)</if>
<if equal_to="not_a_name"><wiki_link><replace with="lemma_label"/></wiki_link></if></determination>
<choice>
<option>vor dem Hintergrund</option>
<option>im Anbetracht</option>
<option>angesichts</option>
</choice>
von "<replace with="random_category"/>"
und "<replace with="random_category2"/>"
</option>
<option condition="yes_has_category"><determination field="is_name">
<if equal_to="yes_is_name"><wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)</if>
<if equal_to="not_a_name"><wiki_link><replace with="lemma_label"/></wiki_link></if></determination>
zwischen "<replace with="random_category"/>"
und "<replace with="random_category2"/>"</option>
<option condition="yes_is_name">
<wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)
-
<choice>
<option>ein Leben</option>
<option>eine Biographie</option>
<option>eine Existenz</option>
<option>ein Lebenslauf</option>
</choice>
<choice>
<option>am Abgrund</option>
<option>geprägt von der Kategorie "<replace with="random_category"/>"</option>
<option>im Mittelalter</option>
<option>im historischen Kontext</option>
</choice>
</option>
<option condition="yes_is_name">
<wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>) und
<determination field="person_gender">
<if equal_to="male">seine</if>
<if equal_to="female">ihre</if>
</determination>
<choice>
<option>Zeit</option>
<option>Welt</option>
<option>Lebenswelt</option>
<option>Umwelt</option>
</choice></option>
<option condition="yes_has_category">
<determination field="is_name">
<if equal_to="yes_is_name"><wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)</if>
<if equal_to="not_a_name"><wiki_link><replace with="lemma_label"/></wiki_link></if></determination>
in
Relation zum
Emergenz- und Resonanzraum
"<replace with="random_category2"/>"</option>
<option condition="yes_is_name"><wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)
als
<choice>
<option>Beispiel</option>
<option>Blaupause</option>
<option>Paradefall</option>
<option>Glücksfall</option>
<option>Prüfstein</option>
</choice>
<choice>
<option>der Netzwerkforschung</option>
<option>der Personengeschichte</option>
<option>der prosopographischen Methode</option>
<option>für das Funktionieren der biographisch orientierten Wissenschaft</option>
</choice>
</option>
<option><determination field="is_name">
<if equal_to="yes_is_name"><wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)</if>
<if equal_to="not_a_name"><replace with="keyword"/></if></determination> im
<choice>
<option>Kontext</option>
<option>Fokus</option>
<option>Blickpunkt</option>
</choice>
<choice>
<option>neuerer</option>
<option>jüngerer</option>
<option>jüngster</option>
<option>neuester</option>
</choice>
<choice>
<option>soziologischer</option>
<option>theoriegeleiteter</option>
<option>geistesgeschichtlicher</option>
<option>ideengeschichtlicher</option>
</choice>
<choice>
<option>Forschungsergebnisse</option>
<option>Forschungen</option>
<option>Forschungsinteressen</option>
<option>Forschungsperspektiven</option>
</choice></option>
<option><determination field="is_name">
<if equal_to="yes_is_name"><wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)</if>
<if equal_to="not_a_name"><replace with="keyword"/></if></determination> -
Versuch einer Annäherung an die historische Wahrheit</option>
<option condition="not_a_name"><determination field="has_category">
<if equal_to="yes_has_category"><wiki_link><replace with="lemma_label"/></wiki_link></if>
<if equal_to="has_no_category"><replace with="keyword"/></if>
</determination> und kein Ende</option>
<option condition="not_a_name"><determination field="has_category">
<if equal_to="yes_has_category"><wiki_link><replace with="lemma_label"/></wiki_link></if>
<if equal_to="has_no_category"><replace with="keyword"/></if>
</determination>
-
<choice>
<option>Leben</option>
<option>Gesellschaften</option>
<option>Gestalten</option>
<option>Prägungen</option>
<option>Formierungen</option>
</choice>
in Zeiten
<choice>
<option>des Umbruchs</option>
<option>der Erneuerung</option>
<option>des Wandels</option>
<option>des Niedergangs</option>
<option>des Abstiegs</option>
<option>der Umwälzung</option>
<option>des Aufstiegs</option>
</choice></option>
<option condition="not_a_name"><determination field="has_category">
<if equal_to="yes_has_category"><wiki_link><replace with="lemma_label"/></wiki_link></if>
<if equal_to="has_no_category"><replace with="keyword"/></if>
</determination>
an der
<choice>
<option>Wende</option>
<option>Grenze</option>
<option>Zäsur</option>
<option>Schwelle</option>
</choice>
<choice>
<option>zur
deutschen Geschichte</option>
<option>zu einer neuen Zeit</option>
<option>zu einer anderen Epoche</option>
<option>zu tiefgreifendem Wandel</option>
<option>zur Entwurzelung</option>
</choice></option>
<option><determination field="is_name">
<if equal_to="yes_is_name"><wiki_link><replace with="lemma_label"/></wiki_link>
(†<replace with="person_year_of_death"/>)</if>
<if equal_to="not_a_name"><replace with="keyword"/></if></determination>
im
<choice>
<option>europäischen</option>
<option>welthistorischen</option>
<option>globalgeschichtlichen</option>
<option>transnationalen</option>
<option>überzeitlichen</option>
<option>mediävistischen</option>
<option>historischen</option>
<option>analytischen</option>
</choice>
<choice>
<option>Kontext</option>
<option>Zusammenhang</option>
<option>Bezug</option>
</choice></option>
<option condition="not_a_name"><determination field="has_category">
<if equal_to="yes_has_category"><wiki_link><replace with="lemma_label"/></wiki_link></if>
<if equal_to="has_no_category"><replace with="keyword"/></if>
</determination>
als
<choice>
<option>Teil</option>
<option>Chance</option>
<option>Netzwerk</option>
<option>Option</option>
<option>Neuansatz</option>
<option>Fortsetzung</option>
<option>Zäsur</option>
<option>Narrativ</option>
<option>Phänomen</option>
<option>Gegenentwurf</option>
<option>Zentrum</option>
</choice>
<choice>
<option>der Geschichte</option>
<option>des Eurozentrismus</option>
<option>des Kapitalismus</option>
<option>des Frühliberalismus</option>
<option>
<choice>
<option>mehrstufiger</option>
<option>multikausaler</option>
<option>monokausaler</option>
<option>gerichteter</option>
<option>emergenter</option>
<option>teleologischer</option>
<option>minutiöser</option>
<option>paränetischer</option>
<option>panegyrischer</option>
</choice>
<choice>
<option>Ebenen</option>
<option>Verflechtungen</option>
<option>Erklärungsmodelle</option>
<option>Vorstellungen</option>
<option>Vorstellungswelten</option>
<option>Utopien</option>
<option>Strukturen</option>
</choice></option>
</choice></option>
<option condition="not_a_name"><determination field="has_category">
<if equal_to="yes_has_category"><wiki_link><replace with="lemma_label"/></wiki_link></if>
<if equal_to="has_no_category"><replace with="keyword"/></if>
</determination> -
ein
<choice>
<option>Reizwort</option>
<option>Schlagwort</option>
<option>Zentralbegriff</option>
</choice>
<choice>
<option>ohne Randschärfe</option>
<option>mit Nebenwirkungen</option>
<option>in der Geschichte</option>
</choice></option>
</choice>
</text_title>
<main_text>
<choice name="introductory_sentence">
<option condition="yes_has_category">Wenn man über <replace with="random_category2"/>
nachdenkt,
fällt einem
<choice>
<option>früher oder später</option>
<option>völlig zurecht</option>
<option>fragwürdigerweise</option>
<option>mit Sicherheit</option>
<option>vielleicht</option>
<option>manchmal</option>
<option>unwillkürlich</option>
<option>selbstverständlich</option>
<option> - ohne dass man sich dafür schämen müsste - </option>
<option> - gerade im Hinblick auf "<replace with="random_category"/>" - </option>
</choice>
<replace with="lemma_label"/> ein</option>
<option condition="yes_has_category"><replace with="random_category2"/>
- damit beginnen
<choice>
<option>auch heute</option>
<option>völlig zurecht</option>
<option>fragwürdigerweise</option>
</choice>
die meisten Geschichten
über <replace with="lemma_label"/></option>
<option condition="not_a_name">
Der Begriff "<replace with="keyword"/>" ist seit
einigen Jahren auch in der deutschen Geschichtswissenschaft als Forschungskonzept eingeführt worden</option>
<option condition="yes_is_name">Das Handeln einer Einzelperson
(wie <replace with="lemma_label"/>)
vor dem Hintergrund einer formativen Subjektkonstitution
zählt zu den elementarsten Problem der Geschichtswissenschaft</option>
<option condition="yes_is_name"><determination field="person_gender">
<if equal_to="male">Obwohl <replace with="lemma_label"/>
<choice>
<option>ein Mann war</option>
<option>gemeinhin als Mann gilt</option>
<option>männliche Attribute besaß</option>
<option>sich männlich positionierte</option>
</choice></if>
<if equal_to="female">Weil
<replace with="lemma_label"/>
<choice>
<option>eine Frau war</option>
<option>sich als Frau in einer Männerwelt behaupten musste</option>
<option>als Frau gegen männlichen Widerstand kämpfte</option>
<option>ihre feminine Seite nie verleugnete</option>
</choice></if></determination>, eignet
<determination field="person_gender">
<if equal_to="male">er</if>
<if equal_to="female">sie</if></determination>
sich für einen geschlechtergeschichtlichen Ansatz</option>
<option condition="yes_is_name">Obwohl heute
<choice>
<option>bekannt</option>
<option>anerkannt</option>
<option>Konsens darüber besteht</option>
</choice>
ist,
dass Geschichte nicht von "großen Männern" gemacht wird, kann
die
<choice>
<option>Verfolgung</option>
<option>Analyse</option>
<option>Aufbereitung</option>
<option>Inblicknahme</option>
</choice>
einer historischen Einzelpersönlichkeit wie <replace with="lemma_label"/>
<choice>
<option>fruchtbar</option>
<option>gewinnbringend</option>
<option>hilfreich</option>
<option>erkenntnisreich</option>
</choice>
für die
<choice>
<option>Geschichtswissenschaft</option>
<option>Forschung</option>
<option>Erfahrbarmachung von Geschichte</option>
</choice> sein</option>
<option>Während
<determination field="is_name"><if equal_to="yes_is_name"></if><if equal_to="not_a_name">"</if></determination><replace with="keyword"/><determination field="is_name"><if equal_to="yes_is_name"></if><if equal_to="not_a_name">"</if></determination>
<choice>
<option>lange Zeit</option>
<option>über weite Strecken der Geschichte</option>
<option>lange Jahre</option>
<option>viele Jahre</option>
</choice>
<choice>
<option>im populären Mittelalterbild</option>
<option>in populärwissenschaftlichen Darstellungen</option>
<option>in gängigen Handbüchern</option>
<option>in fachlichen Diskussionen</option>
<option>in der öffentlichen Wahrnehmung</option>
</choice>
keine
<choice>
<option>bedeutende</option>
<option>prominente</option>
<option>tragende</option>
<option>prägende</option>
</choice>
Rolle spielte, wird
<determination field="is_name">
<if equal_to="yes_is_name">die Person</if>
<if equal_to="not_a_name">das Phänomen</if>
</determination>
<choice>
<option>jetzt</option>
<option>seit Kurzem</option>
<option>in jüngster Zeit</option>
<option>seit einigen Jahren</option>
</choice>
<choice>
<option>vor dem Hintergrund</option>
<option>angesichts</option>
<option>hinsichtlich</option>
</choice>
<choice>
<option>jüngster</option>
<option>neuester</option>
<option>interkultureller</option>
<option>politischer</option>
<option>weltpolitischer</option>
<option>sozialer</option>
<option>digitaler</option>
</choice>
<choice>
<option>Probleme</option>
<option>Kriege</option>
<option>Terroranschläge</option>
<option>Entwicklungen</option>
<option>Krisen</option>
<option>Szenarien</option>
<option>Auseinandersetzungen</option>
<option>Konflikte</option>
</choice>
<choice>
<option>wieder aufgegriffen</option>
<option>neu bewertet</option>
<option>wiederum thematisiert</option>
<option>von einer größeren Öffentlichkeit beachtet</option>
<option>zum Gegenstand öffentlicher Debatten</option>
</choice></option>
<option>Für die
<choice>
<option>Entwicklung</option>
<option>Evolution</option>
<option>Ausdifferenzierung</option>
<option>Formierung</option>
<option>Formation</option>
<option>Herausbildung</option>
</choice>
<choice>
<option>der folgenden Ereignisse</option>
<option>der Geschichtswissenschaft</option>
<option>sozialer Prozesse</option>
<option>historischer Selbstreflexionfähigkeit</option>
<option>späterer Territorialisierungsprozesse</option>
<option>epochenimanenter Spezifika</option>
<option>wirkmächtiger Geschichtserzählungen</option>
<option>klassischer Meistererzählungen</option>
</choice>
war
<determination field="is_name">
<if equal_to="yes_is_name"><replace with="lemma_label"/></if>
<if equal_to="not_a_name">das Phänomen "<replace with="keyword"/>"</if>
</determination>
von
<choice>
<option>äußerst</option>
<option>kaum zu überschätzender</option>
<option>geradezu</option>
<option/>
</choice>
<choice>
<option>besonderer</option>
<option>zentraler</option>
<option>einschlägiger</option>
<option>eminenter</option>
</choice>
<choice>
<option>Bedeutung</option>
<option>Wichtigkeit</option>
<option>Relevanz</option>
</choice></option>
<option><determination field="is_name"><if equal_to="yes_is_name"></if><if equal_to="not_a_name">"</if></determination><replace with="keyword"/><determination field="is_name"><if equal_to="yes_is_name"></if><if equal_to="not_a_name">"</if></determination> war
eine<determination field="is_name"><if equal_to="yes_is_name"></if><if equal_to="not_a_name">s</if></determination> der
<choice>
<option>bedeutendsten</option>
<option>zentralen</option>
<option>prominentesten</option>
</choice>
<determination field="is_name">
<if equal_to="yes_is_name"><choice>
<option>Personen</option>
<option>Figuren</option>
<option>Gestalten</option>
</choice></if>
<if equal_to="not_a_name"><choice>
<option>Elemente</option>
<option>Charakteristika</option>
<option>Merkmale</option>
<option>Spezifika</option>
</choice></if>
</determination>
<choice>
<option>des Mittelalters</option>
<option>der Vormoderne</option>
<option>vergangener Jahrhunderte</option>
<option>der
<choice>
<option>Menschheits</option>
<option>Kultur</option>
<option>Wirtschafts</option>
<option>Sozial</option>
<option>Verfassungs</option>
</choice>geschichte</option>
</choice></option>
<option><choice>
<option>Der Schematismus</option>
<option>Die Persistenz</option>
<option>Die Symbiose</option>
<option>Die Wechselwirkung</option>
<option>Die Synthese</option>
</choice>
<choice>
<option>der Motive</option>
<option>der Vorbereitungsmaßnahmen</option>
<option>der Auswirkungen</option>
<option>des Beginns</option>
<option>der Unmmittelbarkeit</option>
</choice>
<choice>
<option>der Hypothese</option>
<option>des Kondensationspunkts</option>
<option>der Vergleichsparameter</option>
<option>der Etablierung</option>
<option>des Konsenses</option>
</choice>
<choice>
<option>führt
<choice>
<option>unweigerlich</option>
<option>unmittelbar</option>
<option>sofort</option>
<option>unwillkürlich</option>
<option>freilich</option>
</choice> zu</option>
<option>hängt zusammen mit</option>
<option>ist völlig unabhängig von</option>
<option>ist klar abzugrenzen von</option>
<option>ist lebensweltlich verbunden mit</option>
<option>wird induziert von</option>
<option>hat manigfaltige Verbindungen mit</option>
<option>ist nur denkbar mit</option>
</choice>
<choice>
<option>der Variation</option>
<option>den Genres</option>
<option>der Herausforderung</option>
<option>der Subjektkonstitution</option>
<option>dem Resultat</option>
</choice>
<choice>
<option>der Aporie</option>
<option>der Kontingenz</option>
<option>der Binnenstruktur</option>
<option>der Textur</option>
<option>der Positionsbestimmung</option>
</choice></option>
<option condition="not_a_name">"<replace with="keyword"/>"
ist
<choice>
<option>in jüngerer Zeit</option>
<option>in den letzten Jahren</option>
<option>in den vergangenen Jahrzehnten</option>
</choice>
zu einem
<choice>
<option>etablierten</option>
<option>viel diskutierten</option>
<option>unüberehbaren</option>
</choice>
<choice>
<option>Schwerpunkt</option>
<option>Mittelpunkt</option>
<option>Kulminationspunkt</option>
</choice>
<choice>
<option>mediävistischer</option>
<option>historischer</option>
<option>kritischer</option>
</choice>
<choice>
<option>Forschung</option>
<option>Wissenschaft</option>
<option>Tätigkeit</option>
</choice>
<choice>
<option>geworden</option>
<option>avanciert</option>
</choice></option>
<option condition="not_a_name">"<replace with="keyword"/>"
gilt
<choice>
<option>nach wie vor</option>
<option>seit jeher</option>
<option>seit langem</option>
<option>noch immer</option>
<option>gemeinhin</option>
</choice>
als
<choice>
<option>Paradebeispiel</option>
<option>klassischer Fall</option>
<option>Musterexemplar</option>
</choice>
eines
<choice>
<option>entscheidenden</option>
<option>einschneidenden</option>
<option>ereignissgeschichtlichen</option>
<option>strukturellen</option>
<option><choice>
<option>makro</option>
<option>mikro</option>
<option>kultur</option>
</choice>strukturellen</option>
<option>historischen</option>
<option>neuralgischen</option>
<option>verfassungsgeschichtlichen</option>
<option>rechtshistorischen</option>
<option>kommunikativen</option>
<option>soziokulturellen</option>
<option>identitätsstiftenden</option>
<option>verkannten</option>
</choice>
<choice>
<option><choice>
<option>Wende</option>
<option>Hoch</option>
<option>Tief</option>
<option>Kristallations</option>
</choice>punkts</option>
<option>Katalysators</option>
<option>Quantensprungs</option>
</choice>
im Verlauf
<choice>
<option>der Geschichte</option>
<option>der mittelalterlichen Geschichte</option>
<option>der Epoche zwischen 500 und 1500</option>
<option>der
<choice>
<option>Menschheits</option>
<option>Kultur</option>
<option>Sozial</option>
<option>Wirtschafts</option>
<option>Geistes</option>
<option>Vorkriegs</option>
</choice>geschichte</option>
</choice></option>
<option condition="not_a_name">"<replace with="keyword"/>" stellt
ein
<choice>
<option>zentrales</option>
<option>kontroverses</option>
<option>geradezu klassisches</option>
<option>noch immer nicht befriedigend bearbeitetes</option>
<option>interessantes</option>
<option>spannendes</option>
<option>vielgestaltiges</option>
<option>schillerendes</option>
<option>umstrittenes</option>
</choice>
<choice>
<option>Problem</option>
<option>Forschungsfeld</option>
<option>Thema</option>
<option>novum</option>
<option>Element</option>
<option>Spefizikum</option>
<option>Charateristikum</option>
<option>Rätsel</option>
</choice>
<choice>
<option>der mittelalterlichen Geschichte</option>
<option>der modernen Geschichtsforschung</option>
<option>unseres Faches</option>
</choice>
dar</option></choice>.
<choice name="second_sentence"><option>Dabei ist
<choice>
<option>die Konstellation</option>
<option>der Kontext</option>
<option>das historische Umfeld</option>
<option>die Quellenlage</option>
<option>die Überlieferungssituation</option>
<option>die Paradigmenmatrix</option>
<option>das Problemtableau</option>
</choice>
<choice>
<option>hinsichtlich</option>
<option>im Hinblick auf</option>
<option>im Angesicht von</option>
<option>in der Betrachtung von</option>
</choice>
<determination field="is_name">
<if equal_to="yes_is_name">der Person <replace with="keyword"/></if>
<if equal_to="not_a_name">"<replace with="keyword"/>"</if>
</determination>
ein
<choice>
<option>Indikator</option>
<option>Prüfstein</option>
<option>Kriterium</option>
<option>Faktor</option>
</choice>
für die
<choice>
<option>Bewertung</option>
<option>Erforschung</option>
<option>Intepretation</option>
<option>Einordnung</option>
<option>Evaluation</option>
</choice>
<choice>
<option>sozialer Ausdifferenzierungsprozesse</option>
<option>medialer Kommunikation</option>
<option>pragmatischer Selbst- und Fremdzeugnisse</option>
<option>theoriegeleiteter Fragestellungen</option>
<option>globalgeschichtlicher Ansätze</option>
<option>soziologischer Modellbildung</option>
</choice></option>
<option>Der umfassende Charakter der Grundüberlegungen wird
durch die thematische Streuung der in der Lehrveranstaltung angesprochenen Themen deutlich werden.
Dabei greifen allgemeine Überlegungen und Einzelfallstudien ineinander</option>
<option>Dabei werden neben der politischen Geschichte
Grundzüge von Politik, Verfassung, Gesellschaft,
Wirtschaft, Kirche, Landwirtschaft,
Religion und Kultur im Mittelpunkt stehen</option>
<option><choice>
<option>Das Thema</option>
<option>Die Thematik</option>
<option>Das Problem</option>
<option>Die Problematik</option>
<option>Das Themenfeld</option>
</choice>
eignet sich
<choice>
<option>daher</option>
<option>deshalb</option>
<option>in diesem Sinne</option>
</choice>
<choice>
<option>gut</option>
<option>vorzüglich</option>
<option>besonders gut</option>
<option>sehr gut</option>
<option>hervorragend</option>
</choice>
für eine
<choice>
<option>historische</option>
<option>problemorientierte</option>
<option>vertiefende</option>
<option>einführende</option>
</choice>
Lehrveranstaltung</option>
<option condition="not_a_name">Während
<choice>
<option>die ältere Forschung</option>
<option>die Geschichtswissenschaft des 19. Jahrhunderts</option>
<option>die deutschnationale Geschichtsschreibung</option>
<option>die langezeit herrschende Lehre</option>
</choice>
in
"<replace with="keyword"/>"
<choice>
<option>vornehmlich</option>
<option>hauptsächlich</option>
<option>insbesondere</option>
<option>vor allem</option>
</choice>
<choice>
<option>einen maßgeblichen Entwicklungsschritt auf dem Weg zur Bildung
der deutschen Nation</option>
<option>einen Streit konkurrierender politischer Konzepte</option>
<option>die Vorgeschichte eines späteren Epochenwandels</option>
<option>eine Phase gefährlicher Anarchie</option>
<option>den Beginn der deutschen Geschichte</option>
<option>das Wirken ultramontaner Kräfte</option>
<option>einen Sieg des Partikularismus</option>
</choice>
sah,
zeichnet
die
<choice>
<option>jüngere</option>
<option>neuere</option>
<option>moderne</option>
</choice>
<choice>
<option>Forschung</option>
<option>Geschichtswissenschaft</option>
<option>Mediävistik</option>
</choice>
ein
<choice>
<option>nuancierteres</option>
<option>differenzierteres</option>
<option>graduell anderes</option>
</choice>
Bild</option>
<option>Zur Vermeidung
<choice>
<option>unnötiger</option>
<option>unwissenschaftlicher</option>
<option>gefährlicher</option>
<option>epistemologisch fragwürdiger</option>
<option>nicht länger hinnehmbarer</option>
<option>anachronistischer</option>
<option>methodisch unhaltbarer</option>
</choice>
<choice>
<option>Komplexitätsreduktion</option>
<option>Reduktionismuspraxis</option>
<option>Faktenblindheit</option>
<option>thematischer Einengung</option>
</choice>
muss hierbei
<choice>
<option>der ganze Kontext</option>
<option>das ganze Umfeld</option>
<option>das ganze Spektrum</option>
<option>die ganze Bandbreite</option>
</choice>
<determination field="is_name">
<if equal_to="yes_is_name"><choice>
<option>des Lebenslaufs</option>
<option>des Lebens</option>
<option>der Biographie</option>
<option>des persönlichen Umfelds</option>
<option>der charakterlichen Prägungen</option>
</choice></if>
<if equal_to="not_a_name"><choice>
<option>des Themas</option>
<option>des Problems</option>
<option>der Problematik</option>
</choice></if>
</determination>
unter Berücksichtigung
<choice>
<option>sämtlicher</option>
<option>aller</option>
<option>älterer</option>
<option>schwer zugänglicher</option>
<option>jüngerer</option>
<option>die Zeit zwischen
<choice>
<option>1000 vor Christus</option>
<option>900 vor Christus</option>
<option>800 vor Christus</option>
<option>700 vor Christus</option>
<option>600 vor Christus</option>
<option>500 vor Christus</option>
<option>400 vor Christus</option>
<option>300 vor Christus</option>
<option>200 vor Christus</option>
<option>100</option>
<option>200</option>
<option>300</option>
<option>400</option>
<option>500</option>
<option>600</option>
<option>700</option>
<option>800</option>
<option>900</option>
</choice>
und
<choice>
<option>1000</option>
<option>1100</option>
<option>1200</option>
<option>1300</option>
<option>1400</option>
<option>1500</option>
<option>1600</option>
<option>1700</option>
<option>1800</option>
</choice>
betreffender</option>
</choice>
<choice>
<option>Zeugnisse</option>
<option>Quellen</option>
<option>Überlieferungsträger</option>
<option>Kenntnisse</option>
<option>Gedächtnisoperationen</option>