blob: ac2febbf06ad3202a4c3e532f33223b7e2f36996 (
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
|
\include "deutsch.ly"
include(artikulation.pre)
include(stimmen.pre)
include(texte.pre)
\pointAndClickOff
\header {
tagline = ""
}
\paper {
top-margin = 5
print-all-headers = ##t
}
#(set-global-staff-size 19)
\score {
\header {
title = "Weihnachts-Wiegenlied"
poet = "Text: John Rutter"
meter = "Übersetzung: Alex Grendelmeier"
composer = "Musik: John Rutter"
}
\new ChoirStaff <<
\new Staff <<
\set Score.skipBars = ##t
\new Voice = frauen { \global \oneVoice << \frauenPausen \dynamik >> }
\new Voice = sopran { \global \voiceOne \sopranMelodie }
\new Voice = alt { \global \voiceTwo \altMelodie }
>>
ifdef(`STR_1D',\new Lyrics \lyricsto sopran { \textID })
ifdef(`STR_1E',\new Lyrics \lyricsto sopran { \textIE })
ifdef(`STR_2D',\new Lyrics \lyricsto sopran { \textIID })
ifdef(`STR_2E',\new Lyrics \lyricsto sopran { \textIIE })
ifdef(`STR_3D',\new Lyrics \lyricsto sopran { \textIIID })
ifdef(`STR_3E',\new Lyrics \lyricsto sopran { \textIIIE })
\new Staff <<
\new Voice = maenner { \global \clef "bass" \oneVoice << \maennerPausen \dynamik >> }
\new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie }
\new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie }
>>
ifdef(`STR_1D',\new Lyrics \lyricsto tenor { \mTextID })
ifdef(`STR_1E',\new Lyrics \lyricsto tenor { \mTextIE })
ifdef(`STR_2D',\new Lyrics \lyricsto tenor { \mTextIID })
ifdef(`STR_2E',\new Lyrics \lyricsto tenor { \mTextIIE })
ifdef(`STR_3D',\new Lyrics \lyricsto tenor { \mTextIIID })
ifdef(`STR_3E',\new Lyrics \lyricsto tenor { \mTextIIIE })
>>
\layout {
indent = #0
\context { \Staff \RemoveEmptyStaves }
}
}
|