diff options
author | Erich Eckner <git@eckner.net> | 2014-12-11 14:25:12 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2014-12-11 14:25:12 +0100 |
commit | d9619278c549227b8d2fc9d37cb4a9dfd189f527 (patch) | |
tree | 58c46b40f336a165f47fee92e158c7e5899e3d87 /Weihnachtsmotette/Weihnachtsmotette.ly | |
parent | 7c37c6d8f2f1c74923be4c2ea5f035065f4a2a75 (diff) | |
download | Musik-d9619278c549227b8d2fc9d37cb4a9dfd189f527.tar.xz |
Weihnachtsmotette begonnen
Diffstat (limited to 'Weihnachtsmotette/Weihnachtsmotette.ly')
-rw-r--r-- | Weihnachtsmotette/Weihnachtsmotette.ly | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/Weihnachtsmotette/Weihnachtsmotette.ly b/Weihnachtsmotette/Weihnachtsmotette.ly new file mode 100644 index 0000000..a13a064 --- /dev/null +++ b/Weihnachtsmotette/Weihnachtsmotette.ly @@ -0,0 +1,55 @@ +\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 = "Weihnachtsmotette & Ehre sei Gott" + composer = "Fr. Silcher (1789-1860)" +} +\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 \frauenPausen + \new Voice = sopranI { \global \voiceOne \sopranIMelodie } + \new Voice = sopranII { \global \voiceTwo \sopranIIMelodie } + >> + \new Lyrics \lyricsto sopranI { \sopranText } + \new Staff << + \new Voice = alt { \global \altMelodie } + >> + \new Lyrics \lyricsto alt { \altText } + \new Staff << + \new Voice \maennerPausen + \new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie } + \new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie } + >> + \new Lyrics \lyricsto bass { \bassText } + \new PianoStaff << + \new Staff << + \new Voice = rechteHand { \global \klavierRechts } + >> + \new Staff << + \new Voice = linkeHand { \global \clef "bass" \klavierLinks } + >> + >> + >> +} |