summaryrefslogtreecommitdiff
path: root/Der_Morgenstern_ist_aufgedrungen/Der_Morgenstern_ist_aufgedrungen.ly
blob: bdd919dba081e0b75fe85d0821af193afb7c6cd4 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
\version "2.19.80"

\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)

%spezifisch%

\pointAndClickOff

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

\score {
  \header {
    title = "Der Morgenstern ist aufgedrungen"
    tagline = ""
  }

  \new StaffGroup = choirStaff <<
    \new Voice = sopran <<
      \global
      \melodieSopran
    >>
    \new Lyrics = textSopranI            { }
    \new Lyrics = textSopranII           { }
    \new Lyrics = textSopranIV           { }
    \new Voice = alt <<
      \global
      \melodieAlt
    >>
    \new Lyrics = textAltI               { }
    \new Lyrics = textAltII              { }
    \new Lyrics = textAltIV              { }
    \new Voice = tenor <<
      \clef "G_8"
      \global
      \melodieTenor
    >>
    \new Lyrics = textTenorI             { }
    \new Lyrics = textTenorII            { }
    \new Lyrics = textTenorIV            { }
    \new Voice = bass <<
      \clef "bass"
      \global
      \melodieBass
    >>
    \new Lyrics = textBassI              { }
    \new Lyrics = textBassII             { }
    \new Lyrics = textBassIV             { }

    %SOPRAN% \context Lyrics = textSopranI       \lyricsto sopran   { \textI }
    %SOPRAN% \context Lyrics = textSopranII      \lyricsto sopran   { \textII }
    %SOPRAN% \context Lyrics = textSopranIV      \lyricsto sopran   { \textIV }
%%    %ALT%    \context Lyrics = textAltI          \lyricsto alt      { \textI }
    %ALT%    \context Lyrics = textAltII         \lyricsto alt      { \textII }
    %ALT%    \context Lyrics = textAltIV         \lyricsto alt      { \textIV }
%%    %TENOR%  \context Lyrics = textTenorI        \lyricsto tenor    { \textI }
    %TENOR%  \context Lyrics = textTenorII       \lyricsto tenor    { \textII }
    %TENOR%  \context Lyrics = textTenorIV       \lyricsto tenor    { \textIV }
%%    %BASS%   \context Lyrics = textBassI         \lyricsto bass     { \textI }
    %BASS%   \context Lyrics = textBassII        \lyricsto bass     { \textII }
    %BASS%   \context Lyrics = textBassIV        \lyricsto bass     { \textIV }
  >>
  \layout {
    indent = #0
    \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"
    }
  }
  \midi {
    \context {
      \Score
      tempoWholesPerMinute = #(ly:make-moment 60 4)
    }
  }
}