summaryrefslogtreecommitdiff
path: root/Das_Grab_ist_leer
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 /Das_Grab_ist_leer
downloadMusik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz
initialer Commit
Diffstat (limited to 'Das_Grab_ist_leer')
-rw-r--r--Das_Grab_ist_leer/Das_Grab_ist_leer.ly40
-rw-r--r--Das_Grab_ist_leer/stimmen.ly43
-rw-r--r--Das_Grab_ist_leer/texte.ly24
3 files changed, 107 insertions, 0 deletions
diff --git a/Das_Grab_ist_leer/Das_Grab_ist_leer.ly b/Das_Grab_ist_leer/Das_Grab_ist_leer.ly
new file mode 100644
index 0000000..df846ee
--- /dev/null
+++ b/Das_Grab_ist_leer/Das_Grab_ist_leer.ly
@@ -0,0 +1,40 @@
+\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 {
+ <<
+ \pausen
+ \new Voice = "sopran" { \global \voiceOne \sopranMelodie }
+ \new Voice = "alt" { \global \voiceTwo \altMelodie }
+ >>
+ }
+ \new Lyrics = "textEins" {}
+ \new Lyrics = "textZwei" {}
+ \new Lyrics = "textDrei" {}
+ \new Staff = "maenner" <<
+ \pausen
+ \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/Das_Grab_ist_leer/stimmen.ly b/Das_Grab_ist_leer/stimmen.ly
new file mode 100644
index 0000000..ac63580
--- /dev/null
+++ b/Das_Grab_ist_leer/stimmen.ly
@@ -0,0 +1,43 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.12"
+
+ global = {
+ \key g \major
+ %\override Staff.TimeSignature #'style = #'()
+ \time 4/4
+ \autoBeamOff
+ \partial 4
+ }
+
+% Die Stimmen
+
+ pausen = {
+ s4 | s1 | s2 r4 s | s1 | s2 r4 s |
+ s1*5 | s2 r4 s | s1 | s2 r4 \bar "|."
+ }
+
+ sopranMelodie = \relative d' {
+ d4 | g2 h | d s4 g, | a( h8[ a] fis4.) g8 | g2 s4 h |
+ a4. g8 fis4 e | f2 d4 h' | a4. fis8 g4 fis | e2 d4 d |
+ g2 h | d s4 g, | a( h8[ a] fis4.) g8 | g2 s4 \bar "|."
+ }
+
+ altMelodie = \relative d' {
+ d4 | g2 h | fis s4 g | e2 d | d s4 g |
+ fis4. d8 d4 cis | d2 d4 d | d4. d8 d4 d | d( cis) d d |
+ g2 h | fis s4 g4 | e2 d | d s4 \bar "|."
+ }
+
+ tenorMelodie = \relative d {
+ d4 | g2 h | a s4 d | c2 c | h s4 d |
+ d4. h8 a4 a | a2 fis4 g | fis4. a8 h4 a | a4.( g8) fis4 d |
+ g2 h | a s4 d | c2 c | h s4 \bar "|."
+ }
+
+ bassMelodie = \relative d {
+ d4 | g2 h | d, s4 h | c2 d | g s4 g |
+ d4. g8 d4 a' | d,2 d4 g | d4. d8 g4 a | a,2 d4 d |
+ g2 h | d, s4 h | c2 d | g s4 \bar "|."
+ }
+
diff --git a/Das_Grab_ist_leer/texte.ly b/Das_Grab_ist_leer/texte.ly
new file mode 100644
index 0000000..122cd39
--- /dev/null
+++ b/Das_Grab_ist_leer/texte.ly
@@ -0,0 +1,24 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Das Grab ist leer, mein Je -- sus lebt!
+ Ver -- nehmt die Freu -- den -- kun -- de, sie kommt aus En -- gels -- mun -- de.
+ Das Grab ist leer, mein Je -- sus lebt!
+ }
+ textII = \lyricmode {
+ \set stanza = "2."
+ Das Grab ist leer, mein Je -- sus lebt!
+ Der Herr ist auf -- er -- stan -- den, tönt's nun in al -- len Lan -- den.
+ Vor -- bei das Leid, mein Je -- sus lebt!
+ }
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Das Grab ist leer, mein Je -- sus lebt!
+ Er hat den Weg be -- rei -- tet, der uns zum Him -- mel lei -- tet.
+ Er hat ge -- siegt, mein Je -- sus lebt!
+ }