blob: 0ed178236f609a9621f406a4384b7db1065a35f8 (
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
46
47
48
49
50
51
52
53
54
55
56
|
\include "deutsch.ly"
include(artikulation.pre)
include(stimmen.pre)
include(texte.pre)
%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"
}
\layout {
indent = #0
\context {
\Staff
\RemoveEmptyStaves
\override VerticalAxisGroup #'remove-first = ##t
}
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff = sopran <<
\new Voice = sopran <<
\artikulation
\global \sopranMelodie
>>
\new Lyrics \lyricsto sopran { \textSopran }
>>
\new Staff = alt <<
\new Voice = alt <<
\artikulation
\global \altMelodie
>>
\new Lyrics \lyricsto alt { \textAlt }
>>
\new Staff = bass <<
\new Voice = bass <<
\artikulation
\global \clef "bass" \bassMelodie
>>
\new Lyrics \lyricsto bass { \textBass }
>>
>>
}
|