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 /Puer_natus_in_Betlehem | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Puer_natus_in_Betlehem')
-rw-r--r-- | Puer_natus_in_Betlehem/Puer_natus_in_Betlehem.ly | 56 | ||||
-rw-r--r-- | Puer_natus_in_Betlehem/stimmen.ly | 44 | ||||
-rw-r--r-- | Puer_natus_in_Betlehem/texte.ly | 30 |
3 files changed, 130 insertions, 0 deletions
diff --git a/Puer_natus_in_Betlehem/Puer_natus_in_Betlehem.ly b/Puer_natus_in_Betlehem/Puer_natus_in_Betlehem.ly new file mode 100644 index 0000000..7bf9d52 --- /dev/null +++ b/Puer_natus_in_Betlehem/Puer_natus_in_Betlehem.ly @@ -0,0 +1,56 @@ +\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 Lyrics = "textEinsS" {} + \new Lyrics = "textZweiS" {} + \new Lyrics = "textDreiS" {} + \new Staff = "frauen" << + \new Voice = "frauen" { \pausen } + \new Voice = "sopran" { \global \voiceOne \sopranMelodie } + \new Voice = "alt" { \global \voiceTwo \altMelodie } + >> + \new Lyrics = "textEinsA" {} + \new Lyrics = "textZweiA" {} + \new Lyrics = "textDreiA" {} + \new Lyrics = "textEinsT" {} + \new Lyrics = "textZweiT" {} + \new Lyrics = "textDreiT" {} + \new Staff = "maenner" << + \new Voice = "maenner" { \pausen } + \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" {} + \context Lyrics = "textEinsS" \lyricsto "sopran" \textI + \context Lyrics = "textZweiS" \lyricsto "sopran" \textII + \context Lyrics = "textDreiS" \lyricsto "sopran" \textIII + \context Lyrics = "textEinsA" \lyricsto "alt" \textI + \context Lyrics = "textZweiA" \lyricsto "alt" \textII + \context Lyrics = "textDreiA" \lyricsto "alt" \textIII + \context Lyrics = "textEinsT" \lyricsto "tenor" \textI + \context Lyrics = "textZweiT" \lyricsto "tenor" \textII + \context Lyrics = "textDreiT" \lyricsto "tenor" \textIII + \context Lyrics = "textEinsB" \lyricsto "bass" \textI + \context Lyrics = "textZweiB" \lyricsto "bass" \textII + \context Lyrics = "textDreiB" \lyricsto "bass" \textIII + >> + \layout { + indent = #0 + } +} diff --git a/Puer_natus_in_Betlehem/stimmen.ly b/Puer_natus_in_Betlehem/stimmen.ly new file mode 100644 index 0000000..6bc1a03 --- /dev/null +++ b/Puer_natus_in_Betlehem/stimmen.ly @@ -0,0 +1,44 @@ +%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 + pausen = { + \repeat volta 3 { s2*5 r2 | s2*7 r2 | s2*7 r2 | s2*5 r2 | } R1 | \bar "|." + } + + sopranMelodie = \relative f' { + \repeat volta 3 { + f2 g | a4 g8 f c'4 d | c2 s | c d | c4 b8 a b4 g | + f c' b g | f2 s | g a4 a | g c8 e d4 h | c e, f g | + c,2 s | c' b4 a8[ g] | a4 c b g | f2 s2 | } + } + + altMelodie = \relative a' { + \repeat volta 3 { + a4 f g f8 e | f2. f4 | f2 s | f f | a4 g8 f g4 e | + f a g e | f2 s | e f4 f | e g8 g f4 d | e e f g | + c,2 s | f f4 f | f a g e | f2 s | } + } + + tenorMelodie = \relative c' { + \repeat volta 3 { + c2 c | c4 b8 a a4 b | a2 s | a b4 b | a c d c | + a c d c | a2 s | c c4 c | c c8 c a4 g | g e f g | + c,2 s | a' b4 c | c c d c | a2 s | } + } + + bassMelodie = \relative f { + \repeat volta 3 { + f4 f e d8 c | f2. f4 | f2 s | f4 f b,8[ c d e] | f4 f b, c | + f a, b c | f2 s | c f8[ g] a[ h] | c4 e,8 e f4 g | c, e f g | + c,2 s | f f4 f | f a, b c | f2 s | } + } + diff --git a/Puer_natus_in_Betlehem/texte.ly b/Puer_natus_in_Betlehem/texte.ly new file mode 100644 index 0000000..af28e01 --- /dev/null +++ b/Puer_natus_in_Betlehem/texte.ly @@ -0,0 +1,30 @@ +%some settings% vim: ai sw=2 lbr nu et
+
+% Abkürzungen
+
+% Die Textaufteilungen
+
+ textI = \lyricmode {
+ \set stanza = "1."
+ Pu -- er na -- tus in Beth -- le -- hem,
+ un -- de gau -- det Je -- ru -- sa -- lem,
+ Je -- ru -- sa -- lem.
+ Ein Kind ge -- bo -- ren zu Beth -- le -- hem, zu Beth -- le -- hem,
+ des freu -- et sich Je -- ru -- sa -- lem.
+ }
+ textII = \lyricmode {
+ \set stanza = "2."
+ Hic ja -- cet in prae -- se -- pi -- o,
+ qui reg -- nat si -- ne ter -- mi -- no,
+ ter -- _ mi -- no.
+ Hier liegt er in dem _ Krip -- pe -- lein, im Krip -- pe -- lein,
+ und be -- herr -- schet uns ins -- ge -- mein.
+ }
+ textIII = \lyricmode {
+ \set stanza = "3."
+ Glo -- ri -- a ti -- bi Do -- mi -- ne,
+ qui na -- tus es de Vir -- gi -- ne,
+ de Vir -- gi -- ne.
+ Ehr sei dir, o mein _ Je -- su -- lein, o Je -- su -- lein,
+ ge -- bo -- ren aus der Jung -- frau rein.
+ }
|