diff options
Diffstat (limited to 'Kreuz_auf_das_ich_schaue')
-rw-r--r-- | Kreuz_auf_das_ich_schaue/Kreuz_auf_das_ich_schaue.ly | 37 | ||||
-rw-r--r-- | Kreuz_auf_das_ich_schaue/stimmen.ly | 57 | ||||
-rw-r--r-- | Kreuz_auf_das_ich_schaue/texte.ly | 21 |
3 files changed, 115 insertions, 0 deletions
diff --git a/Kreuz_auf_das_ich_schaue/Kreuz_auf_das_ich_schaue.ly b/Kreuz_auf_das_ich_schaue/Kreuz_auf_das_ich_schaue.ly new file mode 100644 index 0000000..660b616 --- /dev/null +++ b/Kreuz_auf_das_ich_schaue/Kreuz_auf_das_ich_schaue.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/Kreuz_auf_das_ich_schaue/stimmen.ly b/Kreuz_auf_das_ich_schaue/stimmen.ly new file mode 100644 index 0000000..1388ba3 --- /dev/null +++ b/Kreuz_auf_das_ich_schaue/stimmen.ly @@ -0,0 +1,57 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key g \major + %\override Staff.TimeSignature #'style = #'() + \time 2/2 + \autoBeamOff + } + +% Die Stimmen + + sopranMelodie = \relative g' { + g4 e g a | + fis2 fis | + g4 e g a | + h1 | + c4 h a g | + a2 h | + g4 a fis2 | \time 3/2 + d e1 | \bar "|." + } + + altMelodie = \relative e' { + e4 e e e | + e( cis dis2) | + e4 e e e | + fis1 | + e4 e e e | + fis2 g | + e4 e d2 | \time 3/2 + d e1 | \bar "|." + } + + tenorMelodie = \relative h { + h4 h c c | + h2 h | + h4 h c e | + e( cis dis2) | + c4 c c c | + d2 d | + c4 c h2 | \time 3/2 + h h1 | \bar "|." + } + + bassMelodie = \relative e { + e4 e c a | + h2 h | + e4 e c c | + h1 | + a4 a a a | + d2 g | + a4 a h2 | \time 3/2 + h, e1 | \bar "|." + } + diff --git a/Kreuz_auf_das_ich_schaue/texte.ly b/Kreuz_auf_das_ich_schaue/texte.ly new file mode 100644 index 0000000..c4bfd65 --- /dev/null +++ b/Kreuz_auf_das_ich_schaue/texte.ly @@ -0,0 +1,21 @@ +%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Kreuz, auf das ich schau -- e, steht als Zei -- chen da;
+ der, dem ich ver -- trau -- e, ist in dir mir nah.
+ }
+ textII = \lyricmode {
+ \set stanza = "2."
+ Kreuz, zu dem ich flie -- he aus der Dun -- kel -- heit;
+ statt der Angst und Mü -- he ist nun Hoff -- nungs -- zeit.
+ }
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Kreuz, von dem ich ge -- he in den neu -- en Tag,
+ bleib in mei -- ner Nä -- he, dass ich nicht ver -- zag.
+ }
|