-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathich_steh_an_deiner_krippe_hier.ly
186 lines (164 loc) · 3.66 KB
/
ich_steh_an_deiner_krippe_hier.ly
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
\version "2.14.2"
\include "deutsch.ly"
\include "default.ly"
\paper {
system-system-spacing #'basic-distance = #18
}
snotes = \relative c'' {
\partial 4
g4
c d es c
b4. as8 g4 \breathe b
es,4. d8 es4 f
g2 g4 \breathe g
c d es c
b4. as8 g4 \breathe b
es,4. d8 es4 f
g2 g4 \breathe b
es b c b
as4. b8 g4 \breathe b
es b c b
as4. b8 g4 \breathe g
a h c8[ es] d[ c]
%\set Timing.measurePosition = #(ly:make-moment 1 4)
h2 c4\fermata
\bar "|."
}
anotes = \relative c' {
\partial 4
es8[ f]
g4 f es8[ f] g[ es]
f[ d] es[ f] es4 \breathe b
c4. d8 c4 d8[ c]
d2 d4 \breathe es8[ f]
g4 f es8[ f] g[ es]
f[ d] es[ f] es4 \breathe b
c4. d8 c4 d8[ c]
d2 d4 \breathe es8[ f]
g[ as] b[ g] as4 es
f4. d8 es4 \breathe g8[ f]
es[ f] g[ f] es4 es
es d es \breathe es
f g g as
g4. f8 es4\fermata
}
tnotes = \relative c' {
\partial 4
c4
g g c c
f,4. b8 b4 \breathe g
g g c8[ b] as[ c]
c2 h4 \breathe c
g g c c
f,4. b8 b4 \breathe g
g g c8[ b] as[ c]
c2 h4 \breathe b
b es es4. b8
c4 b b \breathe b
c b as b8[ g]
c4 b b \breathe c
c d c f8[ es]
d2 c4 \fermata
}
bnotes = \relative c {
\partial 4
\repeat unfold 2 {
c8[ d]
es[ d] c[ h] c[ d] es[ c]
d[ b] c[ d] es4 \breathe es8[ d]
c[ g'] c[ b] as[ g] as4
g2 g,4 \breathe }
g'8[ f]
es[ f] g[ es] as4. g8
f8[ es] d[ f] es4 \breathe es8[ d]
c[ d] es[ d] es[ d] g[ es]
f4 b, es c
f8[ es] f[ d] es4 f
g g, c\fermata
}
choraltextone = \lyricmode {
\set stanza = #"1. "
Ich steh’ an dei -- ner Krip -- pen hier,
o Je -- su, du mein Le -- ben;
ich kom -- me, bring und schen -- ke dir,
was du mir hast ge -- ge -- ben.
Nimm hin, es ist mein Geist und Sinn,
Herz, Seel und Mut, nimm al -- les hin
und lass dir’s wohl ge -- fal -- len.
}
choraltextfour = \lyricmode {
\set stanza = #"4. "
Ich se -- he dich mit Freu -- den an
und kann mich nicht satt se -- hen;
und weil ich nun nichts wei -- ter kann,
bleib ich an -- be -- tend ste -- hen.
O dass mein Sinn ein Ab -- grund wär
und mei -- ne Seel ein wei -- tes Meer,
dass ich dich möch -- te fas -- sen.
}
choraltextnine = \lyricmode {
\set stanza = #"9. "
Eins a -- ber hoff ich, wirst du mir,
mein Hei -- land nicht ver -- sa -- gen:
dass ich dich mö -- ge für und für
in, bei und an mir tra -- gen.
So lass mich doch dein Kripp -- lein sein;
komm, komm und le -- ge bei mir ein
dich und all dei -- ne Freu -- den.
}
spart = {
\new Staff <<
\new Voice = "s" {
\key g \minor
\autoBeamOff
\snotes
}
\new Lyrics \lyricsto "s" \choraltextone
\new Lyrics \lyricsto "s" \choraltextfour
\new Lyrics \lyricsto "s" \choraltextnine
>>
}
\bookpart {
\header {
title = "Ich steh an deiner Krippe hier (Mehrstimmig)"
composer = "Melodie: Johann Sebastian Bach"
poet = "Text: Paul Gerhardt"
opus = "BWV 469"
tagline = ""
}
% #(set-global-staff-size 19)
\score {
\new ChoirStaff <<
\new Staff <<
\key g \minor
\new Voice = "s" {
\autoBeamOff
\voiceOne
\snotes
}
\new Voice = "a" {
\autoBeamOff
\voiceTwo
\anotes
}
\new Lyrics \lyricsto "s" \choraltextone
\new Lyrics \lyricsto "s" \choraltextfour
\new Lyrics \lyricsto "s" \choraltextnine
>>
\new Staff <<
\key g \minor
\clef bass
\new Voice = "t" {
\autoBeamOff
\voiceOne
\tnotes
}
\new Voice = "b" {
\autoBeamOff
\voiceTwo
\bnotes
}
>>
>>
}
}