diff options
Diffstat (limited to 'Komm_Heiliger_Geist/Komm_Heiliger_Geist.ly')
-rw-r--r-- | Komm_Heiliger_Geist/Komm_Heiliger_Geist.ly | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/Komm_Heiliger_Geist/Komm_Heiliger_Geist.ly b/Komm_Heiliger_Geist/Komm_Heiliger_Geist.ly new file mode 100644 index 0000000..5f0664b --- /dev/null +++ b/Komm_Heiliger_Geist/Komm_Heiliger_Geist.ly @@ -0,0 +1,55 @@ +\include "deutsch.ly" +#(ly:set-option 'relative-includes #t) +\include "stimmen.ly" +\include "texte.ly" +#(ly:set-option 'relative-includes #f) + +%spezifisch% + +\pointAndClickOff + +\header { + tagline = "" +} +\paper { + top-margin = 5 + print-all-headers = ##t +} + +\score { + \header { + title = "Komm, Heiliger Geist" + poet = "Text: Michael Denis 1774" + composer = "Musik: Johann Michael Haydn" + tagline = "" + } + + \new ChoirStaff << + \set Score.skipBars = ##t + \new Lyrics = textSopran { } + \new Staff << + \new Voice = frauen { \global \oneVoice \pausenFrauen } + \new Voice = sopran { \global \voiceOne \melodieSopran } + \new Voice = alt { \global \voiceTwo \melodieAlt } + >> + \new Lyrics = textI { } + \new Lyrics = textII { } + \new Lyrics = textIII { } + \new Staff << + \new Voice = maenner { \global \clef "bass" \melodieMaenner } + >> + + \context Lyrics = textI \lyricsto sopran { \textI } + \context Lyrics = textII \lyricsto sopran { \textII } + \context Lyrics = textIII \lyricsto sopran { \textIII } + >> + \layout { + indent = #0 + \context { + \Staff + \RemoveEmptyStaves + \override VerticalAxisGroup #'remove-first = ##t + } + } +} + |