diff options
author | Erich Eckner <git@eckner.net> | 2016-09-10 13:22:05 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-09-10 13:22:05 +0200 |
commit | 8c99e7a98e3cc7eeab1f2229ce1b58cebbc5f94d (patch) | |
tree | ce4298c3272e8330905001d42c6a3e031bcd8654 /Fuerchte_dich_nicht | |
parent | 987fb530f59d84670c2634d5c40d70a4e4d2d117 (diff) | |
download | Musik-8c99e7a98e3cc7eeab1f2229ce1b58cebbc5f94d.tar.xz |
Fuerchte_dich_nicht neu
Diffstat (limited to 'Fuerchte_dich_nicht')
-rw-r--r-- | Fuerchte_dich_nicht/Fuerchte_dich_nicht.ly | 39 | ||||
-rw-r--r-- | Fuerchte_dich_nicht/stimmen.ly | 82 | ||||
-rw-r--r-- | Fuerchte_dich_nicht/texte.ly | 23 |
3 files changed, 144 insertions, 0 deletions
diff --git a/Fuerchte_dich_nicht/Fuerchte_dich_nicht.ly b/Fuerchte_dich_nicht/Fuerchte_dich_nicht.ly new file mode 100644 index 0000000..8bef826 --- /dev/null +++ b/Fuerchte_dich_nicht/Fuerchte_dich_nicht.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") + +\pointAndClickOff + +\header { + title = "Fürchte dich nicht" + composer = "Text & Melodie: Fritz Baltruweit 1981" + tagline = "" +} +\paper { + top-margin = 5 +} + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = frauen { \global \oneVoice \pausen } + \new Voice = sopran { \global \voiceOne \sopranMelodie } + \new Voice = alt { \global \voiceTwo \altMelodie } + >> + \new Lyrics \lyricsto alt { \textI } + \new Lyrics \lyricsto alt { \textII } + \new Lyrics \lyricsto alt { \textIII } + \new Staff << + \new Voice = maenner { \global \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/Fuerchte_dich_nicht/stimmen.ly b/Fuerchte_dich_nicht/stimmen.ly new file mode 100644 index 0000000..57f4eba --- /dev/null +++ b/Fuerchte_dich_nicht/stimmen.ly @@ -0,0 +1,82 @@ +%some settings% vim: ai sw=2 lbr nu et + +\version "2.18" + +global = { + \key f \major + %\override Staff.TimeSignature #'style = #'() + \time 4/4 + \autoBeamOff +} + +% Die Stimmen + +pausen = { + s1 | + s2 r4 s | + s1*5 | + s2 r4 s | + s1 | + s2 r4 s | + s1*2 | \bar "|." +} + +sopranMelodie = \relative a' { + a2 a4 g | + f2 s4 f | + f e8 f g4 c, | + a'1 | + b2 b4 a | + g1 | + a2 a4 g | + f2 s4 f | + b b8 c d4 b | + g2 s4 f | + f2 e | + f1 | \bar "|." +} + +altMelodie = \relative f' { + f2 e4 e | + d2 s4 d | + d d8 d b4 c | + c1 | + d2 d4 f | + e1 | + e2 e4 e | + d2 s4 d | + d d8 e f4 f | + e2 s4 d | + d2 c | + c1 | \bar "|." +} + +tenorMelodie = \relative c' { + c2 c4 b | + a2 s4 a | + f f8 f g4 e | + f1 | + f2 g4 c | + c1 | + c2 c4 c | + a2 s4 a | + f f8 f b4 d | + c2 s4 a | + b2 g | + a1 | \bar "|." +} + +bassMelodie = \relative f { + f2 c4 c | + d2 s4 c | + b b8 b g4 c | + f1 | + b,2 g4 a8[ b] | + c1 | + a2 a4 c | + d2 s4 c | + b b8 b g4 b | + c2 s4 d | + b2 c | + f1 | \bar "|." +} diff --git a/Fuerchte_dich_nicht/texte.ly b/Fuerchte_dich_nicht/texte.ly new file mode 100644 index 0000000..f775e2e --- /dev/null +++ b/Fuerchte_dich_nicht/texte.ly @@ -0,0 +1,23 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + +textI = \lyrics { + \set stanza = "1." + Fürch -- te dich nicht, ge -- fan -- gen in dei -- ner Angst, mit der du lebst. + Fürch -- te dich nicht, ge -- fan -- gen in dei -- ner Angst. Mit ihr lebst du. +} + +textII = \lyrics { + \set stanza = "2." + Fürch -- te dich nicht, ge -- tra -- gen von sei -- nem Wort, von dem du lebst. + Fürch -- te dich nicht, ge -- tra -- gen von sei -- nem Wort. Von ihm lebst du. +} + +textIII = \lyrics { + \set stanza = "3." + Fürch -- te dich nicht, ge -- sandt in den neu -- en Tag, für den du lebst. + Fürch -- te dich nicht, ge -- sandt in den neu -- en Tag. Für ihn lebst du. +} |