blob: 7812063153f7f68c30b94be19b5991efda67ee89 (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
\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 {
top-margin = 5
print-all-headers = ##t
}
\book {
\score {
\header {
title = "Ronja Räubertochter"
subtitle = "Titelmelodie des schwedischen Kinofilms"
composer = "Björn Isfält"
arranger = "Notensatz: Conrad Haase"
meter = "Andante con moto"
tagline = ""
}
\new Staff <<
\set Score.skipBars = ##t
\new ChoirStaff <<
\new Lyrics = textSopran { }
\new Staff <<
\new Voice = solo { \global \oneVoice \melodieSolo }
>>
\new Lyrics = textMelodie { }
\new Staff <<
\clef "G_8"
\new Voice = bgPausen { \global \oneVoice \bgPausen }
\new Voice = bgOben { \global \voiceOne \melodieBackgroundOben }
\new Voice = bgUnten { \global \voiceTwo \melodieBackgroundUnten }
>>
\new Lyrics = textBackground { }
>>
\context Lyrics = textMelodie \lyricsto solo { \textSolo }
\context Lyrics = textBackground \lyricsto bgOben { \textBackground }
>>
\layout {
indent = #0
\context {
\Staff
\RemoveEmptyStaves
\override VerticalAxisGroup #'remove-first = ##t
}
}
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
}
\book {
\bookOutputSuffix "Melodie"
\score {
\unfoldRepeats {
\new Staff {
\new Voice = solo { \global \melodieSolo }
}
}
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
}
\book {
\bookOutputSuffix "Begleitung-Oben"
\score {
\unfoldRepeats {
\new Staff {
\clef "G_8"
\new Voice = bgOben { \global << \melodieBackgroundOben \bgPausen >> }
}
}
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
}
\book {
\bookOutputSuffix "Begleitung-Unten"
\score {
\unfoldRepeats {
\new Staff {
\clef "G_8"
\new Voice = bgOben { \global << \melodieBackgroundUnten \bgPausen >> }
}
}
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
}
|