diff options
author | Erich Eckner <git@eckner.net> | 2014-09-29 16:12:18 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2014-09-29 16:12:18 +0200 |
commit | 3e77f4f78801349aba391ed3db2d44d973f298c5 (patch) | |
tree | f02c4e551eb281364b4ef07c1b6511b8df8aa78d /Lasst_uns_nicht_lieben | |
parent | 8bd8e6593e8fd0a201d03f113776c1ec7f7c4e53 (diff) | |
download | Musik-3e77f4f78801349aba391ed3db2d44d973f298c5.tar.xz |
Lasst_uns_nicht_lieben
Diffstat (limited to 'Lasst_uns_nicht_lieben')
-rw-r--r-- | Lasst_uns_nicht_lieben/Lasst_uns_nicht_lieben.ly | 28 | ||||
-rw-r--r-- | Lasst_uns_nicht_lieben/stimmen.ly | 37 | ||||
-rw-r--r-- | Lasst_uns_nicht_lieben/texte.ly | 20 |
3 files changed, 85 insertions, 0 deletions
diff --git a/Lasst_uns_nicht_lieben/Lasst_uns_nicht_lieben.ly b/Lasst_uns_nicht_lieben/Lasst_uns_nicht_lieben.ly new file mode 100644 index 0000000..e216559 --- /dev/null +++ b/Lasst_uns_nicht_lieben/Lasst_uns_nicht_lieben.ly @@ -0,0 +1,28 @@ +\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 = "Lasst uns nicht lieben mit Worten" + composer = "Every Zabel, 2012" +} +\paper { + top-margin = 5 +} + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = melodie { \global \melodie } + >> + \new Lyrics \lyricsto melodie { \text } + >> + \layout { +% indent = #0 + } +} diff --git a/Lasst_uns_nicht_lieben/stimmen.ly b/Lasst_uns_nicht_lieben/stimmen.ly new file mode 100644 index 0000000..7298812 --- /dev/null +++ b/Lasst_uns_nicht_lieben/stimmen.ly @@ -0,0 +1,37 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key f \major + %\override Staff.TimeSignature #'style = #'() + \time 3/4 + \autoBeamOff + \partial 4 + } + +% Die Stimmen + + melodie = \relative c' { + \repeat volta 2 { + c4 | + f2 f4 | + a g c, | + g' g8 g g g | + b4 a g8 g | + a4( b) c | + b4. b8 a g | + } + \alternative { + { + f2( g4) | + \set Timing.measureLength = #(ly:make-moment 2/4) + a2 + } + { + \set Timing.measureLength = #(ly:make-moment 3/4) + f2( e4) | + f2 \bar "|." + } + } + } diff --git a/Lasst_uns_nicht_lieben/texte.ly b/Lasst_uns_nicht_lieben/texte.ly new file mode 100644 index 0000000..76e059a --- /dev/null +++ b/Lasst_uns_nicht_lieben/texte.ly @@ -0,0 +1,20 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + +text = \lyricmode { + \repeat volta 2 { + Lasst uns nicht lie -- ben mit Wor -- ten noch mit der Zun -- ge, + son -- dern mit der Tat und mit der + } + \alternative { + { + Wahr -- heit. + } + { + Wahr -- heit. + } + } +}
\ No newline at end of file |