summaryrefslogtreecommitdiff
path: root/hr/quartett/sanctificatus/sanctificatus.ly
blob: 2c75e9cf9be7eaebe4e62ce5804dd05ddc8ad458 (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
%some settings% vim: ai et

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

  \header {
    title = "Dies sanctificatus"
    composer = "Giovanni Pierluigi da Palestrina"
    %opus = "<+Werk+>"
    tagline = ""
  }

  \paper {
    line-width = \paper-width - 30
    top-margin = 10
    bottom-margin = 10
    ragged-last-bottom = #'false
    %system-count = 6
    page-count = 2
  }

  \layout {
    indent = #0
    \context {
      \Staff
      \override VerticalAxisGroup #'minimum-Y-extent = #'(-4 . 4)
    }
  }

  #(set-global-staff-size 16)

  \score {
    \new StaffGroup <<
      \new Lyrics = "s"
      \new Staff = frauen <<
	%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
	\new Voice = "soprane" \with { \remove Forbid_line_break_engraver }
        { \global \voiceOne \sopranMelodie }
	\new Voice = "alti" \with { \remove Forbid_line_break_engraver }
        { \global \voiceTwo \altMelodie }
      >>
      \new Lyrics = "a"
      \new Lyrics = "t"
      \new Staff = maenner <<
        \new Voice = "mPausen" { \maennerPausen }
	\new Voice = "tenoere" \with { \remove Forbid_line_break_engraver }
        { \global \voiceOne \tenorMelodie }
	\new Voice = "baesse" \with { \remove Forbid_line_break_engraver }
        { \global \voiceTwo \bassMelodie }
      >>
      \new Lyrics = "b"
      \context Lyrics = "s" \lyricsto soprane \sopranText
      \context Lyrics = "a" \lyricsto alti \altText
      \context Lyrics = "t" \lyricsto tenoere \tenorText
      \context Lyrics = "b" \lyricsto baesse \bassText
    >>
    \midi {
      \context{
	\Score
	tempoWholesPerMinute = #(ly:make-moment 96 4)
      }
    }
    \layout {
    }
  }