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 /Als_Jesus_auf_die_Erde_kam | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Als_Jesus_auf_die_Erde_kam')
-rw-r--r-- | Als_Jesus_auf_die_Erde_kam/Als_Jesus_auf_die_Erde_kam.ly | 34 | ||||
-rw-r--r-- | Als_Jesus_auf_die_Erde_kam/stimmen.ly | 38 | ||||
-rw-r--r-- | Als_Jesus_auf_die_Erde_kam/texte.ly | 26 |
3 files changed, 98 insertions, 0 deletions
diff --git a/Als_Jesus_auf_die_Erde_kam/Als_Jesus_auf_die_Erde_kam.ly b/Als_Jesus_auf_die_Erde_kam/Als_Jesus_auf_die_Erde_kam.ly new file mode 100644 index 0000000..e251be8 --- /dev/null +++ b/Als_Jesus_auf_die_Erde_kam/Als_Jesus_auf_die_Erde_kam.ly @@ -0,0 +1,34 @@ +\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 { \textI } + \new Lyrics \lyricsto sopran { \textII } + \new Lyrics \lyricsto sopran { \textIII } + \new Lyrics \lyricsto sopran { \textV } + \new Staff << + \new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie } + >> + >> + \layout { + indent = #0 + } +} diff --git a/Als_Jesus_auf_die_Erde_kam/stimmen.ly b/Als_Jesus_auf_die_Erde_kam/stimmen.ly new file mode 100644 index 0000000..877ae52 --- /dev/null +++ b/Als_Jesus_auf_die_Erde_kam/stimmen.ly @@ -0,0 +1,38 @@ +%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 4 + } + +% Die Stimmen + + sopranMelodie = \relative c' { + c4 | f f g g | a a g g | + a a b g | c2 a4 a | a b c a | + d8[ c] b[ a] g4 c, | f4. g8 a4 a | g2 f4^\fermata \bar "|." + } + + altMelodie = \relative c' { + c4 | f f e e | f f e e | + f e d f | e( g) f f | f g a f | + b8[ a] g[ f] e4 c | d4. e8 f4 d | e2 c4_\fermata \bar "|." + } + + tenorMelodie = \relative c' { + c4 | a a g g | c c c c | + c c b d | c2 c4 c | c c c c | + b b a c | a4. a8 b4 b | c( b) a4^\fermata \bar "|." + } + + bassMelodie = \relative c { + c4 | f f c c | f f c c | + f f g g | c,2 f4 f | f f f f | + b, b c c | d4. d8 b4 b | c2 f4_\fermata \bar "|." + } + diff --git a/Als_Jesus_auf_die_Erde_kam/texte.ly b/Als_Jesus_auf_die_Erde_kam/texte.ly new file mode 100644 index 0000000..5f1ad67 --- /dev/null +++ b/Als_Jesus_auf_die_Erde_kam/texte.ly @@ -0,0 +1,26 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + textI = \lyricmode { + \set stanza = \markup { \dynamic "mf" "1." } + Als Je -- sus auf die Er -- de kam, ein klei -- nes Kind ge -- bo -- ren, + da hat er in dem ar -- men Stall ge -- zit -- tert und ge -- fro -- ren. + } + textII = \lyricmode { + \set stanza = "2." + Auch heut gibt's Kind -- der in der Welt, die nichts zu es -- sen krie -- gen, + die Ar -- mut lei -- den, nicht wie wir in wei -- chen Bet -- ten lie -- gen. + } + textIII = \lyricmode { + \set stanza = "3." + Das es viel Not und E -- lend gibt, da -- ran lasst uns jetzt den -- ken, + wenn wir zur schö -- nen Weih -- nachts -- zeit uns freu -- en und be -- schen -- ken. + } + textV = \lyricmode { + \set stanza = \markup { \dynamic "f" "5." } + Drum gebt und helft, wo ihr es könnt und lin -- dert Not auf Er -- den. + So macht ihr Got -- tes Wil -- len wahr. So kann es Weih -- nacht wer -- den. + } |