blob: 3b0a276a7984ef97cccd2cb112c80ddc183d4c05 (
plain)
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
|
\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)
%spezifisch%
\version "2.19.80"
\pointAndClickOff
\header {
tagline = ""
}
\paper {
top-margin = 5
print-all-headers = ##t
}
\score {
\header {
title = "Lobet den Herren alle"
poet = "Paul Gerhardt (1607-1676)"
composer = "Melodie: Johann Crüger: 1656"
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = "erste" { \global \melodieErste }
>>
\new Lyrics = "textErsteI" {}
\new Lyrics = "textErsteII" {}
\new Lyrics = "textErsteIII" {}
\new Lyrics = "textErsteIV" {}
\new Lyrics = "textErsteV" {}
\new Lyrics = "textErsteVI" {}
\new Lyrics = "textErsteVII" {}
\new Staff <<
\new Voice = "unten" { \global \oneVoice \pausen }
\new Voice = "zweite" { \global \voiceOne \melodieZweite }
\new Voice = "dritte" { \global \voiceTwo \melodieDritte }
>>
\new Lyrics = "textZweiteI" {}
\new Lyrics = "textZweiteII" {}
\new Lyrics = "textZweiteIII" {}
\new Lyrics = "textZweiteIV" {}
\new Lyrics = "textZweiteV" {}
\new Lyrics = "textZweiteVI" {}
\new Lyrics = "textZweiteVII" {}
\context Lyrics = "textErsteI" \lyricsto "erste" \textErsteI
\context Lyrics = "textErsteII" \lyricsto "erste" \textErsteII
\context Lyrics = "textErsteIII" \lyricsto "erste" \textErsteIII
\context Lyrics = "textErsteIV" \lyricsto "erste" \textErsteIV
\context Lyrics = "textErsteV" \lyricsto "erste" \textErsteV
\context Lyrics = "textErsteVI" \lyricsto "erste" \textErsteVI
\context Lyrics = "textErsteVII" \lyricsto "erste" \textErsteVII
\context Lyrics = "textZweiteI" \lyricsto "zweite" \textZweiteI
\context Lyrics = "textZweiteII" \lyricsto "zweite" \textZweiteII
\context Lyrics = "textZweiteIII" \lyricsto "zweite" \textZweiteIII
\context Lyrics = "textZweiteIV" \lyricsto "zweite" \textZweiteIV
\context Lyrics = "textZweiteV" \lyricsto "zweite" \textZweiteV
\context Lyrics = "textZweiteVI" \lyricsto "zweite" \textZweiteVI
\context Lyrics = "textZweiteVII" \lyricsto "zweite" \textZweiteVII
>>
\layout {
indent = #0
}
}
|