diff options
Diffstat (limited to 'Die_Himmel_ruehmen/satz.ly')
-rw-r--r-- | Die_Himmel_ruehmen/satz.ly | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Die_Himmel_ruehmen/satz.ly b/Die_Himmel_ruehmen/satz.ly new file mode 100644 index 0000000..0082db7 --- /dev/null +++ b/Die_Himmel_ruehmen/satz.ly @@ -0,0 +1,29 @@ +\score { + \header { + title = "Die Himmel rühmen" + composer = "Ludwig van Beethoven (1770-1827)" + poet = "Text: Chr. Fürchtegott Gellert" + } + \new ChoirStaff << + \new Lyrics = "sopranText" + \new Staff << + \new Voice = "Frauen" { \global \oneVoice \pausen } + \new Voice = "Sopran" \transpose c transponiert { \global \voiceOne \sopranMelodie } + \new Voice = "Alt" \transpose c transponiert { \global \voiceTwo \altMelodie } + >> + \new Lyrics = "altText" + \new Staff << + \clef "bass" + \new Voice = "Maenner" { \global \oneVoice \pausen } + \new Voice = "Tenor" \transpose c transponiert { \global \voiceOne \tenorMelodie } + \new Voice = "Bass" \transpose c transponiert { \global \voiceTwo \bassMelodie } + >> + \new Lyrics = "bassText" + \context Lyrics = "sopranText" \lyricsto "Sopran" \sopranText + \context Lyrics = "altText" \lyricsto "Alt" \altText + \context Lyrics = "bassText" \lyricsto "Bass" \bassText + >> + \layout { + indent = #0 + } +} |