diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2022-10-19 10:29:15 +0200 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2022-10-19 10:29:15 +0200 |
commit | f5be9ff75cfe3d28bde6203cd7049cad7581aae2 (patch) | |
tree | 11487b155e036312f9c4d35197cb1f9cda1d32e5 | |
parent | cbcd32ca87703c04021203864a1157be29a35193 (diff) | |
download | Musik-f5be9ff75cfe3d28bde6203cd7049cad7581aae2.tar.xz |
Messias: XIX begonnen
-rw-r--r-- | Messias/Messias.ly | 4 | ||||
-rw-r--r-- | Messias/parts/XIX.ly | 34 | ||||
-rw-r--r-- | Messias/parts/stimmenXIX.ly | 40 | ||||
-rw-r--r-- | Messias/parts/texteXIX.ly | 11 |
4 files changed, 89 insertions, 0 deletions
diff --git a/Messias/Messias.ly b/Messias/Messias.ly index fd63902..681f607 100644 --- a/Messias/Messias.ly +++ b/Messias/Messias.ly @@ -23,6 +23,8 @@ \include "parts/texteXII.ly" \include "parts/stimmenXV.ly" \include "parts/texteXV.ly" +\include "parts/stimmenXIX.ly" +\include "parts/texteXIX.ly" \include "parts/stimmenXXII.ly" \include "parts/texteXXII.ly" \include "parts/stimmenXLII.ly" @@ -37,6 +39,7 @@ \include "parts/IX.ly" \include "parts/XII.ly" \include "parts/XV.ly" +\include "parts/XIX.ly" \include "parts/XXII.ly" \include "parts/XLII.ly" \include "parts/XLIV.ly" @@ -47,6 +50,7 @@ \markup { Chor 9: Seite \page-ref #'ChorIX "00" "?" } \markup { Chor 12: Seite \page-ref #'ChorXII "00" "?" } \markup { Chor 15: Seite \page-ref #'ChorXV "00" "?" } +\markup { Chor 19: Seite \page-ref #'ChorXIX "00" "?" } \markup { Chor 22: Seite \page-ref #'ChorXXII "00" "?" } \markup { Chor 42: Seite \page-ref #'ChorXLII "00" "?" } \markup { Chor 44: Seite \page-ref #'ChorXLIV "00" "?" } diff --git a/Messias/parts/XIX.ly b/Messias/parts/XIX.ly new file mode 100644 index 0000000..7a501cc --- /dev/null +++ b/Messias/parts/XIX.ly @@ -0,0 +1,34 @@ +\include "deutsch.ly" + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff { + \label #'ChorXIX + \new Voice = sopran { \globalXIX \sopranMelodieXIX \bar "|." } + } + \new Lyrics \lyricsto sopran { \sopranTextXIX } + \new Staff { + \new Voice = alt { \globalXIX \altMelodieXIX } + } + \new Lyrics \lyricsto alt{ \altTextXIX } + \new Staff { + \new Voice = tenor { \globalXIX \tenorMelodieXIX } + } + \new Lyrics \lyricsto tenor { \tenorTextXIX } + \new Staff { + \new Voice = bass { \globalXIX \bassMelodieXIX } + } + \new Lyrics \lyricsto bass { \bassTextXIX } + >> + \layout { + indent = #0 + } + \header { + title = "Messias" + subtitle = ##f + piece = "Nr. 19 Chor" + composer = "Georg Friedrich Händel" + tagline = ##f + } +} diff --git a/Messias/parts/stimmenXIX.ly b/Messias/parts/stimmenXIX.ly new file mode 100644 index 0000000..79f7b5f --- /dev/null +++ b/Messias/parts/stimmenXIX.ly @@ -0,0 +1,40 @@ +\version "2.12" + +globalXIX = { + \autoBeamOff + \time 4/4 + \key b \major +} + +sopranMelodieXIX = \relative f' { + \set Staff.instrumentName = #"S" + r4. f8 b8.[( c16] d8) c16[ b] | + f'4~ f16[ g f g] es8.[ d16 es8 f] es[ f es f] | + d[ c] b8 r es d16[ c] b4 g'8 | + f16[ es d8] r f, g16[ a] b8 r f' | + es[ d16 c] c8. b16 b4 r | + R1*5 | + r4. b8 a16[ g] f4 d'8 | + c16[ b a8] r c d16[ es] f4 es16[ d] | + b8[ a16 g] g8. f16 f4 r | + r4. g8 a16[ b] c4 d8 | + e[ f16 g] e8. f16 f4 r | + r2.. c8 | +} + +altMelodieXIX = \relative a' { + \set Staff.instrumentName = #"A" + R1*5 | +} + +tenorMelodieXIX = \relative a { + \set Staff.instrumentName = #"T" + \clef "G_8" + R1*4 | +} + +bassMelodieXIX = \relative a { + \set Staff.instrumentName = #"B" + \clef "bass" + R1*7 | +} diff --git a/Messias/parts/texteXIX.ly b/Messias/parts/texteXIX.ly new file mode 100644 index 0000000..1966ba9 --- /dev/null +++ b/Messias/parts/texteXIX.ly @@ -0,0 +1,11 @@ +sopranTextXIX = \lyricmode { +} + +altTextXIX = \lyricmode { +} + +tenorTextXIX = \lyricmode { +} + +bassTextXIX = \lyricmode { +} |