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 /Kommt_ihr_Menschen | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Kommt_ihr_Menschen')
-rw-r--r-- | Kommt_ihr_Menschen/Kommt_ihr_Menschen.ly | 44 | ||||
-rw-r--r-- | Kommt_ihr_Menschen/stimmen.ly | 34 | ||||
-rw-r--r-- | Kommt_ihr_Menschen/texte.ly | 36 |
3 files changed, 114 insertions, 0 deletions
diff --git a/Kommt_ihr_Menschen/Kommt_ihr_Menschen.ly b/Kommt_ihr_Menschen/Kommt_ihr_Menschen.ly new file mode 100644 index 0000000..5fa2751 --- /dev/null +++ b/Kommt_ihr_Menschen/Kommt_ihr_Menschen.ly @@ -0,0 +1,44 @@ +\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 Lyrics = "textVier" {} + \new Lyrics = "textFuenf" {} + \new Lyrics = "textSechs" {} + \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 + \context Lyrics = "textVier" \lyricsto "bass" \textIV + \context Lyrics = "textFuenf" \lyricsto "bass" \textV + \context Lyrics = "textSechs" \lyricsto "bass" \textVI + >> + \layout { + indent = #0 + } +} diff --git a/Kommt_ihr_Menschen/stimmen.ly b/Kommt_ihr_Menschen/stimmen.ly new file mode 100644 index 0000000..2093f0d --- /dev/null +++ b/Kommt_ihr_Menschen/stimmen.ly @@ -0,0 +1,34 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key f \major + %\override Staff.TimeSignature #'style = #'() + \time 4/4 + \autoBeamOff + \partial 2 + } + +% Die Stimmen + + sopranMelodie = \relative f' { + f4 g | a4. a8 b4 b | a a c c | b4. b8 a4 f | g g + f g | a4. b8 g4 g | f2 \bar "|." + } + + altMelodie = \relative c' { + c4 e | f4. f8 d4 d | f f f f | f4. g8 f4 f | f e + d e | f4. f8 f4 e | c2 \bar "|." + } + + tenorMelodie = \relative a { + a4 c | c4. c8 f4 f | c c c c | d4. d8 c4 d | c c + a c | c4. d8 c4 c8[ b] | a2 \bar "|." + } + + bassMelodie = \relative f { + f4 c | f4. f8 b,[ c] d[ e] | f4 f a, a | b4. g8 a4 d | c c + d c | f4. b,8 c4 c | f2 \bar "|." + } + diff --git a/Kommt_ihr_Menschen/texte.ly b/Kommt_ihr_Menschen/texte.ly new file mode 100644 index 0000000..9ca24c3 --- /dev/null +++ b/Kommt_ihr_Menschen/texte.ly @@ -0,0 +1,36 @@ +%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Kommt, ihr Men -- schen, nehmt zu Her -- zen eu -- res Hei -- lans bitt -- re Schmer -- zen
+ auf dem schwe -- ren To -- des -- gang.
+ }
+ textII = \lyricmode {
+ \set stanza = "2."
+ Schaut ihn mit der Dor -- nen -- kro -- ne, die er trägt bei gro -- ßem Hoh -- ne,
+ se -- het die -- sen Men -- schen an!
+ }
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Schau -- et, wie er geht ge -- bü -- cket, wie das Kreuz ihn nie -- der -- drü -- cket,
+ se -- het, wie er nie -- der -- sinkt!
+ }
+ textIV = \lyricmode {
+ \set stanza = "4."
+ Den -- ket al -- le, den -- ket heu -- te, was euch die -- ser Gang be -- deu -- te,
+ den der Herr ge -- gan -- gen ist.
+ }
+ textV = \lyricmode {
+ \set stanza = "5."
+ Denkt, wenn er euch soll er -- hö -- hen, dass ihr müs -- set mit ihm ge -- hen
+ und das Kreuz ihm tra -- gen nach.
+ }
+ textVI = \lyricmode {
+ \set stanza = "6."
+ Nimm, o Je -- su, dei -- ne Schmer -- zen nim -- mer -- mehr aus un -- serm Her -- zen,
+ dass wir stets ge -- den -- ken dein.
+ }
|