diff options
Diffstat (limited to 'hr/stch/golle/II/parts.ly')
-rw-r--r-- | hr/stch/golle/II/parts.ly | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/hr/stch/golle/II/parts.ly b/hr/stch/golle/II/parts.ly new file mode 100644 index 0000000..49430b2 --- /dev/null +++ b/hr/stch/golle/II/parts.ly @@ -0,0 +1,86 @@ +%some settings% vim: ai sw=2 lbr nu encoding=utf8 + +\include "stimmen.ly" +\include "texte.ly" + + partA = \new ChoirStaff << + \new Staff = sopran << + %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." } + \new Voice = "soprane" { \global \sopranMelodieA } + %\lyricsto soprane \sopranText + >> + \new Staff = alt << + \new Voice = "alti" { \global \altMelodieA } + %\lyricsto alti \altText + >> + \new Staff = tenor << + \new Voice = "tenoere" { \global \tenorMelodieA } + %\lyricsto tenoere \tenorText + >> + \new Staff = bass << + \new Voice = "baesse" { \global \bassMelodieA } + %\lyricsto baesse \bassText + >> + >> + + partB = \new ChoirStaff << + \new Staff = sopran << + %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." } + \new Voice = "soprane" { \sopranMelodieB } + %\lyricsto soprane \sopranText + >> + \new Staff = alt << + \new Voice = "alti" { \altMelodieB } + %\lyricsto alti \altText + >> + \new Staff = tenor << + \new Voice = "tenoere" { \tenorMelodieB } + %\lyricsto tenoere \tenorText + >> + \new Staff = bass << + \new Voice = "baesse" { \bassMelodieB } + %\lyricsto baesse \bassText + >> + >> + + partC = \new ChoirStaff << + \new Staff = sopran << + %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." } + \new Voice = "soprane" { \sopranMelodieC } + %\lyricsto soprane \sopranText + >> + \new Staff = alt << + \new Voice = "alti" { \altMelodieC } + %\lyricsto alti \altText + >> + \new Staff = tenor << + \new Voice = "tenoere" { \tenorMelodieC } + %\lyricsto tenoere \tenorText + >> + \new Staff = bass << + \new Voice = "baesse" { \bassMelodieC } + %\lyricsto baesse \bassText + >> + >> + + wholeMusic = { + << + \new Staff = TenorSolo << + \new Voice = "Tsolo" { \global \tenorSolo } + \lyricsto Tsolo \Tenor + >> + \partA + >> + \\ + \break + \partB + \\ + \break + << + \new Staff = SopranSolo << + \new Voice = "Ssolo" { \global \sopranSolo } + \lyricsto Ssolo \Sopran + >> + \partC + >> + } |