diff options
Diffstat (limited to 'Exsultate_Deo/Exsultate_Deo.ly')
-rwxr-xr-x | Exsultate_Deo/Exsultate_Deo.ly | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/Exsultate_Deo/Exsultate_Deo.ly b/Exsultate_Deo/Exsultate_Deo.ly new file mode 100755 index 0000000..f2cc235 --- /dev/null +++ b/Exsultate_Deo/Exsultate_Deo.ly @@ -0,0 +1,45 @@ +\include "deutsch.ly" +#(ly:set-option 'relative-includes #t) +\include "stimmen.pre" +\include "texte.ly" +#(ly:set-option 'relative-includes #f) + +%spezifisch% + +\paper { + top-margin = 5 + print-all-headers = ##t +} + +\header { + tagline = ##f +} +\pointAndClickOff + +\score { + \header { + title = "Exsultate Deo" + composer = "Allessandro Scarlatti (1659-1725)" + meter = "zügig bewegt" + } + \new ChoirStaff << + \new Staff << + \new Voice = "Sopran" \transpose c %TRANSPOSE% { \global \oneVoice \sopranMelodie } + >> + \new Lyrics \lyricsto "Sopran" \sopranText + \new Staff << + \new Voice = "Alt" \transpose c %TRANSPOSE% { \global \oneVoice \altMelodie } + >> + \new Lyrics \lyricsto "Alt" \altText + \new Staff << + \clef "G_8" + \new Voice = "Tenor" \transpose c %TRANSPOSE% { \global \oneVoice \tenorMelodie } + >> + \new Lyrics \lyricsto "Tenor" \tenorText + \new Staff << + \clef "bass" + \new Voice = "Bass" \transpose c %TRANSPOSE% { \global \oneVoice \bassMelodie } + >> + \new Lyrics \lyricsto "Bass" \bassText + >> +} |