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 /Jeder_braucht_Brot | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Jeder_braucht_Brot')
-rw-r--r-- | Jeder_braucht_Brot/Jeder_braucht_Brot.ly | 36 | ||||
-rw-r--r-- | Jeder_braucht_Brot/stimmen.ly | 49 | ||||
-rw-r--r-- | Jeder_braucht_Brot/texte.ly | 28 |
3 files changed, 113 insertions, 0 deletions
diff --git a/Jeder_braucht_Brot/Jeder_braucht_Brot.ly b/Jeder_braucht_Brot/Jeder_braucht_Brot.ly new file mode 100644 index 0000000..ea71b75 --- /dev/null +++ b/Jeder_braucht_Brot/Jeder_braucht_Brot.ly @@ -0,0 +1,36 @@ +\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 \pausen + \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 { \clef "bass" \pausen } + \new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie } + >> + >> + \layout { + indent = #0 + } +} diff --git a/Jeder_braucht_Brot/stimmen.ly b/Jeder_braucht_Brot/stimmen.ly new file mode 100644 index 0000000..72ae91a --- /dev/null +++ b/Jeder_braucht_Brot/stimmen.ly @@ -0,0 +1,49 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key d \major + %\override Staff.TimeSignature #'style = #'() + \time 4/4 + \autoBeamOff + } + +% Die Stimmen + + pausen = \relative c { + \repeat volta 3 { s1*7 | s2. r4 | } s1*2 | \bar "|." + } + + sopranMelodie = \relative d' { + \repeat volta 3 { + d4 d8 e fis4 fis8 g | e2 e | + d4 d8 e fis4 fis8 g | a1 | + a4 d8 d d4 cis8 h | a2 fis | + d4 g8 g e4 d8 cis d2. s4 | } + d1 | d | \bar "|." + } + altMelodie = \relative d' { + \repeat volta 3 { + d4 d8 d d4 d8 d | d2 cis | + d4 d8 d d4 d8 d | e1 | + d4 fis8 fis g4 g8 g | e2 d | + d4 d8 d cis4 h8 a a2. s4 | } + h1 | a | \bar "|." + } + tenorMelodie = \relative fis { + \repeat volta 3 { + fis4 fis8 g a4 a8 h | a2 a | + fis4 fis8 g a4 a8 h | d4 h cis2 | + a4 a8 a h4 e8 d | cis2 h | + h4 h8 h a4 g8 g fis2. s4 | } + g1 | fis | \bar "|." + } + bassMelodie = \relative d { + \repeat volta 3 { + d4 d8 d d4 d8 d | a2 a | + d4 d8 d d4 d8 d | a'1 | + fis4 d8 d g4 e8 e | a,2 h | + g4 g8 g a4 a8 a d2. s4 | } + g,1 | d' | \bar "|." + } diff --git a/Jeder_braucht_Brot/texte.ly b/Jeder_braucht_Brot/texte.ly new file mode 100644 index 0000000..986c78f --- /dev/null +++ b/Jeder_braucht_Brot/texte.ly @@ -0,0 +1,28 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + textI = \lyricmode { + \set stanza = "1." + Je -- der braucht Brot, das ihn sät -- tigt; + je -- der den Trank, der ihn heilt; + je -- der ein Wort, das ihn froh macht; + je -- der ein Le -- ben, das bleibt. + } + textII = \lyricmode { + \set stanza = "2." + Gib uns das Brot, das uns sät -- tigt; + reich uns den Trank, der uns heilt; + sag uns das Wort, das uns froh macht; + schenk uns das Le -- ben, das bleibt. + } + textIII = \lyricmode { + \set stanza = "3." + Du bist das Brot, das uns sät -- tigt; + du bist der Trank, der uns heilt; + du bist das Wort, das uns froh macht; + du bist das Le -- ben, das bleibt. + A -- men. + } |