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

%spezifisch%

\pointAndClickOff

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

\score {
  \header {
    title = "Nun ruhen alle Wälder"
    poet = "Text: Paul Gerhardt 1647"
    composer = "Melodie: O Welt, ich muss dich lassen"
    arranger = "Satz: Bartholomäus Gesius 1605"
  }

  \new StaffGroup = choirStaff <<
    \new Voice = sopran  <<
      \global \sopranMelodie
    >>
    \new Lyrics \lyricsto sopran { \text }
    \new Voice = alt     <<
      \global \altMelodie
    >>
    \new Lyrics \lyricsto alt { \text }
    \new Voice = tenor   <<
      \global \clef "G_8" \tenorMelodie
    >>
    \new Lyrics \lyricsto tenor { \text }
    \new Voice = bass    <<
      \global \clef "bass" \bassMelodie
    >>
    \new Lyrics \lyricsto bass { \text }
  >>

  \layout {
    \context {
      \Score
      %% no bar lines in staves or lyrics
      \hide BarLine
    }
    %% the next two instructions keep the lyrics between the bar lines
    \context {
      \Lyrics
      \consists "Bar_engraver"
      \consists "Separating_line_group_engraver"
    }
    \context {
      \Voice
      %% Comment in the below "\remove" command to allow line
      %% breaking also at those bar lines where a note overlaps
      %% into the next measure.  The command is commented out in this
      %% short example score, but especially for large scores, you
      %% will typically yield better line breaking and thus improve
      %% overall spacing if you comment in the following command.
      \remove "Forbid_line_break_engraver"
    }
  }
}