blob: 21968c5f3fec790106b50a8be68c89f0e954ce7f (
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
68
69
70
71
72
73
74
|
\include "deutsch.ly"
#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 100 mm))) paper-alist))
#(set-default-paper-size "kindle")
\pointAndClickOff
Praes = {
\time 4/4
\key f \major
}
SopranA = \relative a' {
\repeat unfold 2 { a2 g4 a | f1 | } \alternative {{ d4 f f g | a1 | } { d,4 f f e | f1 | }}
}
SopranB = \relative g' {
\repeat unfold 2 { g2 a4 b | a1 | } \alternative {{ b4 c d b | g1 | } { b4 a g f | g1 | }}
}
AltA = \relative f' {
\repeat unfold 2 { f2 e4 e | d1 | } \alternative {{ d4 d d e | f1 | } { d4 a c c | c1 | }}
}
AltB = \relative e' {
\repeat unfold 2 { e2 f4 g | f1 | } \alternative {{ f4 f f f | e1 | } { f4 f d d | e1 | }}
}
TenorA = \relative c' {
\repeat unfold 2 { c2 c4 a | a1 | } \alternative {{ b4 a c c | c1 | } { b4 f g g | a1 | }}
}
TenorB = \relative c' {
\repeat unfold 2 { c2 c4 c | c1 | } \alternative {{ d4 c b d | c1 | } { d4 c b a | c1 | }}
}
BassA = \relative f {
\repeat unfold 2 { f2 c4 cis | d1 | b4 d c c | f1 | }
}
BassB = \relative c {
\repeat unfold 2 { c2 c4 c | f1 | } \alternative {{ b4 a g b | c1 | } { g,4 a b d | c1 | }}
}
\new ChoirStaff <<
\new Staff <<
{ \Praes \new Voice = "Sopran" { \voiceOne
\repeat unfold 2 { \SopranA \bar "||" }
\SopranB \bar "||"
\SopranA \bar "|."
}}
{ \Praes \new Voice = "Alt" { \voiceTwo
\repeat unfold 2 { \AltA \bar "||" }
\AltB \bar "||"
\AltA \bar "|." }}
>>
\new Staff <<
{ \Praes \new Voice = "Tenor" { \clef "bass" \voiceOne
\repeat unfold 2 { \TenorA \bar "||" }
\TenorB \bar "||"
\TenorA \bar "|."
}}
{ \Praes \new Voice = "Bass" { \clef "bass" \voiceTwo
\repeat unfold 2 { \BassA \bar "||" }
\BassB \bar "||"
\BassA \bar "|." }}
\new Lyrics \lyricsto "Bass" {
\set stanza = #"1. " Se -- lig seid ihr, wenn ihr ein -- fach lebt.
Se -- lig seid ihr, wenn ihr Las -- ten tragt.
\set stanza = #"2. " Se -- lig seid ihr, wenn ihr lie -- ben lernt.
Se -- lig seid ihr, wenn ihr Gü -- te wagt.
\set stanza = #"3. " Se -- lig seid ihr, wenn ihr Lei -- den merkt.
Se -- lig seid ihr, wenn ihr ehr -- lich bleibt.
\set stanza = #"4. " Se -- lig seid ihr, wenn ihr Frie -- den macht.
Se -- lig seid ihr, wenn ihr Un -- recht spürt.
}
>>
>>
|