summaryrefslogtreecommitdiff
path: root/Stimmt_an
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2014-09-04 10:59:12 +0200
committerErich Eckner <git@eckner.net>2014-09-04 10:59:12 +0200
commitcd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd (patch)
tree25be2d35abeec51d18d0204e199f3bdbf66826b1 /Stimmt_an
downloadMusik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz
initialer Commit
Diffstat (limited to 'Stimmt_an')
-rw-r--r--Stimmt_an/Stimmt_an.ly34
-rw-r--r--Stimmt_an/stimmen.ly27
-rw-r--r--Stimmt_an/texte.ly20
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
+ }