blob: f19d526c8c1805bd433d57e7e26ced361d98dc00 (
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
36
37
38
39
|
\include "deutsch.ly"
#(ly:set-option 'relative-includes #t)
\include "stimmen_Domine.ly"
\include "texte_Domine.ly"
#(ly:set-option 'relative-includes #f)
\score { % Domine % {{{
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'Domine
\new Voice = sopran { \globalDomine \sopranMelodieDomine }
>>
\new Lyrics = stext { }
\new Staff <<
\new Voice = alt { \globalDomine \altMelodieDomine }
>>
\new Lyrics = atext { }
\new Staff <<
\new Voice = tenor { \globalDomine \clef "G_8" \tenorMelodieDomine }
>>
\new Lyrics = ttext { }
\new Staff <<
\new Voice = bass { \globalDomine \clef "bass" \bassMelodieDomine }
>>
\new Lyrics = btext { }
\context Lyrics = stext \lyricsto sopran \textDomineSopran
\context Lyrics = atext \lyricsto alt \textDomineAlt
\context Lyrics = ttext \lyricsto tenor \textDomineTenor
\context Lyrics = btext \lyricsto bass \textDomineBass
>>
\layout {
indent = #0
}
\header {
title = "7. Domine fili unigenite"
composer = ##f
}
} % }}}
|