summaryrefslogtreecommitdiff
path: root/Sommerpsalm/Sommerpsalm.ly
blob: 40312bfd55f43672f4dcd91d19260db64c8ac231 (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
\include "deutsch.ly"
include(artikulation.pre)
include(stimmen.pre)
include(texte.pre)

\pointAndClickOff

\header {
  tagline = ""
}
\paper {
  top-margin = 5
  print-all-headers = ##t
}

\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
    }
  }
}