diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2022-10-28 09:50:55 +0200 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2022-10-28 09:50:55 +0200 |
commit | 4f00781b82452c5f7418d14b8624af4f7245fc01 (patch) | |
tree | 82f93f8993da2e7aab06cee74ce231f7af1336d6 /Messias | |
parent | 72ccc79368168ced95925ec1b2014166fb415715 (diff) | |
download | Musik-4f00781b82452c5f7418d14b8624af4f7245fc01.tar.xz |
Messias: XX angelegt
Diffstat (limited to 'Messias')
-rw-r--r-- | Messias/Messias.ly | 2 | ||||
-rw-r--r-- | Messias/parts/XX.ly | 35 | ||||
-rw-r--r-- | Messias/parts/stimmenXX.ly | 17 | ||||
-rw-r--r-- | Messias/parts/texteXX.ly | 11 |
4 files changed, 65 insertions, 0 deletions
diff --git a/Messias/Messias.ly b/Messias/Messias.ly index f45db2a..57960a4 100644 --- a/Messias/Messias.ly +++ b/Messias/Messias.ly @@ -19,6 +19,7 @@ include(parts/IX.pre) include(parts/XII.pre) include(parts/XV.pre) include(parts/XIX.pre) +include(parts/XX.pre) include(parts/XXII.pre) include(parts/XLII.pre) include(parts/XLIV.pre) @@ -30,6 +31,7 @@ include(parts/LI.pre) \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 20: Seite \page-ref #'ChorXX "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/XX.ly b/Messias/parts/XX.ly new file mode 100644 index 0000000..c4fb411 --- /dev/null +++ b/Messias/parts/XX.ly @@ -0,0 +1,35 @@ +include(parts/stimmenXX.pre) +include(parts/texteXX.pre) + +\score { + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff { + \label #'ChorXX + \new Voice = sopran { \globalXX \sopranMelodieXX \bar "|." } + } + ifdef(`deutsch',`',`\new Lyrics \lyricsto sopran { \sopranTextXXEng }') + \new Staff { + \new Voice = alt { \globalXX \altMelodieXX } + } + ifdef(`deutsch',`',`\new Lyrics \lyricsto alt{ \altTextXXEng }') + \new Staff { + \new Voice = tenor { \globalXX \tenorMelodieXX } + } + ifdef(`deutsch',`',`\new Lyrics \lyricsto tenor { \tenorTextXXEng }') + \new Staff { + \new Voice = bass { \globalXX \bassMelodieXX } + } + ifdef(`deutsch',`',`\new Lyrics \lyricsto bass { \bassTextXXEng }') + >> + \layout { + indent = #0 + } + \header { + title = "Messias" + subtitle = ##f + piece = "Nr. 20 Chor" + composer = "Georg Friedrich Händel" + tagline = ##f + } +} diff --git a/Messias/parts/stimmenXX.ly b/Messias/parts/stimmenXX.ly new file mode 100644 index 0000000..e6eb71a --- /dev/null +++ b/Messias/parts/stimmenXX.ly @@ -0,0 +1,17 @@ +globalXX = { + \autoBeamOff + \time 4/4 + \key b \major +} + +sopranMelodieXX = \relative f' { +} + +altMelodieXX = \relative f' { +} + +tenorMelodieXX = \relative f' { +} + +bassMelodieXX = \relative f' { +} diff --git a/Messias/parts/texteXX.ly b/Messias/parts/texteXX.ly new file mode 100644 index 0000000..3e5021e --- /dev/null +++ b/Messias/parts/texteXX.ly @@ -0,0 +1,11 @@ +sopranTextXXEng = \lyricmode { +} + +altTextXXEng = \lyricmode { +} + +tenorTextXXEng = \lyricmode { +} + +bassTextXXEng = \lyricmode { +} |