diff options
Diffstat (limited to 'Heiligste_Nacht/Heiligste_Nacht.ly')
-rw-r--r-- | Heiligste_Nacht/Heiligste_Nacht.ly | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/Heiligste_Nacht/Heiligste_Nacht.ly b/Heiligste_Nacht/Heiligste_Nacht.ly new file mode 100644 index 0000000..8fc65d9 --- /dev/null +++ b/Heiligste_Nacht/Heiligste_Nacht.ly @@ -0,0 +1,48 @@ +\include "deutsch.ly" +\include "stimmen.ly" +\include "texte.ly" + +#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist)) +#(set-default-paper-size "kindle") + +\pointAndClickOff + +\header { + tagline = "" + title = "Heiligste Nacht" +} +\paper { + top-margin = 5 +} + +\score { + \layout { + indent = #0 + \context { + \Staff + \RemoveEmptyStaves + \override VerticalAxisGroup #'remove-first = ##t + } + } + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice \pausen + \new Voice = sopran { \global \voiceOne \sopranMelodie } + \new Voice = alt { \global \voiceTwo \altMelodie } + >> + \new Lyrics \lyricsto sopran { \textI} + \new Lyrics \lyricsto sopran { \textII} + \new Staff << + \new Voice = maenner { \global \clef "bass" \maennerMelodie } + >> + \new PianoStaff << + \new Staff << + \new Voice = rechteHand { \global \klavierRechts } + >> + \new Staff << + \new Voice = linkeHand { \global \clef "bass" \klavierLinks } + >> + >> + >> +} |