diff options
Diffstat (limited to 'Stimmt_an')
-rw-r--r-- | Stimmt_an/Stimmt_an.ly | 34 | ||||
-rw-r--r-- | Stimmt_an/stimmen.ly | 27 | ||||
-rw-r--r-- | Stimmt_an/texte.ly | 20 |
3 files changed, 81 insertions, 0 deletions
diff --git a/Stimmt_an/Stimmt_an.ly b/Stimmt_an/Stimmt_an.ly new file mode 100644 index 0000000..35ff9f1 --- /dev/null +++ b/Stimmt_an/Stimmt_an.ly @@ -0,0 +1,34 @@ +\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 = "Stimmt an" +} +\paper { + top-margin = 5 +} + +\score { + << + \set Score.skipBars = ##t + \new Voice = melodieI { \global \melodieI } + \new Lyrics \lyricsto melodieI { \textMelodieI } + \new Voice = melodieII { \global \melodieII } + \new Lyrics \lyricsto melodieII { \textMelodieII } + \new Voice = melodieIII { \global \melodieIII } + \new Lyrics \lyricsto melodieIII { \textMelodieIII } + \new Voice = melodieIV { \global \melodieIV } + \new Lyrics \lyricsto melodieIV { \textMelodieIV } + \set Score.skipBars = ##t + \new Voice = ostinato { \clef "bass" \global \ostinato } + \new Lyrics \lyricsto ostinato { \textOstinato } + >> + \layout { + indent = #0 + } +} diff --git a/Stimmt_an/stimmen.ly b/Stimmt_an/stimmen.ly new file mode 100644 index 0000000..43c20c4 --- /dev/null +++ b/Stimmt_an/stimmen.ly @@ -0,0 +1,27 @@ +%some settings% vim: ai sw=2 lbr nu et + + global = { + \key f \major + \time 4/4 + \autoBeamOff + } + + melodieI = \relative c'' { + c2^\fermata c4 c | a a b4.( a8 | g4 f g) g | + } + + melodieII = \relative a' { + a^\fermata f2 e8 e | f4.( e8 d4) g | c,( f2 e4) | + } + + melodieIII = \relative f' { + f2^\fermata c | c' d | c4 a8[ b] c4.( b8) | + } + + melodieIV = \relative a' { + a2^\fermata g | f4 f2 b,4 | c( d) c2 | \bar ":|" + } + + ostinato = \relative f { + f2\breathe c' | f,4 f b g | c2.( c,4) | \bar ":|" + } diff --git a/Stimmt_an/texte.ly b/Stimmt_an/texte.ly new file mode 100644 index 0000000..dbccbde --- /dev/null +++ b/Stimmt_an/texte.ly @@ -0,0 +1,20 @@ + + textMelodieI = \lyricmode { + Stimmt an, stimmt an den Lob -- ge- + } + + textMelodieII = \lyricmode { + sang, lasst eu -- re Stimm' er -- klin- + } + + textMelodieIII = \lyricmode { + gen und hört nicht auf zu sin- + } + + textMelodieIV = \lyricmode { + - gen: Ich glau -- be an Gott! + } + + textOstinato = \lyricmode { + (Gott!) Ich glaub', ich glau -- be an + } |