blob: 1b438a871b554f3f8f332cb9a102ecce823cbcbb (
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
|
\include "deutsch.ly"
\include "stimmen.ly"
\include "texte.ly"
#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist))
#(set-default-paper-size "kindle")
\pointAndClickOff
\header {
tagline = ""
}
\paper {
top-margin = 5
}
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff {
<<
\new Voice = frauen { \generalPausen }
\new Voice = sopran { \global \voiceOne \sopranMelodie }
\new Voice = alt { \global \voiceTwo \altMelodie }
>>
% \new Voice = "Alt" { \voiceTwo \relative c'' { \Praes
% a4 | fis d a' fis | fis2. a4 | g d d8( cis) d4 | cis2. cis4 | d d fis fis | e e e fis | e a2( gis4) | e2. d4 | d2 e | a4( g fis) d | d d d8( cis) d4 | fis fis fis g | fis2 e4( g) fis2. }}
}
\new Lyrics \lyricsto sopran { \sopranTextI }
\new Lyrics \lyricsto sopran { \sopranTextII }
\new Staff <<
\new Voice = maenner { \generalPausen }
\new Voice = tenor { \global \voiceOne \tenorMelodie }
\new Voice = bass { \global \voiceTwo \bassMelodie }
>>
>>
\layout {
indent = #0
}
}
|