diff options
author | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
commit | cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd (patch) | |
tree | 25be2d35abeec51d18d0204e199f3bdbf66826b1 /Die_Gott_lieben | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Die_Gott_lieben')
-rw-r--r-- | Die_Gott_lieben/Die_Gott_lieben.ly | 50 | ||||
-rw-r--r-- | Die_Gott_lieben/stimmen.ly | 54 | ||||
-rw-r--r-- | Die_Gott_lieben/texte.ly | 44 |
3 files changed, 148 insertions, 0 deletions
diff --git a/Die_Gott_lieben/Die_Gott_lieben.ly b/Die_Gott_lieben/Die_Gott_lieben.ly new file mode 100644 index 0000000..e5a9cf6 --- /dev/null +++ b/Die_Gott_lieben/Die_Gott_lieben.ly @@ -0,0 +1,50 @@ +\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 = "" +} +\paper { + top-margin = 5 +} + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = "frauen" { \global \pausen } + \new Voice = "sopran" { \global \voiceOne \sopranMelodie } + \new Voice = "alt" { \global \voiceTwo \altMelodie } + >> + \new Lyrics = "textRefrain" {} + \new Staff << + \new Voice = "maenner" { \global \pausen } + \new Voice = "tenor" { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = "bass" { \global \clef "bass" \voiceTwo \bassMelodie } + >> + \context Lyrics = "textRefrain" \lyricsto "bass" \textRefr + >> + \layout { + indent = #0 + } +} +\score { + \new Staff << + \new Voice = "alle" { \global \strMelodie } + \new Lyrics = "textI" {} + \new Lyrics = "textII" {} + \new Lyrics = "textIII" {} + \new Lyrics = "textIV" {} + \context Lyrics = "textI" \lyricsto "alle" \textStrI + \context Lyrics = "textII" \lyricsto "alle" \textStrII + \context Lyrics = "textIII" \lyricsto "alle" \textStrIII + \context Lyrics = "textIV" \lyricsto "alle" \textStrIV + >> + \layout { + indent = #0 + } +} diff --git a/Die_Gott_lieben/stimmen.ly b/Die_Gott_lieben/stimmen.ly new file mode 100644 index 0000000..f36946f --- /dev/null +++ b/Die_Gott_lieben/stimmen.ly @@ -0,0 +1,54 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key a \major + %\override Staff.TimeSignature #'style = #'() + \time 4/4 + \autoBeamOff + \partial 2 + } + +% Die Stimmen + + pausen = { + s2 | s1*3 | s2 + r4 s | s1 | r4 s2. | s1*5 | + s2 r4 s | s1 | r4 s2. | s1 | s2 + } + + sopranMelodie = \relative cis' { + cis4 e | a a a a | a2 a4 a | a2 e~ | e + s4 e | a2 a | s4 h h8 h4. | h1~ | h2 + a4 h | cis cis cis cis | cis2 cis4 h | a2 fis~ | fis + s4 a | a2 e | s4 h' a8 gis4. | a1~ | a2^\fermata \bar "|." + } + + altMelodie = \relative cis' { + cis4 e | cis cis cis cis | d2 d4 d | cis2 cis~ | cis + s4 e | cis2 cis | s4 dis dis8 dis4. | e2( fis | gis) + fis4 e | e e e e | eis2 eis4 gis | fis2 fis~ | fis + s4 fis | e2 e | s4 fis e8 e4. | e1~ | e2_\fermata \bar "|." + } + + tenorMelodie = \relative cis { + cis4 e | e e e e | fis2 fis4 fis | e2 e~ | e + s4 e | fis2 fis | s4 fis fis8 fis4. | gis2( a | h) + fis4 gis | a a a a | gis2 gis4 cis | cis2 a~ | a + s4 a | cis2 a | s4 d cis8 h4. | cis1~ | cis2^\fermata \bar "|." + } + + bassMelodie = \relative cis { + cis4 e | a, a a a | a2 a4 a | a2 a~ a + s4 e' | fis2 fis | s4 h, h8 h4. | e1~ | e2 + fis4 e | a, a a a | cis2 cis4 eis | fis2 fis4( e | d2) + s4 d | cis2 cis | s4 d4 e8 e4. | a,1~ | a2_\fermata \bar "|." + } + + strMelodie = \relative cis' { + cis4 d | e2. e4 | a a fis8 d4. | e1~ | + e2 cis4 e | a2. a4 | h h gis8 fis4. | e1~ | + e2 cis4 d | e2. e4 | a a fis8 d4. | e1~ | + e2 a4 a | a2. a4 | h h a8 gis4. | a1~ | a2 \bar "||" + } diff --git a/Die_Gott_lieben/texte.ly b/Die_Gott_lieben/texte.ly new file mode 100644 index 0000000..7e6476a --- /dev/null +++ b/Die_Gott_lieben/texte.ly @@ -0,0 +1,44 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + textRefr = \lyricmode { + \set stanza = "Refr." + \repeat unfold 2 { + Die Gott lie -- ben wer -- den sein wie die Son -- ne, die auf -- geht in ih -- rer Pracht. + } + } + + textStrI = \lyricmode { + \set stanza = "1." + Noch ver -- birgt die Dun -- kel -- heit das Licht + und noch se -- hen wir die Son -- ne nicht. + Doch schon zieht ein neu -- er Tag her -- auf + und das Licht des Mor -- gens leuch -- tet auf. + } + + textStrII = \lyricmode { + \set stanza = "2." + Vie -- le Trä -- nen wer -- den noch ge -- weint + und der Mensch ist noch des Men -- schen Feind. + Doch weil Je -- sus für die Fein -- de starb, + hof -- fen wir, weil er uns Hoff -- nung gab. + } + + textStrIII = \lyricmode { + \set stanza = "3." + Krieg und Ter -- ror sind noch nicht ge -- bannt + und das Un -- recht nimmt noch ü -- ber -- hand. + Doch der Tag, er steht schon vor der Tür. + Herr, du kommst! Wir dan -- ken dir da -- für. + } + + textStrIV = \lyricmode { + \set stanza = "4." + Noch ver -- birgt die Dun -- kel -- heit das Licht + und noch se -- hen wir den Him -- mel nicht. + Doch die Zeit der Schmer -- zen wird ver -- gehn + und dann wer -- den wir den Va -- ter sehn. + } |