blob: 5f75a3b6a9bb96e5f95d899766d889525fff301d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'Sancto
\new Voice = sopran { \globalSancto \sopranMelodieSancto }
>>
\new Lyrics = Stext { }
\new Staff <<
\new Voice = alt { \globalSancto \altMelodieSancto }
>>
\new Lyrics = Atext { }
\new Staff <<
\new Voice = tenor { \globalSancto \clef "G_8" \tenorMelodieSancto }
>>
\new Lyrics = Ttext { }
\new Staff <<
\new Voice = bass { \globalSancto \clef "bass" \bassMelodieSancto }
>>
\new Lyrics = Btext { }
\context Lyrics = Stext \lyricsto sopran \textSanctoSopran
\context Lyrics = Atext \lyricsto alt \textSanctoAlt
\context Lyrics = Ttext \lyricsto tenor \textSanctoTenor
\context Lyrics = Btext \lyricsto bass \textSanctoBass
>>
\layout {
indent = #0
}
\header {
title = "12. Cum sancto spiritu"
composer = ##f
}
}
|