summaryrefslogtreecommitdiff
path: root/hr/stch/fertig/edel/edel.ly
blob: 09c89be67094c664fa447dca601cdf446b9bc17d (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
68
69
70
71
72
73
74
75
76
77
78
79
80
% vim: encoding=utf8 nu

\version "2.12.1"
\include "stimmen.ly"
\include "texte.ly"

  \header {
    title = "Von edler Art"
    composer = "Johannes Brahms"
  }

  #(set-global-staff-size 18)

  \paper {
    %system-count = 4 
    ragged-last-bottom = ##f
    foot-separation = 7\mm
    bottom-margin = 7\mm
    top-margin = 7\mm
    head-separation = 4\mm
    print-page-number = ##f
    %between-system-padding = 10\mm
    after-title-space = 7\mm
    page-top-space = 0\mm
    line-width = 170\mm
  }

  \midi {
    %\tempo 4 = 72
  }

  \layout {
    indent = #0
    \context {
      \Staff
      \override VerticalAxisGroup #'minimum-Y-extent = #'(-2 . 2)
    }
    \context {
      \Voice
      \override TextScript #'padding = #1.0
    }
  }

  cpap = \markup {\italic {cresc. poco a poco}}
  rit = \markup {\italic {rit.}}

  \score {
    \new ChoirStaff <<
      \new Staff = sopran <<
	\new Voice = "meta" { \metaDynamics }
	\new Voice = "Dyn" { \sopranDyn }
	\new Voice = "soprane" { \global \sopranMelodie }
	\lyricsto soprane \sopranText
	\lyricsto soprane \oberTextZwei
	\lyricsto soprane \oberTextDrei
      >>
      \new Staff = alt <<
	\new Voice = "meta" { \metaDynamics }
	\new Voice = "alti" { \global \altMelodie }
	\lyricsto alti \altText
	\lyricsto alti \oberTextZwei
	\lyricsto alti \oberTextDrei
      >>
      \new Staff = tenor <<
	\new Voice = "meta" { \metaDynamics }
	\new Voice = "tenoere" { \global \tenorMelodie }
	\lyricsto tenoere \tenorText
	\lyricsto tenoere \oberTextZwei
	\lyricsto tenoere \oberTextDrei
      >>
      \new Staff = bass <<
	\new Voice = "meta" { \metaDynamics }
	\new Voice = "baesse" { \global \bassMelodie }
	\lyricsto baesse \bassText
	\lyricsto baesse \bassTextZwei
	\lyricsto baesse \bassTextDrei
      >>
    >>
  }