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 /Er_ist_erstanden | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Er_ist_erstanden')
-rw-r--r-- | Er_ist_erstanden/Er_ist_erstanden.ly | 37 | ||||
-rw-r--r-- | Er_ist_erstanden/stimmen.ly | 53 | ||||
-rw-r--r-- | Er_ist_erstanden/texte.ly | 23 |
3 files changed, 113 insertions, 0 deletions
diff --git a/Er_ist_erstanden/Er_ist_erstanden.ly b/Er_ist_erstanden/Er_ist_erstanden.ly new file mode 100644 index 0000000..660b616 --- /dev/null +++ b/Er_ist_erstanden/Er_ist_erstanden.ly @@ -0,0 +1,37 @@ +\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 = "textEins" {} + \new Lyrics = "textZwei" {} + \new Lyrics = "textDrei" {} + \new Staff = "maenner" << + \new Voice = "tenor" { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = "bass" { \global \clef "bass" \voiceTwo \bassMelodie } + >> + \context Lyrics = "textEins" \lyricsto "bass" \textI + \context Lyrics = "textZwei" \lyricsto "bass" \textII + \context Lyrics = "textDrei" \lyricsto "bass" \textIII + >> + \layout { + indent = #0 + } +} diff --git a/Er_ist_erstanden/stimmen.ly b/Er_ist_erstanden/stimmen.ly new file mode 100644 index 0000000..c2b49d7 --- /dev/null +++ b/Er_ist_erstanden/stimmen.ly @@ -0,0 +1,53 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key f \major + %\override Staff.TimeSignature #'style = #'() + \time 3/4 + \autoBeamOff + } + +% Die Stimmen + + sopranA = \relative c' { + c4 c c | f2 f4 | a g g | f2. g4 a b | a2 f4 | e f g | f2. | + } + + sopranMelodie = \relative c' { + \sopranA \sopranA + c'4 c c | c g a | b b b | a2. | c4 c c | c g a | b b b | a2. | + \sopranA \bar "|." + } + + altA = \relative c' { + c4 c c | c2 c4 | f f e | d2. | f4 f f | f2 c4 | c c c | c2. | + } + + altMelodie = \relative c' { + \altA \altA + e4 e f | g g f | f f e | f2. | e4 e f | g g f | f f e | f2. | + \altA \bar "|." + } + + tenorA = \relative c' { + c4 c c | c2 a4 | c d c8[ b] | a2. | d4 c d | c2 a4 | g a b | a2. | + } + + tenorMelodie = \relative c' { + \tenorA \tenorA + c4 c c | c c a | d d c | c2. | c4 c c | c c a | d d c | c2. | + \tenorA \bar "|." + } + + bassA = \relative c' { + c4 c b | a2 f4 | a, b c | d2. | b'4 a g | f2 f4 | c c c | f2. | + } + + bassMelodie = \relative c' { + \bassA \bassA + c,4 c d | e e f | g c, c | f2. | c4 c d | e e f | g c, c | f2. | + \bassA \bar "|." + } + diff --git a/Er_ist_erstanden/texte.ly b/Er_ist_erstanden/texte.ly new file mode 100644 index 0000000..21ffbd8 --- /dev/null +++ b/Er_ist_erstanden/texte.ly @@ -0,0 +1,23 @@ +%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Er ist er -- stan -- den, Hal -- le -- lu -- ja! Freut euch und sin -- get, Hal -- le -- lu -- ja!
+ Denn un -- ser Hei -- land hat tri -- um -- phiert, all sei -- ne Feind ge -- fan -- gen er führt.
+ Lasst uns lob -- sin -- gen vor un -- se -- rem Gott, der uns er -- löst hat vom e -- wi -- gen Tod.
+ Sünd ist ver -- ge -- ben, Hal -- le -- lu -- ja! Je -- sus bringt Le -- ben, Hal -- le -- lu -- ja!
+ }
+ textII = \lyricmode {
+ \set stanza = "2."
+ Er war be -- gra -- ben drei Ta -- ge lang. Ihm sei auf e -- wig Lob, Preis und Dank;
+ denn die Ge -- walt des Tods ist zer -- stört se -- lig ist, wer zu Je -- sus ge -- hört.
+ }
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Der En -- gel sag -- te: „Fürch -- tet euch nicht! Ihr su -- chet Je -- sus, hier ist er nicht.
+ Se -- het, das Grab ist leer, wo er lag: er ist er -- stan -- den, wie er ge -- sagt.“
+ }
|