summaryrefslogtreecommitdiff
path: root/Sommerpsalm/satz.ly
blob: 05b7b7ebcd896bdf04e3c20b6045a83a6d424d28 (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
\score {
  \header {
    title = "Sommerpsalm"
    poet = "Text: Carl David af Wirsén"
    composer = "Musik: Waldemar Ahlén (1894-1982)"
    arranger = "dt. Text: Josef Newerkla"
    tagline = ""
  }

  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Lyrics = textSopran       { }
    \new Staff <<
      \new Voice = sopran   { \global << \artikulationFrauen \melodieSopran >> }
    >>
    ifdef(`STR_1',`\new Lyrics = textIf            { }')
    ifdef(`STR_2',`\new Lyrics = textIIf           { }')
    ifdef(`STR_3',`\new Lyrics = textIIIf          { }')
    \new Staff <<
      \new Voice = alt      { \global << \artikulationFrauen \melodieAlt >> }
    >>
    \new Staff <<
      \new Voice = tenor    { \global \clef "G_8" << \artikulationMaenner \melodieTenor >> }
    >>
    ifdef(`STR_1',`\new Lyrics = textIm            { }')
    ifdef(`STR_2',`\new Lyrics = textIIm           { }')
    ifdef(`STR_3',`\new Lyrics = textIIIm          { }')
    \new Staff <<
      \new Voice = bass     { \global \clef "bass" << \artikulationMaenner \melodieBass >> }
    >>

    ifdef(`STR_1',`\context Lyrics = textIf       \lyricsto sopran    { \textI }')
    ifdef(`STR_2',`\context Lyrics = textIIf      \lyricsto sopran    { \textII }')
    ifdef(`STR_3',`\context Lyrics = textIIIf     \lyricsto sopran    { \textIII }')
    ifdef(`STR_1',`\context Lyrics = textIm       \lyricsto tenor     { \textI }')
    ifdef(`STR_2',`\context Lyrics = textIIm      \lyricsto tenor     { \textII }')
    ifdef(`STR_3',`\context Lyrics = textIIIm     \lyricsto tenor     { \textIII }')
  >>
  \layout {
    indent = #0
    \context {
      \Staff
      \RemoveEmptyStaves
      \override VerticalAxisGroup #'remove-first = ##t
    }
  }
}