diff options
author | Erich Eckner <git@eckner.net> | 2014-12-09 15:36:27 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2014-12-09 15:36:27 +0100 |
commit | 28259306ae985b807dd6cbc1aa751512c2d21c69 (patch) | |
tree | dc306cc6b5c8da9c217d734c351d0b406edf5ff0 /Tochter_Zion | |
parent | 718d0c8b04c3035a20b3852d6df4ff5844fa7f8a (diff) | |
download | Musik-28259306ae985b807dd6cbc1aa751512c2d21c69.tar.xz |
Tochter_Zion eingefügt
Diffstat (limited to 'Tochter_Zion')
-rw-r--r-- | Tochter_Zion/Tochter_Zion.ly | 39 | ||||
-rw-r--r-- | Tochter_Zion/stimmen.ly | 119 | ||||
-rw-r--r-- | Tochter_Zion/texte.ly | 24 |
3 files changed, 182 insertions, 0 deletions
diff --git a/Tochter_Zion/Tochter_Zion.ly b/Tochter_Zion/Tochter_Zion.ly new file mode 100644 index 0000000..bdbfa13 --- /dev/null +++ b/Tochter_Zion/Tochter_Zion.ly @@ -0,0 +1,39 @@ +\include "deutsch.ly" +\include "stimmen.ly" +\include "texte.ly" + +#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist)) +#(set-default-paper-size "kindle") + +\header { + tagline = "" + title = "Tochter Zion" +} +\paper { + top-margin = 5 +} + +\score { + \layout { + indent = #0 + \context { + \Staff + \RemoveEmptyStaves + \override VerticalAxisGroup #'remove-first = ##t + } + } + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = sopran { \global \voiceOne \sopranMelodie } + \new Voice = alt { \global \voiceTwo \altMelodie } + >> + \new Lyrics \lyricsto sopran { \textI} + \new Lyrics \lyricsto sopran { \textII} + \new Lyrics \lyricsto sopran { \textIII} + \new Staff << + \new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie } + >> + >> +} diff --git a/Tochter_Zion/stimmen.ly b/Tochter_Zion/stimmen.ly new file mode 100644 index 0000000..9641c15 --- /dev/null +++ b/Tochter_Zion/stimmen.ly @@ -0,0 +1,119 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.18" + + global = { + \key es \major + %\override Staff.TimeSignature #'style = #'() + \time 2/2 + \autoBeamOff + } + +% Die Stimmen + + sopranMelodie = \relative b' { + b2 g4.( as8) | + b2 es, | + f8[( g as b] as4) g | + f1\breathe | + g8[( as b c] b4) b | + es2 b | + as4( g f4.) es8 | + es1\breathe | + g8[( f g as] g4) g | + f2 es | + as4( g f) es | + d1\breathe | + es8[( d es f] es4) es | + c'2 a | + b4( c8[ b] a4.) b8 | + b1\breathe | + b2 g4.( as8) | + b2 es, | + f8[( g as b] as4) g | + f1\breathe | + g8[( as b c] b4) b | + es2 b | + as4( g f4.) es8 | + es1 | \bar "|." + } + + altMelodie = \relative es' { + es2 es4.( d8) | + es2 b | + d8[( es f g] f4) es | + d1\breathe | + es2. es4 | + es2 es | + d4( es2) d4 | + es1\breathe | + es8[( d es f] es4) es | + d2 c | + f4( es d) c | + h1\breathe | + c8[( h c d] c4) c | + es2. es4 | + d4( es8[ d] c4) f | + f1\breathe | + es2 es4.( d8) | + es2 b | + d8[( es f g] f4) es | + d1\breathe | + es2. es4 | + es2 es | + d4( es2) d4 | + es1 | \bar "|." + } + + tenorMelodie = \relative g { + g2 b4.( as8) | + g2 b | + as4( f b) b | + b1\breathe | + b2. b4 | + b2 g | + as4( b2) as4 | + g1\breathe | + b2. b4 as2 g | + h4( c as) g | + g1\breathe | + g2. g4 | + f2 c' | + b4( g c) c | + d1\breathe | + g,2 b4.( as8) | + g2 b | + as4( f b) b | + b1\breathe | + b2. b4 | + b2 g | + as4( b2) as4 | + g1 | \bar "|." + } + + bassMelodie = \relative es { + es2 g4.( f8) | + es2 g | + f4.( es8 d4) es | + b1\breathe | + es8[( f g as] g4) g | + g2 es | + f4( g8[ as] b4) b, | + es1\breathe | + es2. es4 | + b2 c | + d4( es f) c | + g'1\breathe | + c,2. b4 | + a2 f' | + g4( es f) f | + b,1\breathe | + es2 g4.( f8) | + es2 g | + f4.( es8 d4) es | + b1\breathe | + es8[( f g as] g4) g | + g2 es | + f4( g8[ as] b4) b, | + es1 | \bar "|." + } diff --git a/Tochter_Zion/texte.ly b/Tochter_Zion/texte.ly new file mode 100644 index 0000000..2b69594 --- /dev/null +++ b/Tochter_Zion/texte.ly @@ -0,0 +1,24 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + textI = \lyricmode { + \set stanza = "1." + Toch -- ter Zi -- on, freu -- e dich, jauch -- ze laut, Je -- ru -- sa -- lem! + Sieh, dein Kö -- nig kommt zu dir, ja, er kommt, der Frie -- de -- fürst. + Toch -- ter Zi -- on, freu -- e dich, jauch -- ze laut, Je -- ru -- sa -- lem! + } + textII = \lyricmode { + \set stanza = "2." + Ho -- si -- an -- na, Da -- vids Sohn, sei ge -- seg -- net dei -- nem Volk! + Grün -- de nun dein e -- wig Reich, Ho -- si -- an -- na in der Höh! + Ho -- si -- an -- na, Da -- vids Sohn, sei ge -- seg -- net dei -- nem Volk! + } + textIII = \lyricmode { + \set stanza = "3." + Ho -- si -- an -- na, Da -- vids Sohn, sei ge -- grü -- ßet, Kö -- nig mild! + E -- wig steht dein Frie -- dens -- thron, du, des ew -- gen Va -- ters Kind. + Ho -- si -- an -- na, Da -- vids Sohn, sei ge -- grü -- ßet, Kö -- nig mild! + } |