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 /Herr_erbarme_dich | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Herr_erbarme_dich')
-rw-r--r-- | Herr_erbarme_dich/Herr_erbarme_dich.ly | 32 | ||||
-rw-r--r-- | Herr_erbarme_dich/stimmen.ly | 31 | ||||
-rw-r--r-- | Herr_erbarme_dich/texte.ly | 9 |
3 files changed, 72 insertions, 0 deletions
diff --git a/Herr_erbarme_dich/Herr_erbarme_dich.ly b/Herr_erbarme_dich/Herr_erbarme_dich.ly new file mode 100644 index 0000000..c92c923 --- /dev/null +++ b/Herr_erbarme_dich/Herr_erbarme_dich.ly @@ -0,0 +1,32 @@ +\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 = "" +} +\paper { + top-margin = 5 +} + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = sopran { \global \voiceOne \sopranMelodie } + \new Voice = alt { \global \voiceTwo \altMelodie } + >> + \new Lyrics \lyricsto sopran { \text } + \new Staff << + \new Voice = tenor { \clef "bass" \global \voiceOne \tenorMelodie } + \new Voice = bass { \clef "bass" \global \voiceTwo \bassMelodie } + >> + >> + \layout { + indent = #0 + \context { \Staff \RemoveEmptyStaves } + } +} diff --git a/Herr_erbarme_dich/stimmen.ly b/Herr_erbarme_dich/stimmen.ly new file mode 100644 index 0000000..6269dd9 --- /dev/null +++ b/Herr_erbarme_dich/stimmen.ly @@ -0,0 +1,31 @@ +%some settings% vim: ai sw=2 lbr nu et + + global = { + \key g \major + %\override Staff.TimeSignature #'style = #'() + %\time 9/8 + \autoBeamOff + } + +% Die Stimmen + + sopranMelodie = \relative g' { + g2 g | \bar "" a4 a h2\breathe | \bar "" g g4 g | \bar "" + a a h2\breathe | \bar "" g g | \bar "" a4 a h2 | \bar "|." + } + + altMelodie = \relative g' { + g2 g | \bar "" fis4 fis g2 | \bar "" g g4 g | \bar "" + fis fis g2 | \bar "" g g | \bar "" fis4 fis g2 | \bar "|." + } + + tenorMelodie = \relative g { + g2 h d4 d d2\breathe | \bar "" g, h4 h | \bar "" + d d d2\breathe | \bar "" g, h | \bar "" d4 d d2 | \bar "|." + } + + bassMelodie = \relative g { + g2 e | \bar "" d4 d g2 | \bar "" g e4 e | \bar "" + d d g2 | \bar "" g e | \bar "" d4 d g,2 | \bar "|." + } + diff --git a/Herr_erbarme_dich/texte.ly b/Herr_erbarme_dich/texte.ly new file mode 100644 index 0000000..2141529 --- /dev/null +++ b/Herr_erbarme_dich/texte.ly @@ -0,0 +1,9 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + text = \lyricmode { + Herr, er -- bar -- me dich. Chris -- tus, er -- bar -- me dich. Herr, er -- bar -- me dich. + } |