blob: 3d245486c0d0e8353b0ca4687ce9787579d52e45 (
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
|
\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 {
print-all-headers = ##t
}
\score {
\header {
title = "Er ist mein Hirt"
composer = "Joseph Haydn, London 1794/95"
poet = "Text: Lene Mayer-Skumanz, nach Ps. 23"
}
\new StaffGroup = choirStaff <<
\new Voice = sopran { \global \sopranMelodie }
\new Lyrics \lyricsto sopran { \textSopran }
\new Voice = alt { \global \altMelodie }
\new Lyrics \lyricsto alt { \textAlt }
\new Voice = bass { \global \clef "bass" \bassMelodie }
\new Lyrics \lyricsto bass { \textBass }
>>
}
|