-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkbga-songs.xml
1694 lines (1694 loc) · 105 KB
/
kbga-songs.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"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0" xml:id="kbga-songs-file">
<teiHeader>
<fileDesc>
<titleStmt>
<title>Karl Barth Gesamtausgabe: Liste der Lieder</title>
</titleStmt>
<editionStmt>
<edition>Digitale Karl Barth-Gesamtausgabe</edition>
<sponsor>Schweizerische Akademie der Geistes- und Sozialwissenschaften (SAGW)</sponsor>
<sponsor>Schweizerischer Nationalfonds (SNF)</sponsor>
<sponsor>Karl Barth-Stiftung</sponsor>
</editionStmt>
<publicationStmt>
<publisher>Karl Barth-Archiv</publisher>
<pubPlace>Basel</pubPlace>
<date when="2025">2025</date>
<availability>
<licence target="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons BY-SA 4.0</licence>
</availability>
</publicationStmt>
<sourceDesc>
<p>Datenbankexport vom 2025-02-06 09:15:38</p>
<p>Es wurden die Datensätze exportiert die in den Bänden 1,3,5,12,19,27,29,39,40,50,53,55,56 verwendet wurden.</p>
</sourceDesc>
</fileDesc>
<profileDesc/>
<encodingDesc>
<listPrefixDef>
<prefixDef ident="kbga-actors-id" matchPattern="kbga-actors-(\d+)" replacementPattern="https://karl-barth.ch/actors/$1">
<p>kbga-actors-id verweist auf einen actor (Person, Organisation) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-places-id" matchPattern="kbga-places-(\d+)" replacementPattern="https://karl-barth.ch/places/$1">
<p>kbga-places-id verweist auf einen place (Ort, Stadt, Land) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-sources-id" matchPattern="kbga-sources-(\d+)" replacementPattern="https://karl-barth.ch/sources/$1">
<p>kbga-sources-id verweist auf eine source (Vorlage/Quelle) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-terms-id" matchPattern="kbga-terms-(\d+)" replacementPattern="https://karl-barth.ch/terms/$1">
<p>kbga-terms-id verweist auf einen term (Begriff) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-songs-id" matchPattern="kbga-songs-(\d+)" replacementPattern="https://karl-barth.ch/songs/$1">
<p>kbga-songs-id verweist auf einen song (Lied) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-bibls-id" matchPattern="kbga-bibls-(\d+)" replacementPattern="https://karl-barth.ch/bibls/$1">
<p>kbga-bibls-id verweist auf einen bibl (Literatureintrag) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-texts-id" matchPattern="kbga-texts-(\d+)" replacementPattern="https://karl-barth.ch/texts/$1">
<p>kbga-texts-id verweist auf einen text (Text) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kba-actors-id" matchPattern="kba-actors-(\d+)" replacementPattern="https://kba.karl-barth.ch/actors/$1">
<p>kba-actors-id verweist auf einen actor (Person, Organisation o.ä.) im Karl Barth-Archiv</p>
</prefixDef>
<prefixDef ident="kba-places-id" matchPattern="kba-places-(\d+)" replacementPattern="https://kba.karl-barth.ch/places/$1">
<p>kba-places-id verweist auf einen place (Ort, Stadt, Land) im Karl Barth-Archiv</p>
</prefixDef>
<prefixDef ident="kba-keywords-id" matchPattern="kba-keywords-(\d+)" replacementPattern="https://kba.karl-barth.ch/keywords/$1">
<p>kba-keywords-id verweist auf ein keyword (Schlagwort) im Karl Barth-Archiv</p>
</prefixDef>
<prefixDef ident="kba-objects-id" matchPattern="kba-objects-(\d+)" replacementPattern="https://kba.karl-barth.ch/objects/$1">
<p>kba-objects-id verweist auf ein object (Verzeichnungseinheit) im Karl Barth-Archiv</p>
</prefixDef>
<prefixDef ident="kba-objects-identifier" matchPattern="kba-objects-([a-zA-Z0-9./]+)" replacementPattern="https://kba.karl-barth.ch/objects/identifier/$1">
<p>kba-objects-identifier verweist auf ein object (Verzeichnungseinheit) im Karl Barth-Archiv</p>
</prefixDef>
</listPrefixDef>
</encodingDesc>
<revisionDesc>
<change when="2025-02-06T09:15:38+01:00">teiHeader was automatically produced from the database 2025-02-06T09:15:38+01:00</change>
</revisionDesc>
</teiHeader>
<text>
<body>
<listBibl type="songs" xml:id="kbga-songs">
<head>Liste der Lieder</head>
<bibl type="song" xml:id="kbga-songs-22">
<title>Ach bleib mit deiner Gnade</title>
<author ref="kbga-actors-1409">Stegmann, Josua</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 208</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 31</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 347</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 209</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 342</biblScope>
<ref target="https://de.wikipedia.org/wiki/Ach_bleib_mit_deiner_Gnade">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q19125128">wikidata</ref>
<ref target="https://d-nb.info/gnd/7749391-6">gnd</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-294">
<title>Ach wie hab’ ich einst das Leben</title>
<author ref="kbga-actors-9092">Meyer, Maria Rosina Johanna</author>
<author ref="kbga-actors-10191">Sankey, Ira D.</author>
<biblScope corresp="kbga-bibls-1090" type="songbook">REICHSLIEDER, Nr. 207</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-247">
<title>Ach! stirbt denn so mein allerliebstes Leben</title>
<author ref="kbga-actors-1399">Sacer, Gottfried Wilhelm</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-1">
<title>All Morgen ist ganz frisch und neu</title>
<author ref="kbga-actors-1986">Zwick, Johannes</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 72</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 336</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 440</biblScope>
<ref target="https://d-nb.info/gnd/1160001197">gnd</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-125">
<title>Allein Gott in der Höh sei Ehr</title>
<author ref="kbga-actors-1349">Decius, Nikolaus</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 1</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 1</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 179</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 131</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 221</biblScope>
<ref target="https://d-nb.info/gnd/1157123503">gnd</ref>
<ref target="https://www.wikidata.org/wiki/Q10405586">wikidata</ref>
<ref target="https://viaf.org/viaf/3025152563103515560007/">viaf</ref>
<ref target="https://de.wikipedia.org/wiki/Allein_Gott_in_der_Höh_sei_Ehr">wikipedia</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-309">
<title>Allein zu dir, Herr Jesu Christ</title>
<author ref="kbga-actors-10312">Schneesing, Johannes</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 215</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 208</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 232</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-269">
<title>Alles ist an Gottes Segen</title>
<author ref="kbga-actors-">unbekanntem Verfasser</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 265</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 352</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-278">
<title>Alles ist euer! O Worte des ewigen Lebens</title>
<author ref="kbga-actors-1403">Schubart, Christian Friedrich Daniel</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 307</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-72">
<title>Alles Leben strömt aus dir</title>
<author ref="kbga-actors-5849">Rudolphi, Caroline</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-107">
<title>Allgenugsam Wesen</title>
<author ref="kbga-actors-797">Tersteegen, Gerhard</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 247</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 309</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 270</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 661</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-34">
<title>Auf dem Heimwege</title>
<author ref="kbga-actors-2665">Mühler, Heinrich von</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-180">
<title>Auf den Nebel folgt die Sonn</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1629" type="songbook">KNAPP, Nr. 2006</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-96">
<title>Auf diesen Tag bedenken wir</title>
<author ref="kbga-actors-1986">Zwick, Johannes</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 140</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 171</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 91</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-130">
<title>Auf, auf, ihr Reichsgenossen</title>
<author ref="kbga-actors-1395">Rist, Johann</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 87</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 105</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 8</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-224">
<title>Aus irdischem Getümmel</title>
<author ref="kbga-actors-3970">Asschenfeldt, Christoph Karl Julius</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 234</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-94">
<title>Aus meines Herzens Grunde</title>
<author ref="kbga-actors-8801">Niege, Georg</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 39</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 75</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 443</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-51">
<title>Aus tiefer Not schrei ich zu dir</title>
<author ref="kbga-actors-261">Luther, Martin</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 37</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 214</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 299</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 214</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 195</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 83</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-295">
<title>Bald kommt der Herr, Hallelujah</title>
<author ref="kbga-actors-">Ogden, William Augustine</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-6">
<title>Baselbieterlied</title>
<author ref="kbga-actors-2678">Senn, Wilhelm</author>
<ref target="https://de.wikipedia.org/wiki/Baselbieterlied">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q809924">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-50">
<title>Befiehl du deine Wege</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 275</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 266</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 361</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 294</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 680</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-221">
<title>Behüt Dich Gott</title>
<author ref="kbga-actors-1209">Scheffel, Joseph Victor von</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-231">
<title>Beresinalied</title>
<author ref="kbga-actors-2647">Giseke, Ludwig</author>
<ref target="https://de.wikipedia.org/wiki/Beresinalied">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q681988">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-242">
<title>Bleibt bei Dem, der euretwillen / auf die Erde niederkam</title>
<author ref="kbga-actors-1254">Spitta, Karl Johann Philipp</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 254</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-108">
<title>Brich herein, süßer Schein</title>
<author ref="kbga-actors-5854">Schmalenbach, Marie</author>
<biblScope corresp="kbga-bibls-1090" type="songbook">REICHSLIEDER, Nr. 556</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-297">
<title>Brüder, noch gilt es, zu retten!</title>
<author ref="kbga-actors-">Hoyle, W.</author>
<author ref="kbga-actors-9092">Meyer, Maria Rosina Johanna</author>
<biblScope corresp="kbga-bibls-1090" type="songbook">REICHSLIEDER, Nr. 525</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-274">
<title>ch sag es jedem, dass er lebt</title>
<author ref="kbga-actors-1161">Hardenberg, Friedrich Wilhelm von</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 135</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 484</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-41">
<title>Christ ist erstanden</title>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 157</biblScope>
<ref target="https://de.wikipedia.org/wiki/Christ_ist_erstanden">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q1077998">wikidata</ref>
<ref target="https://viaf.org/viaf/180765933/">viaf</ref>
<ref target="https://d-nb.info/gnd/4692492-9">gnd</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-39">
<title>Christ lag in Todesbanden</title>
<author ref="kbga-actors-261">Luther, Martin</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 159</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 76</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 101</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 464</biblScope>
<ref target="https://de.wikipedia.org/wiki/Christ_lag_in_Todesbanden">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q1078000">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-248">
<title>Christenglaube</title>
<author ref="kbga-actors-5681">Blass, Johann Heinrich</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-236">
<title>Christi Blut und Gerechtigkeit</title>
<author ref="kbga-actors-441">Zinzendorf, Nikolaus Ludwig Graf
von</author>
<author ref="kbga-actors-579">Gregor, Christian</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 265</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 273</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-303">
<title>Christus, der ist mein Leben</title>
<author ref="kbga-actors-6489">Vulpius, Melchior</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 320</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 516</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 774</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-149">
<title>Das Grütli</title>
<author ref="kbga-actors-1097">Krauer, Johann Georg</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-171">
<title>Das Jahr ist nun zu Ende</title>
<author ref="kbga-actors-8822">Bähr, Christian August</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 65</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-129">
<title>Dein König kommt in niedern Hüllen</title>
<author ref="kbga-actors-1398">Rückert, Friedrich</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 93</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 108</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 14</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 12</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 371</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-277">
<title>Der du die Wahrheit selber bist</title>
<author ref="kbga-actors-9289">Carl Bernhard, Garve</author>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 211</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 309</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-154">
<title>Der du in Todesnächten</title>
<author ref="kbga-actors-468">Barth, Christian Gottlob</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 166</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 362</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 257</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-313">
<title>Der Frühling naht mit Brausen</title>
<author ref="kbga-actors-6441">Klingemann, Karl</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-169">
<title>Der Mond ist aufgegangen</title>
<author ref="kbga-actors-947">Claudius, Matthias</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 52</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 92</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 492</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 482</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 368</biblScope>
<ref target="https://de.wikipedia.org/wiki/Abendlied_(Matthias_Claudius)">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q318900">wikidata</ref>
<ref target="https://d-nb.info/gnd/7690394-1">gnd</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-329">
<title>Der Tag ist hin</title>
<author ref="kbga-actors-2670">Neander, Joachim</author>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 365</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 48</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-316">
<title>Der Vater hat zum Schmerzenslohn / der Welt gegeben seinen Sohn</title>
<biblScope corresp="kbga-bibls-1629" type="songbook">KNAPP, Nr. 1156</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-234">
<title>Die Gedanken sind frei</title>
<ref target="https://de.wikipedia.org/wiki/Die_Gedanken_sind_frei">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q370371">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-155">
<title>Die Gnade sei mit allen</title>
<author ref="kbga-actors-2192">Hiller, Philipp Friedrich</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 175</biblScope>
<biblScope corresp="kbga-bibls-1090" type="songbook">REICHSLIEDER, Nr. 640</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-276">
<title>Die Gnade unsers Herrn Jesu Christi</title>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 185</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 348</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-29">
<title>Die Gnade unsres Herrn Jesus Christus</title>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 217</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 348</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 185</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-146">
<title>Die goldne Sonne voll Freud und Wonne</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 42</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 77</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 449</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 346</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 571</biblScope>
<ref target="https://de.wikipedia.org/wiki/Die_güldne_Sonne_voll_Freud_und_Wonne">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q39056813">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-202">
<title>Die Gottesseraphim erheben ihre Stimm’</title>
<author ref="kbga-actors-579">Gregor, Christian</author>
<author ref="kbga-actors-1414">Weber, Heinrich</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 19</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-163">
<title>Die Lerche stieg am Ostermorgen</title>
<author ref="kbga-actors-1362">Geibel, Emanuel</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 139</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-138">
<title>Die Sach ist dein, Herr Jesu Christ</title>
<author ref="kbga-actors-736">Preiswerk, Samuel</author>
<author ref="kbga-actors-1419">Zaremba, Felician Graf von</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 170</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 360</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 801</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-326">
<title>Dies ist der Tag, den Gott gemacht</title>
<author ref="kbga-actors-1000">Gellert, Christian Fürchtegott</author>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 408</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 42</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 100</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-165">
<title>Dir will ich danken bis zum Grabe</title>
<author ref="kbga-actors-642">Knak, Gustav</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 258</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 315</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-52">
<title>Dir, dir, Jehova, will ich singen</title>
<author ref="kbga-actors-5919">Crasselius, Bartholomäus</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 56</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 237</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 35</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 328</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 55</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 243</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-12">
<title>Du bist ein Mensch, das weißt du wohl</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 276</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-246">
<title>Du bist’s allein</title>
<author ref="kbga-actors-">Strauß, V. Fr.</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 29</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-296">
<title>Du bist’s allein, Macht und Gewalt sind dein!</title>
<author ref="kbga-actors-795">Strauß und Torney, Viktor von</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 29</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-270">
<title>Du klagst und fühlest die Beschwerden</title>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 305</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-16">
<title>Du meine Seele, singe</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 47</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 197</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-59">
<title>Ein feste Burg ist unser Gott</title>
<author ref="kbga-actors-261">Luther, Martin</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 342</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 201</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 157</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 362</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 32</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-173">
<title>Ein geistlich lied um hilf und
bystand in kriegsgefar</title>
<author ref="kbga-actors-443">Zwingli, Ulrich</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-139">
<title>Eine Herde und ein Hirt</title>
<author ref="kbga-actors-1377">Krummacher, Friedrich Adolf</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 163</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 385</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 220</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-2">
<title>Erhalt uns, Herr, bei deinem Wort</title>
<author ref="kbga-actors-261">Luther, Martin</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 343</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 193</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 255</biblScope>
<ref target="https://de.wikipedia.org/wiki/Erhalt_uns,_Herr,_bei_deinem_Wort">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q1314698">wikidata</ref>
<ref target="https://d-nb.info/gnd/1196309906">gnd</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-127">
<title>Ermuntert euch, ihr Frommen</title>
<author ref="kbga-actors-8761">Laurentius Laurentii</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 345</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 381</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 151</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-69">
<title>Es glänzet der Christen inwendiges Leben</title>
<author ref="kbga-actors-2243">Richter, Christian Friedrich</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 307</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 265</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-262">
<title>Es ist ein Reis / Ros entsprungen</title>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 399</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 24</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-179">
<title>Es ist ein Schnitter, heißt der Tod</title>
</bibl>
<bibl type="song" xml:id="kbga-songs-321">
<title>Es ist ein Strom erflossen</title>
<author ref="kbga-actors-795">Strauß und Torney, Viktor von</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 156</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-86">
<title>Es ist nicht schwer, ein Christ zu sein</title>
<author ref="kbga-actors-2243">Richter, Christian Friedrich</author>
<biblScope corresp="kbga-bibls-1629" type="songbook">KNAPP, Nr. 1363</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-292">
<title>Es kennt der Herr die Seinen</title>
<author ref="kbga-actors-1254">Spitta, Karl Johann Philipp</author>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 358</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-251">
<title>Es kostet viel, ein Christ zu sein</title>
<author ref="kbga-actors-2243">Richter, Christian Friedrich</author>
<biblScope corresp="kbga-bibls-1629" type="songbook">KNAPP, Nr. 1364</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-23">
<title>Es segne uns der Herr</title>
<author ref="kbga-actors-865">Annoni, Hieronymus</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 214</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-120">
<title>Fahre fort, fahre fort</title>
<author ref="kbga-actors-5610">Schmidt, Johann Eusebius</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 159</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 351</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 213</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 213</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-264">
<title>Fortgekämpft und fortgerungen</title>
<author ref="kbga-actors-658">Lavater, Johann Caspar</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 281</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 691</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-31">
<title>Freut euch, freut euch all insgemein</title>
<author ref="kbga-actors-6043">Lobwasser, Ambrosius</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 118</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-7">
<title>Fröhlich soll mein Herze springen</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 119</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 27</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 97</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 36</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 400</biblScope>
<ref target="https://de.wikipedia.org/wiki/Fröhlich_soll_mein_Herze_springen">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q59784978">wikidata</ref>
<ref target="https://viaf.org/viaf/8625152684036123430005/">viaf</ref>
<ref target="https://id.loc.gov/authorities/n92070480">lcnaf</ref>
<ref target="https://d-nb.info/gnd/7858837-6">gnd</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-63">
<title>Für alle Menschen beten wir</title>
<author ref="kbga-actors-643">Knapp, Albert</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 69</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-330">
<title>Geduld ist euch vonnöten</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 293</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-61">
<title>Gelobet sei der Herr</title>
<author ref="kbga-actors-5745">Olearius, Johann</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 50</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-5">
<title>Gelobet seist du, Jesu Christ</title>
<author ref="kbga-actors-261">Luther, Martin</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 114</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 15</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 23</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 392</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 367</biblScope>
<ref target="https://de.wikipedia.org/wiki/Gelobet_seist_du,_Jesu_Christ">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q1144499">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-9">
<title>Gelobt sei Gott im höchsten Thron</title>
<author ref="kbga-actors-8755">Weiße, Michael</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 160</biblScope>
<ref target="https://de.wikipedia.org/wiki/Gelobt_sei_Gott_im_höchsten_Thron">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q16838572">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-98">
<title>Gib dich zufrieden und sei stille / in dem Gotte deines Lebens</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 277</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 371</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-284">
<title>Gib mir dein Herze</title>
</bibl>
<bibl type="song" xml:id="kbga-songs-53">
<title>Gott des Himmels und der Erden</title>
<author ref="kbga-actors-8754">Albert, Heinrich</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 76</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 40</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 445</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 566</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-229">
<title>Gott ist die Liebe</title>
<author ref="kbga-actors-1394">Rische, August Dietrich</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-11">
<title>Gott ist gegenwärtig</title>
<author ref="kbga-actors-797">Tersteegen, Gerhard</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 201</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 174</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 165</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 128</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 162</biblScope>
<ref target="https://de.wikipedia.org/wiki/Gott_ist_gegenwärtig">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q10510255">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-140">
<title>Gott ist getreu! Sein Herz, sein Vaterherz verläßt die Seinen nie</title>
<author ref="kbga-actors-1379">Liebich, Ehrenfried</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 278</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 287</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 689</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-323">
<title>Gott ist's, der regiert</title>
<author ref="kbga-actors-">Wolf, S.</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 22</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-288">
<title>Gott ist’s, der regiert</title>
<author ref="kbga-actors-5797">Wolf, Salomon</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 24</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 22</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-223">
<title>Gott Lob! Nun ist erschollen das edle Fried- und Freudenwort</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-168">
<title>Gott sei Dank in aller Welt</title>
<author ref="kbga-actors-8651">Held, Heinrich</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 86</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 107</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 12</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 369</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-226">
<title>Gott wills machen</title>
<author ref="kbga-actors-1370">Herrnschmidt, Johann Daniel</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 271</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-106">
<title>Gottesruhe, Sabbatstille</title>
<author ref="kbga-actors-1403">Schubart, Christian Friedrich Daniel</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 176</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-36">
<title>Großer Gott, wir loben dich</title>
<author ref="kbga-actors-1356">Franz, Ignaz</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 59</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 25</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 331</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 247</biblScope>
<ref target="https://de.wikipedia.org/wiki/Großer_Gott,_wir_loben_dich">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q66385375">wikidata</ref>
<ref target="https://d-nb.info/gnd/1135989567">gnd</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-95">
<title>Harre, meine Seele</title>
<author ref="kbga-actors-8802">Raeder, Johann Friedrich</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 287</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 292</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 694</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-252">
<title>Herr Christ, der einig Gotts Sohn</title>
<author ref="kbga-actors-8453">Cruciger, Elisabeth</author>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 67</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 390</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-17">
<title>Herr Jesu Christ, dich zu uns wend</title>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 199</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-311">
<title>Herr nun heb den Wagen selb</title>
<author ref="kbga-actors-443">Zwingli, Ulrich</author>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 729</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-110">
<title>Herr, dein Wort, die edle Gabe</title>
<author ref="kbga-actors-441">Zinzendorf, Nikolaus Ludwig Graf
von</author>
<author ref="kbga-actors-579">Gregor, Christian</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 188</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 198</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-256">
<title>Herr, nun selbst den Wagen halt!</title>
<author ref="kbga-actors-4485">Spitta, Friedrich</author>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 792</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 242</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-21">
<title>Herz und Herz vereint zusammen</title>
<author ref="kbga-actors-441">Zinzendorf, Nikolaus Ludwig Graf
von</author>
<author ref="kbga-actors-579">Gregor, Christian</author>
<author ref="kbga-actors-643">Knapp, Albert</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 327</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 217</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 161</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 251</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 793</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-102">
<title>Herzlich lieb hab ich dich, o Herr</title>
<author ref="kbga-actors-4149">Schalling, Martin</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 30</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 65</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 397</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 651</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 247</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-133">
<title>Hilf, Herr Jesu, laß gelingen</title>
<author ref="kbga-actors-1395">Rist, Johann</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 66</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 61</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-253">
<title>Himmel, Erde, Luft und Meer, Zeugen von des Schöpfers Ehr</title>
<author ref="kbga-actors-2670">Neander, Joachim</author>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 530</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 504</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-258">
<title>Himmelan geht unsre Bahn</title>
<author ref="kbga-actors-5770">Schmolck, Benjamin</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 227</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-121">
<title>Himmelskönig, Gott der Gnaden</title>
<author ref="kbga-actors-1375">Klotz, Martin</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 82</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-257">
<title>Ich bete an die Macht der Liebe</title>
<author ref="kbga-actors-797">Tersteegen, Gerhard</author>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 662</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-300">
<title>Ich bin ein Gast auf Erden</title>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 321</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 529</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 753</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-189">
<title>Ich bleib’ bei dir!</title>
<author ref="kbga-actors-1385">Moraht, Adolf</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 257</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-13">
<title>Ich erhebe mein Gemüte</title>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 6</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-80">
<title>Ich habe nun den Grund gefunden</title>
<author ref="kbga-actors-1396">Rothe, Johann Andreas</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 229</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 3</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 3</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 262</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 354</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 262</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 299</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-207">
<title>Ich hatt’ einen Kameraden</title>
<author ref="kbga-actors-814">Uhland, Ludwig</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-222">
<title>Ich singe Dir mit Herz und Mund</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 324</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 4</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 723</biblScope>
<ref target="https://de.wikipedia.org/wiki/Ich_singe_dir_mit_Herz_und_Mund">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q25303395">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-68">
<title>Ich will dich lieben, meine Stärke</title>
<author ref="kbga-actors-864">Angelus Silesius</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 241</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 318</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 400</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 682</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-324">
<title>Ich will dich lieben, meine Stärke</title>
<author ref="kbga-actors-">Scheffler, J.</author>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 682</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 400</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-85">
<title>Im Wald und auf der Heide, da such’ ich meine Freude</title>
<author ref="kbga-actors-5806">Bornemann, Johann Wilhelm Jakob</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-93">
<title>Immer fröhlich, immer fröhlich, alle Tage Sonnenschein</title>
<author ref="kbga-actors-5848">Reitz, J. A.</author>
<biblScope corresp="kbga-bibls-1090" type="songbook">REICHSLIEDER, Nr. 229</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-18">
<title>In allen meinen Taten</title>
<author ref="kbga-actors-1354">Fleming, Paul</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 279</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 263</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 292</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 368</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 676</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-104">
<title>Ist Gott für mich, so trete</title>
<author ref="kbga-actors-131">Gerhardt, Paul</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 225</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 259</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 351</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 250</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 656</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-38">
<title>Jauchzet, ihr Himmel</title>
<author ref="kbga-actors-797">Tersteegen, Gerhard</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 125</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 99</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 404</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 41</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-160">
<title>Jehovah, Jehovah, Jehovah, deinem Namen sei Ehre, Macht und Ruhm</title>
<author ref="kbga-actors-8814">Pfeffel, Gottlieb Konrad</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 177</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-152">
<title>Jerusalem, du hochgebaute Stadt</title>
<author ref="kbga-actors-1384">Meyfart, Johann Matthäus</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 343</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 371</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 150</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 320</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 851</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-70">
<title>Jesu, meine Freude</title>
<author ref="kbga-actors-5696">Franck, Johann</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 240</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 280</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 396</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-81">
<title>Jesu, meines Lebens Leben</title>
<author ref="kbga-actors-8798">Homburg, Ernst Christoph</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 122</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 146</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 86</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 444</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-279">
<title>Jesu, Seelenfreund der Deinen</title>
<author ref="kbga-actors-5709">Hahn, Johann Michael</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 181</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-15">
<title>Jesus Christus herrscht als König</title>
<author ref="kbga-actors-2192">Hiller, Philipp Friedrich</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 336</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 96</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 142</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 123</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 492</biblScope>
<ref target="https://de.wikipedia.org/wiki/Jesus_Christus_herrscht_als_König">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q111075574">wikidata</ref>
<ref target="https://d-nb.info/gnd/7634867-2">gnd</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-26">
<title>Jesus lebt, mit ihm auch ich</title>
<author ref="kbga-actors-1000">Gellert, Christian Fürchtegott</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 169</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 132</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 115</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 482</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-89">
<title>Jesus, meine Zuversicht</title>
<author ref="kbga-actors-8792">Schwerin, Otto von</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 344</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 165</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 526</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 256</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 330</biblScope>
<ref target="https://de.wikipedia.org/wiki/Jesus,_meine_Zuversicht">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q43250686">wikidata</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-227">
<title>Jetzt, da die Zeit sich nähert deiner Leiden</title>
<author ref="kbga-actors-1383">Meyer, Conrad Ferdinand</author>
</bibl>
<bibl type="song" xml:id="kbga-songs-176">
<title>Kehre wieder, kehre wieder…</title>
<author ref="kbga-actors-1254">Spitta, Karl Johann Philipp</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 222</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-73">
<title>Komm, o komm, du Geist des Lebens</title>
<author ref="kbga-actors-8651">Held, Heinrich</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 148</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 184</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 134</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 106</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 509</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-99">
<title>Komm, Schöpfer Geist</title>
<author ref="kbga-actors-1360">Fröhlich, Abraham Emanuel</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 146</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 177</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 126</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 499</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-250">
<title>Kommt ins Reich der Liebe</title>
<author ref="kbga-actors-9041">Woltersdorf, Emil Gottlieb</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 303</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-132">
<title>Kommt, Kinder [Brüder], laßt uns gehen</title>
<author ref="kbga-actors-797">Tersteegen, Gerhard</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 327</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 325</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 393</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 272</biblScope>
<ref target="https://d-nb.info/gnd/115998266X">gnd</ref>
</bibl>
<bibl type="song" xml:id="kbga-songs-286">
<title>Kyrie eleison</title>
<author ref="kbga-actors-261">Luther, Martin</author>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 138</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-260">
<title>Lasset uns mit Jesus ziehen</title>
</bibl>
<bibl type="song" xml:id="kbga-songs-261">
<title>Lasset uns mit Jesus ziehen</title>
<author ref="kbga-actors-9190">Birken, Siegmund von</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 295</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 384</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-263">
<title>Lasst Jehovah hoch erheben</title>
<author ref="kbga-actors-2685">Widmer, Leonhard</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 23</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-14">
<title>Licht, das in die Welt gekommen</title>
<author ref="kbga-actors-3934">Stier, Rudolf Ewald</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 363</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-312">
<title>Liebe, die du mich zum Bilde</title>
<author ref="kbga-actors-864">Angelus Silesius</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 242</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 401</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-122">
<title>Liebster Jesu, wir sind hier, dich und dein Wort anzuhören</title>
<author ref="kbga-actors-2169">Clausnitzer, Tobias</author>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 171</biblScope>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 198</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 161</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 159</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-322">
<title>Lied Nr.43</title>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 572</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 450</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-55">
<title>Lob Gott getrost mit Singen</title>
<author ref="kbga-actors-8755">Weiße, Michael</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 346</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 205</biblScope>
</bibl>
<bibl type="song" xml:id="kbga-songs-58">
<title>Lobe den Herren, den mächtigen König der Ehren</title>
<author ref="kbga-actors-2670">Neander, Joachim</author>
<biblScope corresp="kbga-bibls-1085" type="songbook">RKG, Nr. 52</biblScope>
<biblScope corresp="kbga-bibls-1086" type="songbook">EKG, Nr. 234</biblScope>
<biblScope corresp="kbga-bibls-1087" type="songbook">GERS, Nr. 6</biblScope>
<biblScope corresp="kbga-bibls-1088" type="songbook">EG, Nr. 317</biblScope>
<biblScope corresp="kbga-bibls-1089" type="songbook">RG, Nr. 242</biblScope>
<ref target="https://de.wikipedia.org/wiki/Lobe_den_Herren,_den_mächtigen_König_der_Ehren">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q1729571">wikidata</ref>