blob: f2cc235d1adde768d82767640be2c1bd6fc330a2 (
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
40
41
42
43
44
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
>>
}
|