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 /Stern_ueber_Bethlehem | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Stern_ueber_Bethlehem')
-rw-r--r-- | Stern_ueber_Bethlehem/Stern_ueber_Bethlehem.ly | 66 | ||||
-rw-r--r-- | Stern_ueber_Bethlehem/stimmen.ly | 40 | ||||
-rw-r--r-- | Stern_ueber_Bethlehem/texte.ly | 77 |
3 files changed, 183 insertions, 0 deletions
diff --git a/Stern_ueber_Bethlehem/Stern_ueber_Bethlehem.ly b/Stern_ueber_Bethlehem/Stern_ueber_Bethlehem.ly new file mode 100644 index 0000000..ace6c5e --- /dev/null +++ b/Stern_ueber_Bethlehem/Stern_ueber_Bethlehem.ly @@ -0,0 +1,66 @@ +\include "deutsch.ly" +\include "stimmen.ly" +\include "texte.ly" + +\pointAndClickOff + +#(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 Lyrics = "textEinsS" {} + \new Lyrics = "textZweiS" {} + \new Lyrics = "textDreiS" {} + \new Lyrics = "textVierS" {} + \new Staff { + << + \new Voice = "sopran" { \global \voiceOne \sopranMelodie } + \new Voice = "alt" { \global \voiceTwo \altMelodie } + >> + } +% \new Lyrics = "textEinsA" {} +% \new Lyrics = "textZweiA" {} +% \new Lyrics = "textDreiA" {} +% \new Lyrics = "textVierA" {} +% \new Lyrics = "textEinsT" {} +% \new Lyrics = "textZweiT" {} +% \new Lyrics = "textDreiT" {} +% \new Lyrics = "textVierT" {} + \new Staff << + \new Voice = "tenor" { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = "bass" { \global \clef "bass" \voiceTwo \bassMelodie } + >> + \new Lyrics = "textEinsB" {} + \new Lyrics = "textZweiB" {} + \new Lyrics = "textDreiB" {} + \new Lyrics = "textVierB" {} + \context Lyrics = "textEinsS" \lyricsto "sopran" \textI + \context Lyrics = "textZweiS" \lyricsto "sopran" \textII + \context Lyrics = "textDreiS" \lyricsto "sopran" \textIII + \context Lyrics = "textVierS" \lyricsto "sopran" \textIV +% \context Lyrics = "textEinsA" \lyricsto "alt" \extraI +% \context Lyrics = "textZweiA" \lyricsto "alt" \extraII +% \context Lyrics = "textDreiA" \lyricsto "alt" \extraIII +% \context Lyrics = "textVierA" \lyricsto "alt" \extraIV +% \context Lyrics = "textEinsT" \lyricsto "tenor" \textI +% \context Lyrics = "textZweiT" \lyricsto "tenor" \textII +% \context Lyrics = "textDreiT" \lyricsto "tenor" \textIII +% \context Lyrics = "textVierT" \lyricsto "tenor" \textIV + \context Lyrics = "textEinsB" \lyricsto "bass" \extraI + \context Lyrics = "textZweiB" \lyricsto "bass" \extraII + \context Lyrics = "textDreiB" \lyricsto "bass" \extraIII + \context Lyrics = "textVierB" \lyricsto "bass" \extraIV + >> + \layout { + indent = #0 + } +} diff --git a/Stern_ueber_Bethlehem/stimmen.ly b/Stern_ueber_Bethlehem/stimmen.ly new file mode 100644 index 0000000..77033c8 --- /dev/null +++ b/Stern_ueber_Bethlehem/stimmen.ly @@ -0,0 +1,40 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key f \major + %\override Staff.TimeSignature #'style = #'() + \time 4/4 + \autoBeamOff + } + +% Die Stimmen + + sopranMelodie = \relative c' { + f4 g8 a g f d4 | f8 d f g~ g2 | + f4 g8 a g f d4 | f8 d f c'~ c2 | + d4 d8 d c c c4 | a8 a a g~ g2 | + f4 g8 a g f d4 | f8 f d f~ f2 | \bar "|." + } + + altMelodie = \relative c' { + c4 c8 c d d d4 | d8 d d e4 e8 d des | + c4 c d8 d d4 | d8 d d e4 e8 f g | + a4 a8 a f f f4 | f8 f f e~ e2 | + c4 c8 c d d d4 | d8 d d c~ c2 | \bar "|." + } + + tenorMelodie = \relative a { + \repeat unfold 2 { a4 a8 a a a a4 | b8 b b b~ b2 | } + c4 c8 c es es es4 | d8 d d c~ c2 | + a4 a8 a a a a4 | b8 b b a~ a2 | \bar "|." + } + + bassMelodie = \relative f { + f4 e8 e d d d4 | b8 b b c4 c8 d e | + f4 e d8 d d4 | b8 b b c4 c8 d e | + f4 f8 f a, a a4 | b8 b b c~ c2 | + f4 e8 e d d d4 | b8 b b f'~ f2 | \bar "|." + } + diff --git a/Stern_ueber_Bethlehem/texte.ly b/Stern_ueber_Bethlehem/texte.ly new file mode 100644 index 0000000..8a45189 --- /dev/null +++ b/Stern_ueber_Bethlehem/texte.ly @@ -0,0 +1,77 @@ +%some settings% vim: ai sw=2 lbr nu et + +% Abkürzungen + +% Die Textaufteilungen + + aI = \lyricmode { Stern ü -- ber Beth -- le -- hem, zeig uns den Weg, } + bI = \lyricmode { führ uns } + cI = \lyricmode { zur Krip -- pe hin, zeig, wo sie steht, } + dI = \lyricmode { leuch -- te } + eI = \lyricmode { du } + fI = \lyricmode { uns vor -- an, bis wir dort sind, Stern ü -- ber Beth -- le -- hem, führ uns zum Kind! } + aII = \lyricmode { Stern ü -- ber Beth -- le -- hem, nun bleibst du stehn, } + bII = \lyricmode { und lässt } + cII = \lyricmode { uns al -- le das Wun -- der hier sehn, } + dII = \lyricmode { } + eII = \lyricmode { das } + fII = \lyricmode { da ge -- sche -- hen, was nie -- mand ge -- dacht, Stern ü -- ber Beth -- le -- hem, in die -- ser Nacht! } + aIII = \lyricmode { Stern ü -- ber Beth -- le -- hem, wir sind am Ziel, } + bIII = \lyricmode { denn die -- ser } + cIII = \lyricmode { ar -- me Stall birgt doch so viel! } + dIII = \lyricmode { } + eIII = \lyricmode { Du hast } + fIII = \lyricmode { uns her -- ge -- führt, wir dan -- ken dir. Stern ü -- ber Beth -- le -- hem, wir blei -- ben hier! } + aIV = \lyricmode { Stern ü -- ber Beth -- le -- hem, kehrn wir zu -- rück, } + bIV = \lyricmode { steht noch } + cIV = \lyricmode { dein hel -- ler Schein in un -- serm Blick, } + dIV = \lyricmode { } + eIV = \lyricmode { und } + fIV = \lyricmode { was uns froh ge -- macht, tei -- len wir aus, Stern ü -- ber Beth -- le -- hem, schein auch zu Haus! } + + textI = \lyricmode { + \set stanza = "1." + \aI \bI \cI \dI \eI \fI + } + textII = \lyricmode { + \set stanza = "2." + \aII \bII \cII \dII \eII \fII + } + textIII = \lyricmode { + \set stanza = "3." + \aIII \bIII \cIII \dIII \eIII \fIII + } + textIV = \lyricmode { + \set stanza = "4." + \aIV \bIV \cIV \dIV \eIV \fIV + } + extraI = \lyricmode { + \set stanza = "1." + \aI zeig uns den Weg + \cI + zeig, wo sie steht, + \dI \fI + } + extraII = \lyricmode { + \set stanza = "2." + \aII nun bleibst du stehn; + \cII + Wun -- der hier sehn, + \dII \fII + } + extraIII = \lyricmode { + \set stanza = "3." + \aIII wir sind am Ziel, der + \cIII + Birgt doch so viel! Hast + \dIII + \fIII + } + extraIV = \lyricmode { + \set stanza = "4." + \aIV kehrn wir zu -- rück, + \cIV + in un -- serm Blick, + \dIV + \fIV + } |