summaryrefslogtreecommitdiff
path: root/Messe_2012/Messe_2012.ly
blob: 547f7f6647acb2cd02c0ec6ec0a6fc79965411d7 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)

\pointAndClickOff

#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist))
#(set-default-paper-size "kindle")

\book {

\paper {
  top-margin = 5
  print-all-headers = ##t
}
\header {
  title = "Messe 2012"
  composer = "Michael Schütz"
  tagline = ##f
}

\score { % Kyrie % {{{
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff {
      \label #'Kyrie
      \set Staff.instrumentName = #"S"
      \new Voice = sopran { \globalKyrie \sopranMelodieKyrie }
    }
    \new Lyrics \lyricsto sopran { \sopranTextKyrie }
    \new Staff {
      \set Staff.instrumentName = #"A"
      \new Voice = alt    { \globalKyrie \altMelodieKyrie }
    }
    \new Lyrics \lyricsto alt{ \altTextKyrie }
    \new Staff {
      \set Staff.instrumentName = #"T"
      \new Voice = tenor   { \globalKyrie \tenorMelodieKyrie }
    }
    \new Lyrics \lyricsto tenor { \tenorTextKyrie }
    \new Staff {
      \set Staff.instrumentName = #"B"
      \new Voice = bass    { \globalKyrie \bassMelodieKyrie }
    }
    \new Lyrics \lyricsto bass { \bassTextKyrie }
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Kyrie"
    composer = ##f
  }
} % }}}

\score { % Gloria % {{{
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff <<
      \label #'Gloria
      \set Staff.instrumentName = #"S+A"
      \new Voice = pFrauen { \globalGloria \pausenFrauenGloria }
      \new Voice = sopran  { \globalGloria \voiceOne \sopranMelodieGloria }
      \new Voice = alt     { \globalGloria \voiceTwo \altMelodieGloria }
    >>
    \new Lyrics \lyricsto sopran { \textGloria }
    \new Staff <<
      \set Staff.instrumentName = #"T+B"
      \new Voice = pMaenner { \globalGloria \pausenMaennerGloria }
      \new Voice = tenor    { \globalGloria \voiceOne \clef "bass" \tenorMelodieGloria }
      \new Voice = bass     { \globalGloria \voiceTwo \clef "bass" \bassMelodieGloria }
    >>
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Gloria"
    composer = ##f
  }
} % }}}

\score { % Credo % {{{
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff {
      \label #'Credo
      \set Staff.instrumentName = #"S"
      \new Voice = sopran { \globalCredo \sopranMelodieCredo }
    }
    \new Lyrics \lyricsto sopran { \sopranTextCredo }
    \new Staff {
      \set Staff.instrumentName = #"A"
      \new Voice = alt    { \globalCredo \altMelodieCredo }
    }
    \new Lyrics \lyricsto alt{ \altTextCredo }
    \new Staff {
      \set Staff.instrumentName = #"T"
      \new Voice = tenor   { \globalCredo \tenorMelodieCredo }
    }
    \new Lyrics \lyricsto tenor { \tenorTextCredo }
    \new Staff {
      \set Staff.instrumentName = #"B"
      \new Voice = bass    { \globalCredo \bassMelodieCredo }
    }
    \new Lyrics \lyricsto bass { \bassTextCredo }
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Credo"
    composer = ##f
  }
} % }}}

\score { % Sanctus % {{{
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff <<
      \label #'Sanctus
      \set Staff.instrumentName = #"S+A"
      \new Voice = pFrauen { \globalSanctus \pausenFrauenSanctus }
      \new Voice = sopran  { \globalSanctus \voiceOne \sopranMelodieSanctus }
      \new Voice = alt     { \globalSanctus \voiceTwo \altMelodieSanctus }
    >>
    \new Lyrics \lyricsto sopran { \textSanctus }
    \new Staff <<
      \set Staff.instrumentName = #"T+B"
      \new Voice = pMaenner { \globalSanctus \pausenMaennerSanctus }
      \new Voice = tenor    { \globalSanctus \voiceOne \clef "bass" \tenorMelodieSanctus }
      \new Voice = bass     { \globalSanctus \voiceTwo \clef "bass" \bassMelodieSanctus }
    >>
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Sanctus"
    composer = ##f
  }
} % }}}

\score { % Agnus Dei % {{{
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Lyrics = "textSopranAgnus" { }
    \new Staff <<
      \label #'Agnus
      \set Staff.instrumentName = #"S+A"
      \new Voice = pFrauen { \globalAgnus \pausenFrauenAgnus }
      \new Voice = sopran  { \globalAgnus \voiceOne \sopranMelodieAgnus }
      \new Voice = alt     { \globalAgnus \voiceTwo \altMelodieAgnus }
    >>
    \new Lyrics = "textAltAgnus" { }
    \new Lyrics = "textTenorAgnus" { }
    \new Staff <<
      \set Staff.instrumentName = #"T+B"
      \new Voice = pMaenner { \globalAgnus \pausenMaennerAgnus }
      \new Voice = tenor    { \globalAgnus \voiceOne \clef "bass" \tenorMelodieAgnus }
      \new Voice = bass     { \globalAgnus \voiceTwo \clef "bass" \bassMelodieAgnus }
    >>
    \new Lyrics = "textBassAgnus" { }
    \context Lyrics = "textSopranAgnus" \lyricsto "sopran" \textSopranAgnus
    \context Lyrics = "textAltAgnus" \lyricsto "alt" \textAltAgnus
    \context Lyrics = "textTenorAgnus" \lyricsto "tenor" \textTenorAgnus
    \context Lyrics = "textBassAgnus" \lyricsto "bass" \textBassAgnus
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Agnus Dei"
    composer = ##f
  }
} % }}}

\markup { Kyrie: Seite \page-ref #'Kyrie "0" "?" }
\markup { Gloria: Seite \page-ref #'Gloria "0" "?" }
\markup { Credo: Seite \page-ref #'Credo "00" "?" }
\markup { Sanctus: Seite \page-ref #'Sanctus "00" "?" }
\markup { Agnus Dei: Seite \page-ref #'Agnus "00" "?" }

}

%{\score {
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff {
      <<
	\new Voice = frauen { \generalPausenFrauen \bar "|." }
	\new Voice = sopran { \global \voiceOne \sopranMelodie \bar "|." }
	\new Voice = alt    { \global \voiceTwo \altMelodie \bar "|." }
      >>
    }
    \new Lyrics \lyricsto sopran { \sopranText }
    \new Lyrics \lyricsto alt{ \altText }
    \new Staff {
      <<
	\new Voice = maenner { \generalPausenMaenner \bar "|." }
	\new Voice = tenor   { \global \voiceOne \tenorMelodie \bar "|." }
	\new Voice = bass    { \global \voiceTwo \bassMelodie \bar "|." }
      >>
    }
    \new Lyrics \lyricsto tenor { \tenorText }
    \new Lyrics \lyricsto bass { \bassText }
  >>
  \layout {
    indent = #0
  }
}
%}