diff options
author | Erich Eckner <git@eckner.net> | 2016-09-28 13:31:40 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-09-28 13:31:40 +0200 |
commit | 8b777b100052a871f92878d45cf11d5f9c52969e (patch) | |
tree | 1ae233b65c6fcbc21981aeb3867386f5909c8678 /Froehlichkeit_und_leichtes_Leben | |
parent | 07d4059764f8ea388a225f70e01a6ce83ddab9c0 (diff) | |
download | Musik-8b777b100052a871f92878d45cf11d5f9c52969e.tar.xz |
Froehlichkeit_und_leichtes_Leben neu
Diffstat (limited to 'Froehlichkeit_und_leichtes_Leben')
-rw-r--r-- | Froehlichkeit_und_leichtes_Leben/Froehlichkeit_und_leichtes_Leben.ly | 55 | ||||
-rw-r--r-- | Froehlichkeit_und_leichtes_Leben/stimmen.ly | 133 | ||||
-rw-r--r-- | Froehlichkeit_und_leichtes_Leben/texte.ly | 68 |
3 files changed, 256 insertions, 0 deletions
diff --git a/Froehlichkeit_und_leichtes_Leben/Froehlichkeit_und_leichtes_Leben.ly b/Froehlichkeit_und_leichtes_Leben/Froehlichkeit_und_leichtes_Leben.ly new file mode 100644 index 0000000..5b996dd --- /dev/null +++ b/Froehlichkeit_und_leichtes_Leben/Froehlichkeit_und_leichtes_Leben.ly @@ -0,0 +1,55 @@ +\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 = "Fröhlichkeit und leichtes Leben" + tagline = "" +} + +\paper { + top-margin = 5 +} + +inhalt = { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = sopran { \global \sopranMelodie } + >> + \new Lyrics \lyricsto sopran { \textAs } + \new Lyrics \lyricsto sopran { \textBs } + \new Staff << + \new Voice = alt { \global \altMelodie } + >> + \new Lyrics \lyricsto alt { \textAa } + \new Lyrics \lyricsto alt { \textBa } + \new Staff << + \new Voice = maenner { \global \clef "bass" \maennerMelodie } + >> + \new Lyrics \lyricsto maenner { \textAm } + \new Lyrics \lyricsto maenner { \textBm } + >> +} + +\score { + \inhalt + \layout { + indent = #0 + } +} + +\score { + \unfoldRepeats { \inhalt } + \midi { + \context { + \Score + tempoWholesPerMinute = #(ly:make-moment 72 2) + } + } +} diff --git a/Froehlichkeit_und_leichtes_Leben/stimmen.ly b/Froehlichkeit_und_leichtes_Leben/stimmen.ly new file mode 100644 index 0000000..2b2b586 --- /dev/null +++ b/Froehlichkeit_und_leichtes_Leben/stimmen.ly @@ -0,0 +1,133 @@ +%some settings% vim: ai sw=2 lbr nu et + +\version "2.18" + +global = { + \key f \major + %\override Staff.TimeSignature #'style = #'() + \time 2/4 + \autoBeamOff + \partial 4 +} + +% Die Stimmen + +sopranMelodie = \relative f' { + \repeat volta 2 { + f8 g | + a f b a | + g f\breathe a b | + c a d c | + b a\breathe c c | + c c d c | + c b\breathe b b | + b c16[ d] c8 b | + b a\breathe c c | + d d c e, | + f4\breathe c'8 c | + d d c e, | + f4 + } + \repeat volta 2 { + c'8 c | + c2~ | + c~ | + c~ | + c | + c4\breathe d8 d | + c a b g | + a4\breathe c8 d | + b g r4 | + r c8 d | + b g r4 | + r c8 c | + c c d c | + c b\breathe b b | + b c16[ d] c8 b | + b a\breathe c c | + d d c e, | + f4\breathe c'8 c | + d d c e, | + f4 + } +} + +altMelodie = \relative f' { + \repeat volta 2 { + r4 | + r2 | + r4 f8 g | + a f b a | + g f\breathe a a | + a a b a | + a g g g | + g a16[ b] a8 g | + g f\breathe a a | + b b a g | + a4\breathe a8 a | + b b a g | + <f a>4 + } + \repeat volta 2 { + r4 | + r a8 b | + c a b g | + a f\breathe a b | + c a b g | + a f\breathe b b | + a f g e | + f4\breathe a8 b | + g e r4 | + r a8 b | + g e r4 | + r a8 a | + a a b a | + a g\breathe g g | + g a16[ b] a8 g | + g f\breathe a a | + b b a g | + a4\breathe a8 a | + b b a g | + <f a>4 + } +} + +maennerMelodie = \relative f { + \repeat volta 2 { + r4 | + r2 | + r2 | + r2 | + r4 f8 f | + f f f f | + c' c,\breathe c c | + c c c c | + f f f8 f | + b, b c c | + f4\breathe f8 f | + b b c c, | + f4 + } + \repeat volta 2 { + r | + r f8 g | + a f g e | + f f\breathe f g | + a f g e | + f f\breathe b b | + c c c, c | + f4 r | + r c16[ d] e[ c] | + f8 f r4 | + r c16[ d] e[ c] | + f8 f\breathe f f | + f f f f | + c' c,\breathe c c | + c c c c | + f f\breathe f f | + b, b c c | + f4\breathe f8 f | + b b c c, | + f4 + } +} diff --git a/Froehlichkeit_und_leichtes_Leben/texte.ly b/Froehlichkeit_und_leichtes_Leben/texte.ly new file mode 100644 index 0000000..b1d44da --- /dev/null +++ b/Froehlichkeit_und_leichtes_Leben/texte.ly @@ -0,0 +1,68 @@ + +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + +textArest = \lyricmode { + mö -- ge dir der Herr -- gott ge -- ben, mö -- ge dir der Herr -- gott ge -- ben: + Glück, Ge -- sund -- heit auch da -- bei, Glück, Ge -- sund -- heit auch da -- bei. +} + +FulL = \lyricmode { + Fröh -- lich -- keit und leich -- tes Le -- ben + \textArest +} + +textBrest = \lyricmode { + mö -- ge dei -- nen Wohl -- stand he -- ben, mö -- ge dei -- nen Wohl -- stand he -- ben: + Kum -- mer sei dir ei -- ner -- lei, Kum -- mer sei dir ei -- ner -- lei. +} + +eTufS = \lyricmode { + erns -- tes Tun und fro -- hes Stre -- ben + \textBrest +} + +saeml = \lyricmode { + sto -- ßet an: er mö -- ge le -- ben, sto -- ßet an: er mö -- ge le -- ben, + sto -- ßet an, er le -- be hoch: ein -- mal, zwei -- mal, drei -- mal hoch! +} + +kheG = \lyricmode { + kommt her -- bei, er -- hebt das Glas! +} + +AiFlusleFe = \lyricmode { + Auf ihr Freun -- de, lasst uns sin -- gen, lasst ein Freu -- den -- lied er -- klin -- gen, +} + +textAs = \lyricmode { + Fröh -- lich -- keit und leich -- tes Le -- ben, + \FulL + Auf ihr Freun -- de, \kheG Auf ihr Freun -- de auf ihr Freun -- de \saeml +} + +textAa = \lyricmode { + \FulL + \AiFlusleFe \kheG Auf ihr Freun -- de auf ihr Freun -- de \saeml +} + +textAm = \lyricmode { + \textArest + \AiFlusleFe \kheG lasst uns sin -- gen, lasst es klin -- gen, \saeml +} + +textBs = \lyricmode { + Erns -- tes Tun und fro -- hes Stre -- ben, + \eTufS +} + +textBa = \lyricmode { + \eTufS +} + +textBm = \lyricmode { + \textBrest +} |