summaryrefslogtreecommitdiff
path: root/Er_ist_mein_Hirt/Er_ist_mein_Hirt.ly
blob: f9cdf36e046acdaf14ce17b8fd635bf059f420bd (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
\include "deutsch.ly"
#(ly:set-option 'relative-includes #t)
\include "artikulation.ly"
\include "stimmen.ly"
\include "texte.ly"
#(ly:set-option 'relative-includes #f)

%spezifisch%

\pointAndClickOff

\header {
  tagline = ""
}

\paper {
  print-all-headers = ##t
}

\score {
  \header {
    title = "Er ist mein Hirt"
    composer = "Joseph Haydn, London 1794/95"
    poet = "Text: Lene Mayer-Skumanz, nach Ps. 23"
  }

  \new StaffGroup = choirStaff <<
    \new Voice = sopran <<
      \artikulation
      \global \sopranMelodie
    >>
    \new Lyrics \lyricsto sopran { \textSopran }
    \new Voice = alt <<
      \artikulation
      \global \altMelodie
    >>
    \new Lyrics \lyricsto alt { \textAlt }
    \new Voice = bass <<
      \artikulation
      \global \clef "bass" \bassMelodie
    >>
    \new Lyrics \lyricsto bass { \textBass }
  >>
}