diff options
author | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
commit | cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd (patch) | |
tree | 25be2d35abeec51d18d0204e199f3bdbf66826b1 /Ach_wie_fluechtig/Ach_wie_fluechtig.ly | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Ach_wie_fluechtig/Ach_wie_fluechtig.ly')
-rw-r--r-- | Ach_wie_fluechtig/Ach_wie_fluechtig.ly | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/Ach_wie_fluechtig/Ach_wie_fluechtig.ly b/Ach_wie_fluechtig/Ach_wie_fluechtig.ly new file mode 100644 index 0000000..b7e73a1 --- /dev/null +++ b/Ach_wie_fluechtig/Ach_wie_fluechtig.ly @@ -0,0 +1,71 @@ +\include "deutsch.ly" +\include "stimmen.ly" +\include "texte.ly" + +\pointAndClickOff + +#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist)) +#(set-default-paper-size "kindle") + +\paper { + top-margin = 5 + print-all-headers = ##t +} +\header { + title = "Ach wie flüchtig, ach wie nichtig" + composer = "J.S.Bach" + tagline = ##f +} + +\score { + \header { + title = "1. Coro" + composer = ##f + } + + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = sopran { \globalI \sopranMelodieI } + >> + \new Lyrics \lyricsto sopran { \sopranTextI } + \new Staff << + \new Voice = alt { \globalI \altMelodieI } + >> + \new Lyrics \lyricsto alt { \altTextI } + \new Staff << + \new Voice = tenor { \globalI \clef "G_8" \tenorMelodieI } + >> + \new Lyrics \lyricsto tenor { \tenorTextI } + \new Staff << + \new Voice = bass { \globalI \clef "bass" \bassMelodieI } + >> + \new Lyrics \lyricsto bass { \bassTextI } + >> + \layout { + indent = #0 + } +} + +\score { + \header { + title = "6. Choral" + composer = ##f + } + + \new ChoirStaff << + \set Score.skipBars = ##t + \new Staff << + \new Voice = sopran { \globalVI \voiceOne \sopranMelodieVI } + \new Voice = alt { \globalVI \voiceTwo \altMelodieVI } + >> + \new Lyrics \lyricsto sopran { \TextVI } + \new Staff << + \new Voice = tenor { \globalVI \voiceOne \clef "bass" \tenorMelodieVI } + \new Voice = bass { \globalVI \voiceTwo \clef "bass" \bassMelodieVI } + >> + >> + \layout { + indent = #0 + } +}
\ No newline at end of file |