diff options
author | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
commit | cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd (patch) | |
tree | 25be2d35abeec51d18d0204e199f3bdbf66826b1 /Stimmt_an/Stimmt_an.ly | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Stimmt_an/Stimmt_an.ly')
-rw-r--r-- | Stimmt_an/Stimmt_an.ly | 34 |
1 files changed, 34 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 + } +} |