diff options
author | Erich Eckner <git@eckner.net> | 2018-08-16 08:31:10 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-08-16 08:31:10 +0200 |
commit | 6b299d1ba146c40bb0216ace405c23ab2c0db55a (patch) | |
tree | b58962e6ac7bf7a06d8e1a9a2f8de925c902c6eb /Uns_ist_ein_Kind_geboren | |
parent | 66733114ae6f0198407fd1cf575b06d284b78717 (diff) | |
download | Musik-6b299d1ba146c40bb0216ace405c23ab2c0db55a.tar.xz |
Uns_ist_ein_Kind_geboren: Chor 2 bis auf Tenortext fertig, Chor 4 angelegt
Diffstat (limited to 'Uns_ist_ein_Kind_geboren')
-rw-r--r-- | Uns_ist_ein_Kind_geboren/Uns_ist_ein_Kind_geboren.ly | 11 | ||||
-rw-r--r-- | Uns_ist_ein_Kind_geboren/parts/II_Chor.ly | 33 | ||||
-rw-r--r-- | Uns_ist_ein_Kind_geboren/parts/IV_Chor.ly | 27 | ||||
-rw-r--r-- | Uns_ist_ein_Kind_geboren/parts/VIII_Choral.ly | 2 | ||||
-rw-r--r-- | Uns_ist_ein_Kind_geboren/parts/artikulation_II_Chor.ly | 4 | ||||
-rw-r--r-- | Uns_ist_ein_Kind_geboren/parts/artikulation_IV_Chor.ly | 5 | ||||
-rw-r--r-- | Uns_ist_ein_Kind_geboren/parts/stimmen_II_Chor.ly | 205 | ||||
-rw-r--r-- | Uns_ist_ein_Kind_geboren/parts/stimmen_IV_Chor.ly | 190 | ||||
-rw-r--r-- | Uns_ist_ein_Kind_geboren/parts/texte_II_Chor.ly | 61 | ||||
-rw-r--r-- | Uns_ist_ein_Kind_geboren/parts/texte_IV_Chor.ly | 9 |
10 files changed, 545 insertions, 2 deletions
diff --git a/Uns_ist_ein_Kind_geboren/Uns_ist_ein_Kind_geboren.ly b/Uns_ist_ein_Kind_geboren/Uns_ist_ein_Kind_geboren.ly index a0cb557..d4d6cb9 100644 --- a/Uns_ist_ein_Kind_geboren/Uns_ist_ein_Kind_geboren.ly +++ b/Uns_ist_ein_Kind_geboren/Uns_ist_ein_Kind_geboren.ly @@ -11,14 +11,23 @@ \header { title = "Uns ist ein Kind geboren" subtitle = "BWV 142" - composer = "Johann Sebastian Bach" + composer = "(Johann Sebastian Bach)" + arranger = "vmtl. eher Johann Kuhnau" tagline = ##f } #(ly:set-option 'relative-includes #t) +\include "parts/artikulation_II_Chor.ly" +\include "parts/stimmen_II_Chor.ly" +\include "parts/texte_II_Chor.ly" +\include "parts/artikulation_IV_Chor.ly" +\include "parts/stimmen_IV_Chor.ly" +\include "parts/texte_IV_Chor.ly" \include "parts/artikulation_VIII_Choral.ly" \include "parts/stimmen_VIII_Choral.ly" \include "parts/texte_VIII_Choral.ly" +\include "parts/II_Chor.ly" +%\include "parts/IV_Chor.ly" \include "parts/VIII_Choral.ly" #(ly:set-option 'relative-includes #f) diff --git a/Uns_ist_ein_Kind_geboren/parts/II_Chor.ly b/Uns_ist_ein_Kind_geboren/parts/II_Chor.ly new file mode 100644 index 0000000..554c5df --- /dev/null +++ b/Uns_ist_ein_Kind_geboren/parts/II_Chor.ly @@ -0,0 +1,33 @@ +\include "deutsch.ly" + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Lyrics = textSopran { } + \new Staff << + \label #'II + \new Voice = frauen { \globalII \oneVoice \frauenPausenII } + \new Voice = sopran { \globalII \voiceOne << \sopranMelodieII \artikulationII >> } + \new Voice = alt { \globalII \voiceTwo \altMelodieII } + >> + \new Lyrics = textAlt { } + \new Lyrics = textTenor { } + \new Staff << + \new Voice = maenner { \globalII \oneVoice \maennerPausenII } + \new Voice = tenor { \globalII \clef "bass" \voiceOne \tenorMelodieII } + \new Voice = bass { \globalII \clef "bass" \voiceTwo << \bassMelodieII \artikulationII >> } + >> + \new Lyrics = textBass { } + \context Lyrics = textSopran \lyricsto sopran \textSopranII + \context Lyrics = textAlt \lyricsto alt \textAltII + \context Lyrics = textTenor \lyricsto tenor \textTenorII + \context Lyrics = textBass \lyricsto bass \textBassII + >> + \layout { + indent = #0 + } + \header { + tagline = ##f + piece = "2. Chor" + } +} diff --git a/Uns_ist_ein_Kind_geboren/parts/IV_Chor.ly b/Uns_ist_ein_Kind_geboren/parts/IV_Chor.ly new file mode 100644 index 0000000..68b75f2 --- /dev/null +++ b/Uns_ist_ein_Kind_geboren/parts/IV_Chor.ly @@ -0,0 +1,27 @@ +\include "deutsch.ly" + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \label #'VIII + \new Voice = frauen { \globalVIII \oneVoice \pausenVIII } + \new Voice = sopran { \globalVIII \voiceOne << \sopranMelodieVIII \artikulationVIII >> } + \new Voice = alt { \globalVIII \voiceTwo \altMelodieVIII } + >> + \new Lyrics = text { } + \new Staff << + \new Voice = maenner { \globalVIII \oneVoice \pausenVIII } + \new Voice = tenor { \globalVIII \clef "bass" \voiceOne \tenorMelodieVIII } + \new Voice = bass { \globalVIII \clef "bass" \voiceTwo << \bassMelodieVIII \artikulationVIII >> } + >> + \context Lyrics = text \lyricsto sopran \textVIII + >> + \layout { + indent = #0 + } + \header { + tagline = ##f + piece = "8. Choral - Halleluja" + } +} diff --git a/Uns_ist_ein_Kind_geboren/parts/VIII_Choral.ly b/Uns_ist_ein_Kind_geboren/parts/VIII_Choral.ly index 68b75f2..6715c93 100644 --- a/Uns_ist_ein_Kind_geboren/parts/VIII_Choral.ly +++ b/Uns_ist_ein_Kind_geboren/parts/VIII_Choral.ly @@ -22,6 +22,6 @@ } \header { tagline = ##f - piece = "8. Choral - Halleluja" + piece = "8. Choral" } } diff --git a/Uns_ist_ein_Kind_geboren/parts/artikulation_II_Chor.ly b/Uns_ist_ein_Kind_geboren/parts/artikulation_II_Chor.ly new file mode 100644 index 0000000..d4f1b95 --- /dev/null +++ b/Uns_ist_ein_Kind_geboren/parts/artikulation_II_Chor.ly @@ -0,0 +1,4 @@ + +artikulationII = { + s1*37 | \bar "|." +} diff --git a/Uns_ist_ein_Kind_geboren/parts/artikulation_IV_Chor.ly b/Uns_ist_ein_Kind_geboren/parts/artikulation_IV_Chor.ly new file mode 100644 index 0000000..ac247e3 --- /dev/null +++ b/Uns_ist_ein_Kind_geboren/parts/artikulation_IV_Chor.ly @@ -0,0 +1,5 @@ + +artikulationVIII = { + s2.*40 | + s4\fermata \bar "|." +} diff --git a/Uns_ist_ein_Kind_geboren/parts/stimmen_II_Chor.ly b/Uns_ist_ein_Kind_geboren/parts/stimmen_II_Chor.ly new file mode 100644 index 0000000..d0adca4 --- /dev/null +++ b/Uns_ist_ein_Kind_geboren/parts/stimmen_II_Chor.ly @@ -0,0 +1,205 @@ +\version "2.12" + +globalII = { + \time 4/4 + \key c \major + \autoBeamOff +} + +frauenPausenII = { + R1 | + r2 r8 s4. | + s1*16 | + s2. r4 | + R1*2 | + r2 r8 s4. | + s1 | + s4 r2. | + R1 | + r8 s2.. | + s2. r4 | + R1 | + r2 r8 s4. | + s1*2 | + s4 r8 s s2 | + s1*3 | + s4 r2. | + R1 | \bar "|." +} + +maennerPausenII = { + r8 s2.. | + s2. r4 | + r8 s2.. | + s1*9 | + s2. r4 | + r8 s2.. | + s1*4 | + s2. r4 | + R1*3 | + r8 s2.. | + s4 r2. | + R1 | + r4. s8 s2 | + s2. r4 | + R1 | + r8 s2.. | + s2. r4 | + r8 s2.. | + s1*4 | + s4 r2. | + R1 | \bar "|." +} + +sopranMelodieII = \relative a' { + s1 | + s2 s8 a a g16[( f]) | + g8 e16[( f]) g4 f8 f f e16[( d]) | + e8 e a a r2 | + r8 e' e d16[( c]) d8 h16[( c]) d4 | + c8 c c h16[( a]) h4 h | + c h r8 e, e e | + a4 c h2 | + a8 a a g16[( fis]) g8 e16[( fis]) gis4 | + a8 e' e d16[( c]) h4 e | + e( dis) e r | + r8 a,8 a a e'4 g | + fis2 e8 e e d16[( c]) | + d8 d d c16[( h]) c8 e e d16[( c]) | + d8 h16[( c]) d4 c8 cis16[( d]) e[( f]) g[( e]) | + f4 d e2 | + a,4 r4. e'8 e d16[( c]) | + d8 d d c16[( h]) c4. f8 | + h,2 a4 s | + s1*2 | + s2 s8 r4. | + r8 e' e d16[( c]) d8 h16[( c]) d4 | + c s2. | + s1 | + s8 g g f16[( e]) f8 f f4~( | + f8[ g16 f] e[ g f e]) d4 s | + s1 | + s2 s8 r4. | + r2 r8 e' d c16[( h]) | + c8 c h8. h16 h8 a16[( h]) h8.( a16) | + a4 s8 f' f e16[( d]) e8 e | + e d16[( c]) d8 d d c16[( h]) c8 h | + c8. d16 h4 a8 cis cis8. cis16 | + d8. d16 d8 c16[( h]) h4.( a8) | + a4 s2. s1 | \bar "|." +} + +altMelodieII = \relative a' { + s1 | + s2 s8 a a g16[( f]) | + g8 e16[( f]) g4 f8 f f e16[( d]) | + e8 e a a gis a a[( gis]) | + a4 a a( gis) | + a8 a, a a e'4 g | + fis2 e8 e d c16[( h]) | + c8 a' a g16[( fis]) g4 e | + e( dis) e8 e e e | + e e e[( fis]) g h h c | + h4 h r8 e, e e | + a4 c h2 | + a8 a a g16[( fis]) g8 e16[( fis]) gis[( fis] gis[ a]) | + h8 h h a16[( gis]) a4 a | + a( gis) a r | + r8 a a g16[( f]) g8 e16[( f]) g4 | + f8 f f e16[( d]) e8 g g a | + h h h a16[( gis]) a4 a | + a( gis) a s | + s1*2 | + s2 s8 e e e | + a4 c h2 | + a4 s2. | + s1 | + s8 g g f16[( e]) f8 f f4~( | + f8[ g16 f] e[ g f e]) d4 s | + s1 | + s2 s8 h'8 h a16[( g]) | + a8 fis16[( g]) a4 g8 e fis gis | + a e e e e8. f16 e4 | + e s8 a g g g h | + a a a gis16[( fis]) g8 a16[( gis]) a8 gis | + a a a[( gis]) a e e8. e16 | + d8. f16 a8 f e2 | + e4 s2. | + s1 | \bar "|." +} + +tenorMelodieII = \relative e { + s8 e e e a4 c | + h2 a4 s | + s8 e' e d16[( c]) d8 h16[( c]) d4 | + c8 c c h16[( a]) h8 c h8.( a16) | + a4 r4. d8 d c16[( h]) | + c8 a16[( h]) c4 h8 h h e | + e e e[( dis]) e c h a16[( gis]) | + a8 c c[( a]) h h h a16[( g]) | + a8 fis16[( g]) a4 h r | + r8 a a a e'4 g | + fis2 e8 e d c16[( h]) | + c8 c16[( h]) a[( c h a]) g8 h h e | + c c h4 h s | + s8 e, e e a4 c | + h2 a8 a16[( h]) cis[( d]) e[( cis]) | + d4 d d( cis) | + d8 d d c16[( h]) c8 c e e | + e e e8. e16 e4. d8 | + h4( e) e s | + s1*3 | + s8 c c h16[( a]) h8 a gis4 | + a s2. | + s1 | + s4. e'8 e d16[( c]) d8 d | + d4( c) h s | + s1 | + s8 r2 g'8 g fis16[( e]) | + fis8 e dis4 e s | + s8 a, gis8. gis16 gis8 a a[( gis]) | + a c c h16[( a]) h8 h h a16[( g]) | + a8 a a a e'4. e8 | + e f h,4 c8 a a a | + a8. a16 a8 a a4( gis) | + a s2. | + s1 | \bar "|." +} + +bassMelodieII = \relative e { + s8 e e e a4 c | + h2 a4 s | + s8 r2.. | + r2 r8 e8 e e | + a4 c h2 | + a8 a a g16[( fis]) g8 g g fis16[( e]) | + a8 g16[( fis]) h8[( h,]) e4 r | + r8 a, a a e'4 g | + fis2 e8 e d c16[( h]) | + c8 c c h16[( a]) g8 g' g a | + h4( h,) e r | + r2 r8 g8 g fis16[( e]) | + a[( c]) h[( a]) h4 e, s | + s8 r2.. | + r2 r8 a, a a | + d4 f e2 | + d8 d d g c, c' c h16[( a]) | + gis4 r8 e a8. a16 a8 d, | + e2 a,4 s | + s1*3 | + s8 c' c h16[( a]) h8 a gis4 | + a s2. | + s1 | + s4. c8 a a h g | + c4( c,) g' s | + s1 | + s8 h, h h e4 g | + fis2 e4 s | + s8 e d c16[( h]) c8. d16 e4 | + a,8 a' a g16[( f]) g8 g g f16[( e]) | + f8 f f e16[( d]) e4. e8 | + a8 d, e4 a8 g g f16[( e]) | + f8. f16 f8 d e2 | + a,4 s2. | + s1 | \bar "|." +} diff --git a/Uns_ist_ein_Kind_geboren/parts/stimmen_IV_Chor.ly b/Uns_ist_ein_Kind_geboren/parts/stimmen_IV_Chor.ly new file mode 100644 index 0000000..869f335 --- /dev/null +++ b/Uns_ist_ein_Kind_geboren/parts/stimmen_IV_Chor.ly @@ -0,0 +1,190 @@ +\version "2.12" + +globalVIII = { + \time 3/4 + \key c \major + \autoBeamOff +} + +pausenVIII = { + R2.*6 | + r2 s4 | + s2. | + s2 r4 | + r2 s4 | + s2. | + s2 r4 | + R2. | + r2 s4 | + s2. | + s2 r4 | + r2 s4 | + s2.*6 | + R2. | + r2 s4 | + s2.*2 | + R2. | + r2 s4 | + s2.*2 | + r2 s4 | + s2.*6 | + r2 r8 s | + s2. | + s4 \bar "|." +} + +sopranMelodieVIII = \relative a' { + s2.*6 | + s2 a4 | + c2 h4 | + a2 s4 | + s2 a4 | + c2 h4 | + a2 s4 | + s2. | + s2 e'4 | + d d c | + h2 s4 | + s2 h4 | + c2 c4 | + d2 d4 | + e2 e4 | + d2 c4~ | + c h2 | + a2. | + s | + s2 e'4 | + d2 c4 | + h2. | + s | + s2 e4 | + d2 c4 | + h2. | + s2 h4 | + c2 c4 | + d2 d4 | + e2 e4 | + d2 c4~ | + c h2 | + a2. | + s2 s8 e | + a4 a( gis) | + a \bar "|." +} + +altMelodieVIII = \relative c' { + s2.*6 | + s2 c4 | + e2 e4 | + c2 s4 | + s2 c4 | + e2 e4 | + c2 s4 | + s2. | + s2 g'4 | + g g e | + e2 s4 | + s2 e4 | + e2 e4 | + g2 g4 | + g2 g4 | + g2 e4( | + f) h,( e) | + c2. | + s | + s2 g'4 | + g2 e4 | + e2. | + s | + s2 g4 | + g2 e4 | + e2. | + s2 e4 | + e2 e4 | + g2 g4 | + g2 g4 | + g2 e4( | + f) h,( e) | + c2. | + s2 s8 e | + e4 e2 | + c4 \bar "|." +} + +tenorMelodieVIII = \relative a { + s2.*6 | + s2 a4 | + a2 gis4 | + a2 s4 | + s2 a4 | + a2 gis4 | + a2 s4 | + s2. | + s2 c4 | + h h a | + gis2 s4 | + s2 gis4 | + a2 a4 | + h2 h4 | + c2 c4 | + h2 a4~ | + a a( gis) | + a2. | + s | + s2 c4 | + h2 a4 | + gis2. | + s | + s2 c4 | + h2 a4 | + gis2. | + s2 gis4 | + a2 a4 | + h2 h4 | + c2 c4 | + h2 a4~ | + a a( gis) | + a2. | + s2 s8 e' | + c4 h2 | + a4 \bar "|." +} + +bassMelodieVIII = \relative a { + s2.*6 | + s2 a4 | + a2 e4 | + a,2 s4 | + s2 a'4 | + a2 e4 | + a,2 s4 | + s2. | + s2 c'4 | + g g a | + e2 s4 | + s2 e4 | + a2 a4 | + g2 g4 | + c2 c4 | + g2 a4( | + d,) e2 | + a,2. | + s | + s2 c'4 | + g2 a4 | + e2. | + s | + s2 c'4 | + g2 a4 | + e2. | + s2 e4 | + a2 a4 | + g2 g4 | + c2 c,4 | + g'2 a4( | + d,) e2 | + a,2. | + s2 s8 e' | + a4 e2 | + a,4 \bar "|." +} diff --git a/Uns_ist_ein_Kind_geboren/parts/texte_II_Chor.ly b/Uns_ist_ein_Kind_geboren/parts/texte_II_Chor.ly new file mode 100644 index 0000000..38da72a --- /dev/null +++ b/Uns_ist_ein_Kind_geboren/parts/texte_II_Chor.ly @@ -0,0 +1,61 @@ + +textSopranII = \lyricmode { + \repeat unfold 14 { \skip 1 } + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + uns ist ein Kind ge -- bo -- ren, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + uns ist ein Kind ge -- bo -- ren, + ein Sohn ist uns, ein Sohn ist uns, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + + ein Sohn ist uns ge -- ge -- ben, + \repeat unfold 55 { \skip 1 } +} + +textAltII = \lyricmode { + Ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + uns ist ein Kind ge -- bo -- ren, + ein Sohn ist uns, ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, ist uns ge -- ge -- ben, + uns ist ein Kind ge -- bo -- ren, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns, ein Sohn ist uns, ein Sohn ist uns ge -- ge -- ben, + + uns ist ein Kind ge -- bo -- ren, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns, ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns, ein Sohn ist uns, + ein Sohn ist uns, ist uns ge -- ge -- ben, + ein Sohn ist uns, ist uns ge -- ge -- ben. +} + +textTenorII = \lyricmode { + % TODO +} + +textBassII = \lyricmode { + Uns ist ein Kind ge -- bo -- ren, + uns ist ein Kind ge -- bo -- ren, + ein Sohn ist uns, ein Sohn ist uns ge -- ge -- ben, + uns ist ein Kind ge -- bo -- ren, + ein Sohn ist uns, ein Sohn ist uns, ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + uns ist ein Kind ge -- bo -- ren, + ein Sohn ist uns, ein Sohn ist uns, ein Sohn ist uns ge -- ge -- ben, + + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns ge -- ge -- ben, + uns ist ein Kind ge -- bo -- ren, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns, ist uns, ein Sohn ist uns, + ein Sohn ist uns ge -- ge -- ben, + ein Sohn ist uns, ist uns ge -- ge -- ben. +} diff --git a/Uns_ist_ein_Kind_geboren/parts/texte_IV_Chor.ly b/Uns_ist_ein_Kind_geboren/parts/texte_IV_Chor.ly new file mode 100644 index 0000000..4e7f569 --- /dev/null +++ b/Uns_ist_ein_Kind_geboren/parts/texte_IV_Chor.ly @@ -0,0 +1,9 @@ + +textVIII = \lyricmode { + Ha -- le -- lu -- ja, Ha -- le -- lu -- ja, + ge -- lo -- bet sei Gott, + sin -- gen wir all' aus un -- sers Her -- zens Grun -- de: + denn Gott hat heut' ge -- macht solch' Freud', + der wir ver -- ges -- sen soll'n zu kei -- ner Stun -- de. + Hal -- le -- lu -- ja. +} |