blob: 51a9f4e2aae45a559ce3414778f4aa60881a5968 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
\include "deutsch.ly"
#(ly:set-option 'relative-includes #t)
\include "stimmen.ly"
\include "texte.ly"
#(ly:set-option 'relative-includes #f)
%spezifisch%
\header {
tagline = ""
}
\paper {
top-margin = 5
print-all-headers = ##t
}
\pointAndClickOff
\score {
\header {
title = "Stern über Bethlehem"
composer = "Alfred Hans Zoller"
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Lyrics = "textEinsS" {}
\new Lyrics = "textZweiS" {}
\new Lyrics = "textDreiS" {}
\new Lyrics = "textVierS" {}
\new Staff {
<<
\new Voice = "sopran" { \global \voiceOne \sopranMelodie }
\new Voice = "alt" { \global \voiceTwo \altMelodie }
>>
}
% \new Lyrics = "textEinsA" {}
% \new Lyrics = "textZweiA" {}
% \new Lyrics = "textDreiA" {}
% \new Lyrics = "textVierA" {}
% \new Lyrics = "textEinsT" {}
% \new Lyrics = "textZweiT" {}
% \new Lyrics = "textDreiT" {}
% \new Lyrics = "textVierT" {}
\new Staff <<
\new Voice = "tenor" { \global \clef "bass" \voiceOne \tenorMelodie }
\new Voice = "bass" { \global \clef "bass" \voiceTwo \bassMelodie }
>>
\new Lyrics = "textEinsB" {}
\new Lyrics = "textZweiB" {}
\new Lyrics = "textDreiB" {}
\new Lyrics = "textVierB" {}
\context Lyrics = "textEinsS" \lyricsto "sopran" \textI
\context Lyrics = "textZweiS" \lyricsto "sopran" \textII
\context Lyrics = "textDreiS" \lyricsto "sopran" \textIII
\context Lyrics = "textVierS" \lyricsto "sopran" \textIV
% \context Lyrics = "textEinsA" \lyricsto "alt" \extraI
% \context Lyrics = "textZweiA" \lyricsto "alt" \extraII
% \context Lyrics = "textDreiA" \lyricsto "alt" \extraIII
% \context Lyrics = "textVierA" \lyricsto "alt" \extraIV
% \context Lyrics = "textEinsT" \lyricsto "tenor" \textI
% \context Lyrics = "textZweiT" \lyricsto "tenor" \textII
% \context Lyrics = "textDreiT" \lyricsto "tenor" \textIII
% \context Lyrics = "textVierT" \lyricsto "tenor" \textIV
\context Lyrics = "textEinsB" \lyricsto "bass" \extraI
\context Lyrics = "textZweiB" \lyricsto "bass" \extraII
\context Lyrics = "textDreiB" \lyricsto "bass" \extraIII
\context Lyrics = "textVierB" \lyricsto "bass" \extraIV
>>
\layout {
indent = #0
}
}
|