diff options
author | Erich Eckner <git@eckner.net> | 2017-02-17 00:55:19 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-02-17 00:55:19 +0100 |
commit | 22109d360342f3549fdc6d10b01dd64a9a5cd58a (patch) | |
tree | 0f273456a8ba1900f23c335c6fbdace520e1b286 /Pop_Messe/sanctus/sanctus.ly | |
parent | 662d81696ae774d12f7293494a5f82e6a27169cc (diff) | |
download | Musik-22109d360342f3549fdc6d10b01dd64a9a5cd58a.tar.xz |
Pop_Messe angefangen
Diffstat (limited to 'Pop_Messe/sanctus/sanctus.ly')
-rw-r--r-- | Pop_Messe/sanctus/sanctus.ly | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/Pop_Messe/sanctus/sanctus.ly b/Pop_Messe/sanctus/sanctus.ly new file mode 100644 index 0000000..d079671 --- /dev/null +++ b/Pop_Messe/sanctus/sanctus.ly @@ -0,0 +1,48 @@ +\include "deutsch.ly" +#(ly:set-option 'relative-includes #t) +\include "artikulation.ly" +\include "stimmen.ly" +\include "texte.ly" +#(ly:set-option 'relative-includes #f) + +\header { + tagline = "" +} +\paper { + top-margin = 5 + print-all-headers = ##t +} + +\pointAndClickOff + +\score { + \header { + title = "Sanctus" + } + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = sopran { \globalSanctus << \melodieSopranSanctus \artikulationSanctus >> } + >> + \new Lyrics \lyricsto sopran { \textSopranSanctus } + \new Staff << + \new Voice = alt { \globalSanctus << \melodieAltSanctus \artikulationSanctus >> } + >> + \new Lyrics \lyricsto alt { \textAltSanctus } + \new Staff << + \new Voice = tenor { \clef "G_8" \globalSanctus << \melodieTenorSanctus \artikulationSanctus >> } + >> + \new Lyrics \lyricsto tenor { \textTenorSanctus } + \new Staff << + \new Voice = bass { \clef "bass" \globalSanctus << \melodieBassSanctus \artikulationSanctus >> } + >> + \new Lyrics \lyricsto bass { \textBassSanctus } + >> + \layout { +% indent = #0 + \context { + \Staff + \RemoveEmptyStaves + } + } +} |